From e6f25f0db277be4e93cc20cd82eff5099ef38556 Mon Sep 17 00:00:00 2001 From: Ni Yuanyuan <95396631+YuanyuanNi@users.noreply.github.com> Date: Mon, 16 May 2022 22:28:29 +0800 Subject: [PATCH] [Virtual WAN] `az network vhub`: Add new parameter `--hub-routing-preference` (#4788) * add new property of hub routing preference in virtual hub * add vendored sdks * refine changelog * bump api version from 2020-05-01 to 2021-08-01 Co-authored-by: necusjz --- src/virtual-wan/HISTORY.rst | 6 + src/virtual-wan/azext_vwan/__init__.py | 2 +- src/virtual-wan/azext_vwan/_client_factory.py | 13 +- src/virtual-wan/azext_vwan/_params.py | 5 +- .../azext_vwan/azext_metadata.json | 2 +- src/virtual-wan/azext_vwan/commands.py | 28 +- src/virtual-wan/azext_vwan/custom.py | 18 +- src/virtual-wan/azext_vwan/profiles.py | 3 +- ..._azure_p2s_vpn_gateway_basic_scenario.yaml | 3076 +- ..._azure_vhub_connection_basic_scenario.yaml | 26 +- ...zure_vpn_server_config_basic_scenario.yaml | 611 +- ...st_azure_vpn_server_config_multi_auth.yaml | 219 +- ...wan_p2s_gateway_routing_configuration.yaml | 8 +- .../test_azure_vwan_route_table.yaml | 1005 +- .../test_azure_vwan_route_table_v3.yaml | 81857 +++++++++++----- .../test_azure_vwan_vhub_basic_scenario.yaml | 411 +- .../test_azure_vwan_vhub_bgpconnection.yaml | 28 +- ...vhub_connection_routing_configuration.yaml | 12 +- ..._azure_vwan_vhub_get_effective_routes.yaml | 2 +- .../test_azure_vwan_vhub_route_scenario.yaml | 364 +- .../test_azure_vwan_vpn_gateway.yaml | 882 +- ...est_azure_vwan_vpn_gateway_connection.yaml | 959 +- ..._vpn_gateway_connection_vpn_site_link.yaml | 2326 +- ...gateway_connection_vpn_site_link_conn.yaml | 1402 +- ..._vwan_vpn_site_link_conn_ipsec_policy.yaml | 1451 +- .../test_p2s_vpn_client_generate.yaml | 827 +- .../test_azure_vhub_route_table_scenario.py | 2 + .../latest/test_azure_vwan_vhub_commands.py | 42 +- .../vendored_sdks/v2021_08_01/__init__.py | 16 + .../v2021_08_01/_configuration.py | 71 + .../v2021_08_01/_network_management_client.py | 8826 ++ .../v2021_08_01/_operations_mixin.py | 613 + .../vendored_sdks/v2021_08_01/_version.py | 8 + .../vendored_sdks/v2021_08_01/models.py | 7 + .../v2021_08_01/v2021_08_01/__init__.py | 18 + .../v2021_08_01/v2021_08_01/_configuration.py | 68 + .../v2021_08_01/_network_management_client.py | 531 + .../v2021_08_01/v2021_08_01/_patch.py | 31 + .../v2021_08_01/v2021_08_01/_vendor.py | 27 + .../v2021_08_01/v2021_08_01/_version.py | 9 + .../v2021_08_01/v2021_08_01/aio/__init__.py | 15 + .../v2021_08_01/aio/_configuration.py | 67 + .../aio/_network_management_client.py | 538 + .../v2021_08_01/v2021_08_01/aio/_patch.py | 31 + .../v2021_08_01/aio/operations/__init__.py | 241 + .../v2021_08_01/aio/operations/_operations.py | 54505 ++++++++++ .../v2021_08_01/models/__init__.py | 1567 + .../v2021_08_01/models/_models_py3.py | 34275 +++++++ .../_network_management_client_enums.py | 1517 + .../v2021_08_01/operations/__init__.py | 241 + .../v2021_08_01/operations/_operations.py | 75744 ++++++++++++++ src/virtual-wan/setup.py | 3 +- 52 files changed, 241314 insertions(+), 33242 deletions(-) create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/__init__.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_configuration.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_network_management_client.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_operations_mixin.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_version.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/models.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/__init__.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_configuration.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_network_management_client.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_patch.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_vendor.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_version.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/__init__.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_configuration.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_network_management_client.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_patch.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/operations/__init__.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/operations/_operations.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/__init__.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/_models_py3.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/_network_management_client_enums.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/operations/__init__.py create mode 100644 src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/operations/_operations.py diff --git a/src/virtual-wan/HISTORY.rst b/src/virtual-wan/HISTORY.rst index 9a52aaec15f..e8af73f8b9e 100644 --- a/src/virtual-wan/HISTORY.rst +++ b/src/virtual-wan/HISTORY.rst @@ -3,6 +3,12 @@ Release History =============== +0.2.12 +++++++ +* `az network vhub create`: Add new parameter `--hub-routing-preference`. +* `az network vhub update`: Add new parameter `--hub-routing-preference`. +* Bump api version from 2020-05-01 to 2021-08-01. + 0.2.11 ++++++ * add new command group: `az network vpn-gateway connection vpn-site-link-conn`. diff --git a/src/virtual-wan/azext_vwan/__init__.py b/src/virtual-wan/azext_vwan/__init__.py index ee243c26078..48734e279b1 100644 --- a/src/virtual-wan/azext_vwan/__init__.py +++ b/src/virtual-wan/azext_vwan/__init__.py @@ -14,7 +14,7 @@ class VirtualWanCommandsLoader(AzCommandsLoader): def __init__(self, cli_ctx=None): from azure.cli.core.commands import CliCommandType from .profiles import CUSTOM_VWAN - register_resource_type('latest', CUSTOM_VWAN, '2020-05-01') + register_resource_type('latest', CUSTOM_VWAN, '2021-08-01') super(VirtualWanCommandsLoader, self).__init__( cli_ctx=cli_ctx, diff --git a/src/virtual-wan/azext_vwan/_client_factory.py b/src/virtual-wan/azext_vwan/_client_factory.py index 605258e0d83..9318d2f851e 100644 --- a/src/virtual-wan/azext_vwan/_client_factory.py +++ b/src/virtual-wan/azext_vwan/_client_factory.py @@ -8,14 +8,7 @@ def network_client_factory(cli_ctx, aux_subscriptions=None, **_): from azure.cli.core.commands.client_factory import get_mgmt_service_client from .profiles import CUSTOM_VWAN return get_mgmt_service_client(cli_ctx, CUSTOM_VWAN, aux_subscriptions=aux_subscriptions, - api_version='2020-05-01') - - -def network_client_factory_2021_03_01(cli_ctx, aux_subscriptions=None, **_): - from azure.cli.core.commands.client_factory import get_mgmt_service_client - from .profiles import CUSTOM_VWAN_2021_03_01 - return get_mgmt_service_client(cli_ctx, CUSTOM_VWAN_2021_03_01, aux_subscriptions=aux_subscriptions, - api_version='2021-03-01') + api_version='2021-08-01') def cf_virtual_wans(cli_ctx, _): @@ -31,11 +24,11 @@ def cf_virtual_hub_connection(cli_ctx, _): def cf_virtual_hub_bgpconnection(cli_ctx, _): - return network_client_factory_2021_03_01(cli_ctx).virtual_hub_bgp_connection + return network_client_factory(cli_ctx).virtual_hub_bgp_connection def cf_virtual_hub_bgpconnections(cli_ctx, _): - return network_client_factory_2021_03_01(cli_ctx).virtual_hub_bgp_connections + return network_client_factory(cli_ctx).virtual_hub_bgp_connections def cf_virtual_hub_route_table_v2s(cli_ctx, _): diff --git a/src/virtual-wan/azext_vwan/_params.py b/src/virtual-wan/azext_vwan/_params.py index 81b24594947..15f8c67a326 100644 --- a/src/virtual-wan/azext_vwan/_params.py +++ b/src/virtual-wan/azext_vwan/_params.py @@ -18,9 +18,9 @@ def load_arguments(self, _): (IpsecEncryption, IpsecIntegrity, IkeEncryption, IkeIntegrity, DhGroup, PfsGroup, - VirtualNetworkGatewayConnectionProtocol, AuthenticationMethod) = self.get_models( + VirtualNetworkGatewayConnectionProtocol, AuthenticationMethod, HubRoutingPreference) = self.get_models( 'IpsecEncryption', 'IpsecIntegrity', 'IkeEncryption', 'IkeIntegrity', 'DhGroup', 'PfsGroup', - 'VirtualNetworkGatewayConnectionProtocol', 'AuthenticationMethod') + 'VirtualNetworkGatewayConnectionProtocol', 'AuthenticationMethod', 'HubRoutingPreference') (VpnGatewayTunnelingProtocol, VpnAuthenticationType) = self.get_models('VpnGatewayTunnelingProtocol', 'VpnAuthenticationType') @@ -54,6 +54,7 @@ def load_arguments(self, _): c.argument('virtual_wan', options_list='--vwan', help='Name or ID of the virtual WAN.', validator=get_network_resource_name_or_id('virtual_wan', 'virtualWans')) c.argument('address_prefix', help='CIDR address prefix for the virtual hub.') c.argument('sku', arg_type=get_enum_type(['Basic', 'Standard']), help='The sku of the VirtualHub.') + c.argument('hub_routing_preference', arg_type=get_enum_type(HubRoutingPreference), help='The hub routing preference gateway types') with self.argument_context('network vhub', arg_group='Gateway') as c: c.argument('express_route_gateway', help='Name or ID of an ExpressRoute gateway.', validator=get_network_resource_name_or_id('express_route_gateway', 'expressRouteGateways')) diff --git a/src/virtual-wan/azext_vwan/azext_metadata.json b/src/virtual-wan/azext_vwan/azext_metadata.json index 55c81bf3328..30fdaf614ee 100644 --- a/src/virtual-wan/azext_vwan/azext_metadata.json +++ b/src/virtual-wan/azext_vwan/azext_metadata.json @@ -1,4 +1,4 @@ { "azext.isPreview": true, - "azext.minCliCoreVersion": "2.0.67" + "azext.minCliCoreVersion": "2.15.0" } \ No newline at end of file diff --git a/src/virtual-wan/azext_vwan/commands.py b/src/virtual-wan/azext_vwan/commands.py index c77c46d478d..da3bf1a38a5 100644 --- a/src/virtual-wan/azext_vwan/commands.py +++ b/src/virtual-wan/azext_vwan/commands.py @@ -5,7 +5,7 @@ # pylint: disable=line-too-long from azure.cli.core.commands import CliCommandType -from .profiles import CUSTOM_VWAN, CUSTOM_VWAN_2021_03_01 +from .profiles import CUSTOM_VWAN from ._client_factory import ( cf_virtual_wans, cf_virtual_hubs, cf_vpn_sites, cf_vpn_site_configs, @@ -24,72 +24,72 @@ def load_command_table(self, _): network_vhub_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#VirtualHubsOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#VirtualHubsOperations.{}', client_factory=cf_virtual_hubs, resource_type=CUSTOM_VWAN, min_api='2018-08-01' ) network_vhub_connection_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#HubVirtualNetworkConnectionsOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#HubVirtualNetworkConnectionsOperations.{}', client_factory=cf_virtual_hub_connection, resource_type=CUSTOM_VWAN, min_api='2020-05-01' ) network_vhub_bgpconnection_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2021_03_01.v2021_03_01.operations#VirtualHubBgpConnectionOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#VirtualHubBgpConnectionOperations.{}', client_factory=cf_virtual_hub_bgpconnection, - resource_type=CUSTOM_VWAN_2021_03_01 + resource_type=CUSTOM_VWAN ) network_vhub_route_table_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#VirtualHubRouteTableV2SOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#VirtualHubRouteTableV2SOperations.{}', client_factory=cf_virtual_hub_route_table_v2s, resource_type=CUSTOM_VWAN, min_api='2019-09-01' ) network_vwan_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#VirtualWansOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#VirtualWansOperations.{}', client_factory=cf_virtual_wans, resource_type=CUSTOM_VWAN, min_api='2018-08-01' ) network_vpn_gateway_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#VpnGatewaysOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#VpnGatewaysOperations.{}', client_factory=cf_vpn_gateways, min_api='2018-08-01' ) network_vpn_gateway_connection_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#VpnConnectionsOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#VpnConnectionsOperations.{}', client_factory=cf_vpn_gateway_connection, min_api='2020-05-01' ) network_vpn_site_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#VpnSitesOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#VpnSitesOperations.{}', client_factory=cf_vpn_sites, min_api='2018-08-01' ) network_vpn_site_config_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#VpnSitesConfigurationOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#VpnSitesConfigurationOperations.{}', client_factory=cf_vpn_site_configs, min_api='2018-08-01' ) network_vpn_server_config_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#VpnServerConfigurationsOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#VpnServerConfigurationsOperations.{}', client_factory=cf_vpn_server_config, resource_type=CUSTOM_VWAN, min_api='2020-03-01' ) network_p2s_vpn_gateway_sdk = CliCommandType( - operations_tmpl='azext_vwan.vendored_sdks.v2020_05_01.operations#P2SVpnGatewaysOperations.{}', + operations_tmpl='azext_vwan.vendored_sdks.v2021_08_01.operations#P2SVpnGatewaysOperations.{}', client_factory=cf_p2s_vpn_gateways, resource_type=CUSTOM_VWAN, min_api='2020-03-01' @@ -110,7 +110,7 @@ def load_command_table(self, _): # endregion # region VirtualHubs - with self.command_group('network vhub', network_vhub_sdk) as g: + with self.command_group('network vhub', network_vhub_sdk, client_factory=cf_virtual_hubs) as g: g.custom_command('create', 'create_virtual_hub', supports_no_wait=True) g.command('delete', 'begin_delete') g.show_command('show') diff --git a/src/virtual-wan/azext_vwan/custom.py b/src/virtual-wan/azext_vwan/custom.py index 2b62c5594f2..01a9abc5dee 100644 --- a/src/virtual-wan/azext_vwan/custom.py +++ b/src/virtual-wan/azext_vwan/custom.py @@ -15,6 +15,7 @@ from azure.cli.core.util import sdk_no_wait from ._client_factory import network_client_factory, cf_virtual_hub_bgpconnections, cf_virtual_hub_connection + from ._util import _get_property logger = get_logger(__name__) @@ -135,16 +136,16 @@ def list_virtual_wans(cmd, resource_group_name=None): # region VirtualHubs -def create_virtual_hub(cmd, resource_group_name, virtual_hub_name, address_prefix, virtual_wan, - location=None, tags=None, no_wait=False, sku=None): - client = network_client_factory(cmd.cli_ctx).virtual_hubs - VirtualHub, SubResource = cmd.get_models('VirtualHub', 'SubResource') +def create_virtual_hub(cmd, client, resource_group_name, virtual_hub_name, address_prefix, virtual_wan, + location=None, tags=None, no_wait=False, sku=None, hub_routing_preference=None): + (VirtualHub, SubResource) = cmd.get_models('VirtualHub', 'SubResource') hub = VirtualHub( tags=tags, location=location, address_prefix=address_prefix, virtual_wan=SubResource(id=virtual_wan), - sku=sku + sku=sku, + hub_routing_preference=hub_routing_preference ) return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name, virtual_hub_name, hub) @@ -177,13 +178,14 @@ def raw(response, *_): ) -def update_virtual_hub(instance, cmd, address_prefix=None, virtual_wan=None, tags=None, sku=None): +def update_virtual_hub(cmd, instance, address_prefix=None, virtual_wan=None, tags=None, sku=None, hub_routing_preference=None): SubResource = cmd.get_models('SubResource') with UpdateContext(instance) as c: c.update_param('tags', tags, True) c.update_param('address_prefix', address_prefix, False) c.update_param('virtual_wan', SubResource(id=virtual_wan) if virtual_wan else None, False) c.update_param('sku', sku, False) + c.update_param('hub_routing_preference', hub_routing_preference, False) return instance @@ -263,7 +265,7 @@ def _bgp_connections_client(cli_ctx): def create_hub_vnet_bgpconnection(cmd, client, resource_group_name, virtual_hub_name, connection_name, virtual_hub_connection=None, peer_asn=None, peer_ip=None, no_wait=False): - from .vendored_sdks.v2021_03_01.models import BgpConnection, SubResource + (BgpConnection, SubResource) = cmd.get_models('BgpConnection', 'SubResource') connection = BgpConnection( name=connection_name, peer_asn=peer_asn, @@ -276,12 +278,12 @@ def create_hub_vnet_bgpconnection(cmd, client, resource_group_name, virtual_hub_ def update_hub_vnet_bgpconnection(cmd, instance, resource_group_name, virtual_hub_name, connection_name, virtual_hub_connection=None, peer_asn=None, peer_ip=None): + SubResource = cmd.get_models('SubResource') if peer_asn is not None: instance.peer_asn = peer_asn if peer_ip is not None: instance.peer_ip = peer_ip if virtual_hub_connection is not None: - from .vendored_sdks.v2021_03_01.models import SubResource instance.hub_virtual_network_connection = SubResource(id=virtual_hub_connection) return instance diff --git a/src/virtual-wan/azext_vwan/profiles.py b/src/virtual-wan/azext_vwan/profiles.py index fa91ea2fbf1..e21813bdb75 100644 --- a/src/virtual-wan/azext_vwan/profiles.py +++ b/src/virtual-wan/azext_vwan/profiles.py @@ -5,5 +5,4 @@ from azure.cli.core.profiles import CustomResourceType -CUSTOM_VWAN = CustomResourceType('azext_vwan.vendored_sdks.v2020_05_01', 'NetworkManagementClient') -CUSTOM_VWAN_2021_03_01 = CustomResourceType('azext_vwan.vendored_sdks.v2021_03_01', 'NetworkManagementClient') +CUSTOM_VWAN = CustomResourceType('azext_vwan.vendored_sdks.v2021_08_01', 'NetworkManagementClient') 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 index 948d79a86f8..ef2e71d3084 100644 --- 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 @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_p2s_vpn_gateway000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001","name":"cli_test_azure_p2s_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:23:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001","name":"cli_test_azure_p2s_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T01:44:04Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '357' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:23:41 GMT + - Tue, 10 May 2022 01:44:10 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"ab0298f9-e8cf-4b75-b5a7-0b14ae22642c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8842992a-9fe3-42d5-9692-5ebf7bd2216a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f2266889-4999-47dc-a71c-04fa0d538fe8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5eb9b936-e4b7-4c43-a878-20a8e7e2d4f7?api-version=2021-08-01 cache-control: - no-cache content-length: - - '580' + - '541' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:23:49 GMT + - Tue, 10 May 2022 01:44:20 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8564d88d-ecd5-428d-8fbe-46c8d2ebfc8e + - 26fce06e-8065-43fc-b238-dd93f845389f x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f2266889-4999-47dc-a71c-04fa0d538fe8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5eb9b936-e4b7-4c43-a878-20a8e7e2d4f7?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:01 GMT + - Tue, 10 May 2022 01:44:30 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16d997b0-b0e9-4837-b143-1ad877d592da + - 6aee58e5-a6ce-4ecb-be6e-3f15b4606e09 status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"0a4daaa0-ddeb-4d7e-a16e-3eaf930b0dfa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"23d101b8-b37e-4763-99fe-82737ffcc953\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '581' + - '542' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:01 GMT + - Tue, 10 May 2022 01:44:31 GMT etag: - - W/"0a4daaa0-ddeb-4d7e-a16e-3eaf930b0dfa" + - W/"23d101b8-b37e-4763-99fe-82737ffcc953" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62bd3822-39c6-4559-aa6d-992235688eab + - 9dc7fab8-b9e9-4afc-85a9-b409f1d8d4df status: code: 200 message: OK @@ -219,39 +219,42 @@ interactions: Connection: - keep-alive Content-Length: - - '316' + - '277' Content-Type: - application/json ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"a57bc2c2-c481-4a93-a1e2-6c1d73e4fe2a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7893d647-69d6-4d16-931e-60609e44d0e5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.5.0.0/16\",\r\n \"virtualRouterAsn\": 0,\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_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"None\",\r\n \"allowBranchToBranchTraffic\": false,\r\n + \ \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bf8061fc-0fed-4df3-b321-4db9c433d794?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2b5dd739-1300-418a-b001-9907771f6d06?api-version=2021-08-01 cache-control: - no-cache content-length: - - '902' + - '1074' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:11 GMT + - Tue, 10 May 2022 01:44:41 GMT expires: - '-1' pragma: @@ -264,9 +267,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4556d878-050f-4782-93cf-b3f9096322a8 + - fad8ccf2-4e9d-47f5-be24-16d256ad4664 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -284,58 +287,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bf8061fc-0fed-4df3-b321-4db9c433d794?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 18 Sep 2021 06:24: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: - - a319fcfa-3534-4327-b47c-aef03da4ce87 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l --sku - User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bf8061fc-0fed-4df3-b321-4db9c433d794?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2b5dd739-1300-418a-b001-9907771f6d06?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -347,7 +301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:32 GMT + - Tue, 10 May 2022 01:44:51 GMT expires: - '-1' pragma: @@ -357,14 +311,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 05900c3f-3dd2-4809-a77f-adf049004ce2 + - ccacc382-2ebd-4601-9a49-902363477943 status: code: 200 message: OK @@ -382,9 +332,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bf8061fc-0fed-4df3-b321-4db9c433d794?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2b5dd739-1300-418a-b001-9907771f6d06?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -396,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:53 GMT + - Tue, 10 May 2022 01:45:02 GMT expires: - '-1' pragma: @@ -406,14 +356,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c6c906c7-7ceb-4a23-8564-27919e41446c + - 2c938fb1-0023-4e40-a26e-18e453967b0b status: code: 200 message: OK @@ -431,9 +377,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bf8061fc-0fed-4df3-b321-4db9c433d794?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2b5dd739-1300-418a-b001-9907771f6d06?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -445,7 +391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:13 GMT + - Tue, 10 May 2022 01:45:22 GMT expires: - '-1' pragma: @@ -455,14 +401,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9ad4e5b5-9bd0-4473-ab90-51c1785e443a + - 0cdf7856-7a77-4824-aedd-12ac42babef5 status: code: 200 message: OK @@ -480,9 +422,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bf8061fc-0fed-4df3-b321-4db9c433d794?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2b5dd739-1300-418a-b001-9907771f6d06?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -494,7 +436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:54 GMT + - Tue, 10 May 2022 01:45:42 GMT expires: - '-1' pragma: @@ -504,14 +446,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ea30de6-f997-4c9a-95dd-9688bb0d1203 + - 3eb64867-5ca5-401b-a34a-b9cecff15572 status: code: 200 message: OK @@ -529,9 +467,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bf8061fc-0fed-4df3-b321-4db9c433d794?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2b5dd739-1300-418a-b001-9907771f6d06?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -543,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:26:34 GMT + - Tue, 10 May 2022 01:46:23 GMT expires: - '-1' pragma: @@ -553,14 +491,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c911fac-b35b-470a-8ba4-59f28b2e6577 + - b21b7767-ec8c-45d6-95fe-fdae2ad5ba81 status: code: 200 message: OK @@ -578,9 +512,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bf8061fc-0fed-4df3-b321-4db9c433d794?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2b5dd739-1300-418a-b001-9907771f6d06?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -592,7 +526,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:27:55 GMT + - Tue, 10 May 2022 01:47:03 GMT expires: - '-1' pragma: @@ -602,14 +536,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 58b186fb-abf9-4d7d-b362-803ad62d0215 + - 99b71209-6252-43b0-8937-72a446e130f1 status: code: 200 message: OK @@ -627,9 +557,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bf8061fc-0fed-4df3-b321-4db9c433d794?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2b5dd739-1300-418a-b001-9907771f6d06?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -641,7 +571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:30:36 GMT + - Tue, 10 May 2022 01:48:24 GMT expires: - '-1' pragma: @@ -651,14 +581,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3246e31-62cf-4b43-91f0-8fce78df1d13 + - cd6a1bdb-4794-4e23-94b3-de43a07132e5 status: code: 200 message: OK @@ -676,29 +602,32 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"bfd85ff7-25be-43f1-a3fa-e0ecce11ddec\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9b3dc342-5fe2-4549-a055-6e8c1d1e3b68\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.5.0.0/16\",\r\n \"virtualRouterAsn\": 0,\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_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": + false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '911' + - '1083' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:30:36 GMT + - Tue, 10 May 2022 01:48:24 GMT expires: - '-1' pragma: @@ -708,14 +637,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee7e8ae2-4d17-42f5-bfa6-7819feeeb205 + - d583b783-f082-44f6-9875-15196a41922c status: code: 200 message: OK @@ -733,21 +658,21 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_p2s_vpn_gateway000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001","name":"cli_test_azure_p2s_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:23:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001","name":"cli_test_azure_p2s_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T01:44:04Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '357' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:30:39 GMT + - Tue, 10 May 2022 01:48:25 GMT expires: - '-1' pragma: @@ -783,13 +708,13 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n - \ \"etag\": \"W/\\\"2eeb61ac-e01f-41ef-964e-e3f79ac71525\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a8686934-f56a-4b8f-b463-63c17f9b3dbb\\\"\",\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\": @@ -800,21 +725,21 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\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/westcentralus/operations/ff2f81fa-e6db-43bb-9393-4ceec86bebd8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b4e0da42-e1e8-402e-af09-2bcb0f38b4fc?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2267' + - '2266' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:30:49 GMT + - Tue, 10 May 2022 01:48:37 GMT expires: - '-1' pragma: @@ -827,9 +752,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 54ef1f01-697a-43de-a877-ff87c599c11e + - e93c460c-1624-4c23-bd93-fb37e23c5133 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -847,9 +772,9 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ff2f81fa-e6db-43bb-9393-4ceec86bebd8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b4e0da42-e1e8-402e-af09-2bcb0f38b4fc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -861,7 +786,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:00 GMT + - Tue, 10 May 2022 01:48:47 GMT expires: - '-1' pragma: @@ -878,7 +803,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b68a3f2c-98b0-42fa-940f-28d28548b96c + - b104a145-5497-4a62-bb30-0a4aa1625953 status: code: 200 message: OK @@ -896,13 +821,13 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n - \ \"etag\": \"W/\\\"44af87a8-02a7-4ddf-8f98-b93eb99c4ef1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c94aff71-d35a-4dd6-a454-8b8267c4ab87\\\"\",\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\": @@ -913,19 +838,19 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2268' + - '2267' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:00 GMT + - Tue, 10 May 2022 01:48:47 GMT etag: - - W/"44af87a8-02a7-4ddf-8f98-b93eb99c4ef1" + - W/"c94aff71-d35a-4dd6-a454-8b8267c4ab87" expires: - '-1' pragma: @@ -942,7 +867,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1d9ddbcd-94c5-46e5-97b7-2e8a7abf4d95 + - 3de72f48-fcfa-4124-af85-6db37b19b52b status: code: 200 message: OK @@ -960,21 +885,21 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_p2s_vpn_gateway000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001","name":"cli_test_azure_p2s_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:23:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001","name":"cli_test_azure_p2s_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T01:44:04Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '357' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:02 GMT + - Tue, 10 May 2022 01:48:48 GMT expires: - '-1' pragma: @@ -1010,13 +935,13 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\",\r\n - \ \"etag\": \"W/\\\"76a7f8ce-29c9-448f-a209-34c0499a5fb7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"54560b8b-5414-4792-bc31-77c3df516131\\\"\",\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\": @@ -1027,21 +952,21 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\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/westcentralus/operations/c7a7a19f-2345-4fa1-826c-a0745dcdef91?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/1a66731f-6f76-4001-80c5-29679781f48d?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2269' + - '2268' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:13 GMT + - Tue, 10 May 2022 01:48:54 GMT expires: - '-1' pragma: @@ -1054,9 +979,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 72837fed-7605-4e98-a72c-756cede0db74 + - eee3e9b0-f21b-44c6-bed7-7323da7f5430 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -1074,9 +999,9 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c7a7a19f-2345-4fa1-826c-a0745dcdef91?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/1a66731f-6f76-4001-80c5-29679781f48d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1088,7 +1013,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:23 GMT + - Tue, 10 May 2022 01:49:05 GMT expires: - '-1' pragma: @@ -1105,7 +1030,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 87628f10-cebe-4590-877a-c8190f8ff0b1 + - dce56b48-60c6-4458-ba77-9a06cf9afd71 status: code: 200 message: OK @@ -1123,13 +1048,13 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\",\r\n - \ \"etag\": \"W/\\\"2307b97a-c5ce-4096-bda7-de529a08a237\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ca028e73-471d-4fa9-b4a1-2c51f660374a\\\"\",\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\": @@ -1140,19 +1065,905 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2269' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:49:05 GMT + etag: + - W/"ca028e73-471d-4fa9-b4a1-2c51f660374a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 18c52301-e3f5-4b73-aadc-4470fb8445e0 + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_p2s_vpn_gateway000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001","name":"cli_test_azure_p2s_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T01:44:04Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '357' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:49:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westcentralus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub"}, + "p2SConnectionConfigurations": [{"name": "P2SConnectionConfigDefault", "properties": + {"vpnClientAddressPool": {"addressPrefixes": ["10.0.0.0/24", "11.0.0.0/24"]}, + "routingConfiguration": {"propagatedRouteTables": {}}}}], "vpnGatewayScaleUnit": + 2, "vpnServerConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway create + Connection: + - keep-alive + Content-Length: + - '686' + Content-Type: + - application/json + ParameterSetName: + - -g -n --scale-unit --vhub --vpn-server-config --address-space --no-wait + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d0e1a65a-a9ee-4a9a-9b56-5828039f9c4a?api-version=2021-08-01 + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:49:09 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: + - 671c3811-0fe3-46b3-9533-88f36c49f785 + 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 p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:49:10 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0b2ae011-41f5-41e6-b0a1-c7367262b9d7 + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:49:40 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8c2af86b-cab2-4951-8b03-6ae5eb54e562 + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:50:12 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 147fb6de-64cb-480e-8b78-84e4e2e2c2da + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:50:42 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c0562849-0902-4d5c-ab51-488ff1974dbc + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:51:12 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6401d27c-366f-45c1-a656-2491cc8b318a + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:51:42 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d2e96d5d-57a1-4ec3-8e8f-cb461f86bc23 + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:52:13 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 77a2e927-353b-42ff-b681-57ec6af7cf07 + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:52:43 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b996fec4-44dd-4a5f-b7b4-025357eeb4c8 + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2700' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:53:13 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7ad4c1ca-ee75-44e3-a872-059843a1b117 + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2270' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:23 GMT + - Tue, 10 May 2022 01:53:44 GMT etag: - - W/"2307b97a-c5ce-4096-bda7-de529a08a237" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1169,7 +1980,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5df3af44-189a-430d-b20e-d291286acdc4 + - 3e726f66-9e69-4fda-b190-5efb872d5da1 status: code: 200 message: OK @@ -1181,69 +1992,95 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network p2s-vpn-gateway create + - network p2s-vpn-gateway wait Connection: - keep-alive ParameterSetName: - - -g -n --scale-unit --vhub --vpn-server-config --address-space --no-wait + - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_p2s_vpn_gateway000001?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001","name":"cli_test_azure_p2s_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:23:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"default\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": true\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '435' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:25 GMT + - Tue, 10 May 2022 01:54:14 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - a47eaab8-4ee9-4777-9b4b-20c78e2d0280 status: code: 200 message: OK - request: - body: '{"location": "westcentralus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub"}, - "p2SConnectionConfigurations": [{"name": "P2SConnectionConfigDefault", "properties": - {"vpnClientAddressPool": {"addressPrefixes": ["10.0.0.0/24", "11.0.0.0/24"]}, - "routingConfiguration": {"propagatedRouteTables": {}}}}], "vpnGatewayScaleUnit": - 2, "vpnServerConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig"}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network p2s-vpn-gateway create + - network p2s-vpn-gateway wait Connection: - keep-alive - Content-Length: - - '764' - Content-Type: - - application/json ParameterSetName: - - -g -n --scale-unit --vhub --vpn-server-config --address-space --no-wait + - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1251,7 +2088,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1264,21 +2101,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/086da024-f616-4d89-ae38-b762ad1ca19f?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:38 GMT + - Tue, 10 May 2022 01:54:44 GMT + etag: + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1288,15 +2125,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 38a59a47-597c-4696-b6ba-2b8891c1cef8 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - 760b0edb-afb5-485e-ab6d-c513f74ac702 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1311,13 +2150,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1325,7 +2164,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1338,19 +2177,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:40 GMT + - Tue, 10 May 2022 01:55:14 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1367,7 +2208,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9986230f-dc0b-4f67-9bda-cdf32113cf02 + - 196968d6-0298-41f1-885a-1cc3090621b0 status: code: 200 message: OK @@ -1385,13 +2226,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1399,7 +2240,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1412,19 +2253,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:32:11 GMT + - Tue, 10 May 2022 01:55:45 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1441,7 +2284,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 786c070a-b6af-4948-998a-cf3d453879d0 + - 70ea0246-9744-405b-8b6f-e46f2fa10bec status: code: 200 message: OK @@ -1459,13 +2302,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1473,7 +2316,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1486,19 +2329,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:32:41 GMT + - Tue, 10 May 2022 01:56:15 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1515,7 +2360,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 379f9a3d-4e3e-44dd-8474-1916f2116910 + - ae122963-d6dd-400f-bae5-3747cc2b460a status: code: 200 message: OK @@ -1533,13 +2378,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1547,7 +2392,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1560,19 +2405,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:33:11 GMT + - Tue, 10 May 2022 01:56:46 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1589,7 +2436,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e2084689-67c8-497b-bd42-ce560fd238f7 + - d5a5f4c4-1372-40d1-a564-28254491ab21 status: code: 200 message: OK @@ -1607,13 +2454,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1621,7 +2468,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1634,19 +2481,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:33:41 GMT + - Tue, 10 May 2022 01:57:16 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1663,7 +2512,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a1a45ce2-a897-4f94-a999-f809e26ce5b0 + - 654b76c5-8752-45e4-8c4e-76ba5759a168 status: code: 200 message: OK @@ -1681,13 +2530,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1695,7 +2544,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1708,19 +2557,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:34:12 GMT + - Tue, 10 May 2022 01:57:46 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1737,7 +2588,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fe5ca478-d7c3-411f-b5c7-83b8c5bb8c28 + - 5cc37909-49ab-4b74-a7ce-7720ec57f37d status: code: 200 message: OK @@ -1755,13 +2606,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1769,7 +2620,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1782,19 +2633,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:34:43 GMT + - Tue, 10 May 2022 01:58:17 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1811,7 +2664,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - aa783604-0fa3-493b-bc87-daf49f5ad150 + - ba3f315e-bf24-4ac5-8bda-78052a06ff46 status: code: 200 message: OK @@ -1829,13 +2682,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1843,7 +2696,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1856,19 +2709,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:14 GMT + - Tue, 10 May 2022 01:58:47 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1885,7 +2740,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a8d078f8-e18a-4946-98a6-f250bda9e505 + - 96e31875-c013-4501-80c5-65559a98b4b0 status: code: 200 message: OK @@ -1903,13 +2758,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1917,7 +2772,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1930,19 +2785,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:44 GMT + - Tue, 10 May 2022 01:59:19 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -1959,7 +2816,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 97a69540-4a3d-44d8-ae00-4a0109f03665 + - 0ec67dc9-31a3-44f9-aed0-46d5201a933a status: code: 200 message: OK @@ -1977,13 +2834,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -1991,7 +2848,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2004,19 +2861,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:36:15 GMT + - Tue, 10 May 2022 01:59:49 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2033,7 +2892,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d012c5cc-b218-4739-a0c2-69830a330060 + - fb6b2c75-0e81-4a92-9bfb-07013d0cad2b status: code: 200 message: OK @@ -2051,13 +2910,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2065,7 +2924,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2078,19 +2937,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:36:45 GMT + - Tue, 10 May 2022 02:00:19 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2107,7 +2968,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 19d41165-1264-4414-a0d2-58cbc2fbf8d7 + - a5934e65-3dbf-46d0-862a-1950644a39a4 status: code: 200 message: OK @@ -2125,13 +2986,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2139,7 +3000,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2152,19 +3013,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:37:16 GMT + - Tue, 10 May 2022 02:00:50 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2181,7 +3044,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 754e445f-77f5-4d98-b4f3-8ee1aa9d4597 + - f0ee10aa-7f89-41a1-90fc-400632f102b5 status: code: 200 message: OK @@ -2199,13 +3062,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2213,7 +3076,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2226,19 +3089,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:37:47 GMT + - Tue, 10 May 2022 02:01:21 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2255,7 +3120,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b0151afd-b6f1-4c8b-8537-eed53e401afe + - a96001be-7f90-462d-be1f-590220582b0e status: code: 200 message: OK @@ -2273,13 +3138,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2287,7 +3152,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2300,19 +3165,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:38:17 GMT + - Tue, 10 May 2022 02:01:51 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2329,7 +3196,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eb72911c-3c58-42b0-ab80-f81337d0ebf9 + - 82ad048d-3091-4d5c-8571-c1224f334443 status: code: 200 message: OK @@ -2347,13 +3214,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2361,7 +3228,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2374,19 +3241,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:38:48 GMT + - Tue, 10 May 2022 02:02:21 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2403,7 +3272,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d4887f8d-6b14-44f1-a62f-febc7777b5f4 + - 63f40329-0ee5-4419-befb-8a82c438e6b0 status: code: 200 message: OK @@ -2421,13 +3290,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2435,7 +3304,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2448,19 +3317,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:39:18 GMT + - Tue, 10 May 2022 02:02:51 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2477,7 +3348,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb600318-b84a-479d-b1d0-031b525a11e5 + - 9b1ce291-d5b4-4b32-80b0-dc30809d1cd7 status: code: 200 message: OK @@ -2495,13 +3366,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2509,7 +3380,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2522,19 +3393,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:39:50 GMT + - Tue, 10 May 2022 02:03:22 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2551,7 +3424,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e94bf8d3-6f94-4a28-a319-e5a3405f2a5e + - 35a10597-746b-43eb-89f0-ce74c30a88c3 status: code: 200 message: OK @@ -2569,13 +3442,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2583,7 +3456,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2596,19 +3469,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:40:20 GMT + - Tue, 10 May 2022 02:03:52 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2625,7 +3500,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c07f9269-5aae-4cc1-89a4-25d2c456fc64 + - 2550d53a-6418-43a0-ac18-94fff03a445d status: code: 200 message: OK @@ -2643,13 +3518,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2657,7 +3532,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2670,19 +3545,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:40:50 GMT + - Tue, 10 May 2022 02:04:22 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2699,7 +3576,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6aa0f56b-c9e4-45ab-be72-b5939e2b6a24 + - 0587c6dd-cd6e-43ae-a387-aa0671e40c2c status: code: 200 message: OK @@ -2717,13 +3594,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2731,7 +3608,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2744,19 +3621,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:41:21 GMT + - Tue, 10 May 2022 02:04:53 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2773,7 +3652,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2d508d0f-eec5-4e9d-9dce-8022b94019ae + - fe48f586-a71f-4b34-a8a7-00526a38d177 status: code: 200 message: OK @@ -2791,13 +3670,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2805,7 +3684,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2818,19 +3697,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:41:51 GMT + - Tue, 10 May 2022 02:05:24 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2847,7 +3728,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed1f9b42-b2c8-446f-aff9-87b7b83f1818 + - 78c9dc6a-ed96-4f24-ac3b-f23bf9e9969a status: code: 200 message: OK @@ -2865,13 +3746,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2879,7 +3760,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2892,19 +3773,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:21 GMT + - Tue, 10 May 2022 02:05:54 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2921,7 +3804,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ae8e8d92-da20-465d-a0eb-6c5b219977c2 + - 88de71b0-437d-49f5-99a7-4063a9f8ee8f status: code: 200 message: OK @@ -2939,13 +3822,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -2953,7 +3836,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2966,19 +3849,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:52 GMT + - Tue, 10 May 2022 02:06:24 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -2995,7 +3880,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3047ad4e-af5c-4388-aed6-e6f00dc2eba6 + - 8d2c87e4-35dc-43d6-abfc-5fee4905adfd status: code: 200 message: OK @@ -3013,13 +3898,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3027,7 +3912,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3040,19 +3925,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:43:23 GMT + - Tue, 10 May 2022 02:06:55 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3069,7 +3956,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4f6905d0-7ead-4118-8886-36ca98c98644 + - 1e99ea1f-c098-43db-b696-03d10dc7d083 status: code: 200 message: OK @@ -3087,13 +3974,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3101,7 +3988,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3114,19 +4001,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:43:53 GMT + - Tue, 10 May 2022 02:07:25 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3143,7 +4032,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac77965b-4d5e-4ed3-8566-89b71aeb6ad6 + - eefb53e6-49d7-498c-9e72-1eca329b44fe status: code: 200 message: OK @@ -3161,13 +4050,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3175,7 +4064,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3188,19 +4077,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:44:23 GMT + - Tue, 10 May 2022 02:07:55 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3217,7 +4108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a568aa00-e6a5-4650-953c-7133535d58d1 + - 08b7462c-adf0-4491-add0-6e6b4340b60e status: code: 200 message: OK @@ -3235,13 +4126,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3249,7 +4140,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3262,19 +4153,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:44:53 GMT + - Tue, 10 May 2022 02:08:26 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3291,7 +4184,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 28a4f6b7-e207-4de4-9184-3844fa295a80 + - 03bc9ec3-1b76-4032-beee-48a0fdd46fdc status: code: 200 message: OK @@ -3309,13 +4202,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3323,7 +4216,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3336,19 +4229,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:45:24 GMT + - Tue, 10 May 2022 02:08:57 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3365,7 +4260,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f44f303c-c5f3-44d3-bbd8-ab311c06591e + - a9494fa3-85df-4647-b7e9-219d4192dd5a status: code: 200 message: OK @@ -3383,13 +4278,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3397,7 +4292,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3410,19 +4305,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:45:54 GMT + - Tue, 10 May 2022 02:09:27 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3439,7 +4336,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 405cc4cd-bf45-4b20-8828-9a2df6e285ae + - 493d94f0-161a-44d1-a57d-f45d7e2f5135 status: code: 200 message: OK @@ -3457,13 +4354,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3471,7 +4368,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3484,19 +4381,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:46:24 GMT + - Tue, 10 May 2022 02:09:57 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3513,7 +4412,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b3254c00-37bd-446a-9e8e-678b7dac2d0b + - e5d6f121-3017-446f-a7c3-9c4da7261ade status: code: 200 message: OK @@ -3531,13 +4430,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3545,7 +4444,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3558,19 +4457,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:46:54 GMT + - Tue, 10 May 2022 02:10:27 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3587,7 +4488,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4cf21ffc-960a-4aac-b2c5-ad3a2a9c47ac + - 2f8ab1b2-7196-4a09-8c50-cd221a5177be status: code: 200 message: OK @@ -3605,13 +4506,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3619,7 +4520,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3632,19 +4533,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:47:26 GMT + - Tue, 10 May 2022 02:10:59 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3661,7 +4564,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ee26bf3-2982-44a0-bc9a-d3e0191944fa + - a6108906-f836-4579-a4a1-6ad33a826abc status: code: 200 message: OK @@ -3679,13 +4582,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3693,7 +4596,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3706,19 +4609,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:47:56 GMT + - Tue, 10 May 2022 02:11:29 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3735,7 +4640,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - abb9f001-6e4a-4653-9a65-c458249a7927 + - e44bdccf-7371-4e81-87c4-2a904630681a status: code: 200 message: OK @@ -3753,13 +4658,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3767,7 +4672,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3780,19 +4685,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:27 GMT + - Tue, 10 May 2022 02:11:59 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3809,7 +4716,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ca4fa9d-f7bc-4dc2-9e25-7bd8e99c3a17 + - aaae681a-e242-408c-a8d9-2a2b6ff2477d status: code: 200 message: OK @@ -3827,13 +4734,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3841,7 +4748,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3854,19 +4761,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:57 GMT + - Tue, 10 May 2022 02:12:30 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3883,7 +4792,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5efc80c9-5ebd-4a01-bf83-78f059927983 + - 40473085-c650-43d6-a3f5-04ad7c46810f status: code: 200 message: OK @@ -3901,13 +4810,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3915,7 +4824,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -3928,19 +4837,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:49:28 GMT + - Tue, 10 May 2022 02:13:01 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -3957,7 +4868,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 844f1e6d-3938-4a26-a828-402f384d134f + - 8df8b3d7-9cd7-43b7-96d0-0f1efcf34fe5 status: code: 200 message: OK @@ -3975,13 +4886,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -3989,7 +4900,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4002,19 +4913,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:49:59 GMT + - Tue, 10 May 2022 02:13:31 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4031,7 +4944,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5e9a0e47-d0dd-4b0e-ac36-108d58b73713 + - bb85a03b-d3f1-4c24-a55a-df920844f92e status: code: 200 message: OK @@ -4049,13 +4962,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4063,7 +4976,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4076,19 +4989,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:50:29 GMT + - Tue, 10 May 2022 02:14:01 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4105,7 +5020,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62560395-1a5b-47f5-9be1-225c330d9760 + - bfad4cee-becf-40a0-848a-d58ebe75caa1 status: code: 200 message: OK @@ -4123,13 +5038,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4137,7 +5052,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4150,19 +5065,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:50:59 GMT + - Tue, 10 May 2022 02:14:31 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4179,7 +5096,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7faf1880-0aa9-4001-a746-90d2d6d0b51b + - 1ded422e-1a34-4bea-be3b-2845826ba013 status: code: 200 message: OK @@ -4197,13 +5114,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4211,7 +5128,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4224,19 +5141,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:51:29 GMT + - Tue, 10 May 2022 02:15:02 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4253,7 +5172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 15e5f464-fdd8-451a-b120-cb164a41d36f + - 1fa1208f-29de-42e7-945f-ecf81cba4b6c status: code: 200 message: OK @@ -4271,13 +5190,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4285,7 +5204,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4298,19 +5217,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:51:59 GMT + - Tue, 10 May 2022 02:15:32 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4327,7 +5248,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fa49f5f8-48e9-48a9-83cb-9c3b1d3e731c + - a2adece7-1d12-4ecd-ae68-e9d38f90052e status: code: 200 message: OK @@ -4345,13 +5266,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4359,7 +5280,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4372,19 +5293,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:52:30 GMT + - Tue, 10 May 2022 02:16:02 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4401,7 +5324,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e55c004-2db6-4b74-8cf8-c9febb27750e + - c393940a-ed14-43ef-8166-e4662420e8f5 status: code: 200 message: OK @@ -4419,13 +5342,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4433,7 +5356,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4446,19 +5369,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:53:00 GMT + - Tue, 10 May 2022 02:16:33 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4475,7 +5400,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c72472a7-ffc3-4789-82d8-099df640a715 + - 0f8ac714-06d0-44cc-bc0b-b5ce64e72a19 status: code: 200 message: OK @@ -4493,13 +5418,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4507,7 +5432,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4520,19 +5445,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:53:31 GMT + - Tue, 10 May 2022 02:17:05 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4549,7 +5476,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e170a37e-e03f-49e6-8b5d-b29b66cb7daa + - 14e560a9-1026-4378-8b4c-6187b2fbf40a status: code: 200 message: OK @@ -4567,13 +5494,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4581,7 +5508,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4594,19 +5521,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:54:01 GMT + - Tue, 10 May 2022 02:17:35 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4623,7 +5552,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0f59d6de-956e-4960-af07-1439c0c5a83b + - c80d5f18-9e92-44de-8673-ea11fa1acd06 status: code: 200 message: OK @@ -4641,13 +5570,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4655,7 +5584,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4668,19 +5597,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:54:32 GMT + - Tue, 10 May 2022 02:18:05 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4697,7 +5628,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 020fd651-4416-4994-a2cf-389a25eda4eb + - 350d307d-8b30-450f-b06b-f9403644fbe5 status: code: 200 message: OK @@ -4715,13 +5646,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4729,7 +5660,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4742,19 +5673,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:03 GMT + - Tue, 10 May 2022 02:18:36 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4771,7 +5704,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f52ddea-0d8d-4ba9-a453-6ebbb6d05748 + - e61018e5-2ae0-42ad-8c21-cfae1a3e7dde status: code: 200 message: OK @@ -4789,13 +5722,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4803,7 +5736,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4816,19 +5749,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:33 GMT + - Tue, 10 May 2022 02:19:06 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4845,7 +5780,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 560fb189-3adb-4860-9934-959291d36231 + - ebd0972c-61bb-4a32-9d8a-778859981293 status: code: 200 message: OK @@ -4863,13 +5798,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4877,7 +5812,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4890,19 +5825,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:56:04 GMT + - Tue, 10 May 2022 02:19:36 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4919,7 +5856,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5f9e2b89-b3f9-4b94-a653-903643d888b3 + - edf668fe-53b3-426c-b9e3-edd039af5cf4 status: code: 200 message: OK @@ -4937,13 +5874,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -4951,7 +5888,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -4964,19 +5901,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:56:34 GMT + - Tue, 10 May 2022 02:20:07 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -4993,7 +5932,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a3a760d4-2484-4083-8a34-da43dbf42c11 + - 2d7622f6-5f83-426b-ae33-ade45de1e57f status: code: 200 message: OK @@ -5011,13 +5950,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -5025,7 +5964,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -5038,19 +5977,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:57:04 GMT + - Tue, 10 May 2022 02:20:37 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -5067,7 +6008,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 15f97613-9ab4-4b2d-8a4a-408fa88845ab + - 33a494e7-f451-4b78-8a3f-643fceb5d126 status: code: 200 message: OK @@ -5085,13 +6026,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -5099,7 +6040,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -5112,19 +6053,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:57:36 GMT + - Tue, 10 May 2022 02:21:07 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -5141,7 +6084,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e808347a-f089-4913-825b-049b796cd580 + - c5c195bd-2d77-4e65-bfcb-6f278f5f0690 status: code: 200 message: OK @@ -5159,13 +6102,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -5173,7 +6116,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"27269940-406d-4b46-9b4b-6de29820852e\\\"\",\r\n + \ \"etag\": \"W/\\\"9aa1c45d-da2e-4b95-b3d0-2177ff20524a\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -5186,19 +6129,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2831' + - '2700' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:58:06 GMT + - Tue, 10 May 2022 02:21:38 GMT etag: - - W/"27269940-406d-4b46-9b4b-6de29820852e" + - W/"9aa1c45d-da2e-4b95-b3d0-2177ff20524a" expires: - '-1' pragma: @@ -5215,7 +6160,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 21a98e39-9e86-4e57-ab18-ddf77c823754 + - 0b480681-3954-4a53-8324-3c05cc6c30dc status: code: 200 message: OK @@ -5233,13 +6178,13 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"d970770d-fd9e-43ed-9c8c-d81c0ac014fc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"62d1fffc-b9a5-4840-86c5-507f5f6e5efd\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -5247,7 +6192,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"d970770d-fd9e-43ed-9c8c-d81c0ac014fc\\\"\",\r\n + \ \"etag\": \"W/\\\"62d1fffc-b9a5-4840-86c5-507f5f6e5efd\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -5260,19 +6205,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2833' + - '2702' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:58:36 GMT + - Tue, 10 May 2022 02:22:08 GMT etag: - - W/"d970770d-fd9e-43ed-9c8c-d81c0ac014fc" + - W/"62d1fffc-b9a5-4840-86c5-507f5f6e5efd" expires: - '-1' pragma: @@ -5289,7 +6236,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4dbd85e0-d4de-4456-a722-3297e9add0f7 + - c5fc4e3a-922b-4712-87e3-43947f8531b5 status: code: 200 message: OK @@ -5307,13 +6254,13 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"d970770d-fd9e-43ed-9c8c-d81c0ac014fc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"62d1fffc-b9a5-4840-86c5-507f5f6e5efd\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -5321,7 +6268,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"d970770d-fd9e-43ed-9c8c-d81c0ac014fc\\\"\",\r\n + \ \"etag\": \"W/\\\"62d1fffc-b9a5-4840-86c5-507f5f6e5efd\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -5334,19 +6281,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2833' + - '2702' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:58:38 GMT + - Tue, 10 May 2022 02:22:09 GMT etag: - - W/"d970770d-fd9e-43ed-9c8c-d81c0ac014fc" + - W/"62d1fffc-b9a5-4840-86c5-507f5f6e5efd" expires: - '-1' pragma: @@ -5363,7 +6312,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 77b68cc2-f0d1-4712-8f5f-d2ffa4190c19 + - 2bdb04c0-e8b6-4543-8fdb-a07710ee8546 status: code: 200 message: OK @@ -5375,9 +6324,9 @@ interactions: {"addressPrefixes": ["13.0.0.0/24", "12.0.0.0/24"]}, "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable"}, "propagatedRouteTables": {"labels": ["x1", "x2", "x3"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable"}]}, - "vnetRoutes": {"staticRoutes": []}}}}], "vpnGatewayScaleUnit": 3, "vpnServerConfiguration": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2"}, - "customDnsServers": []}}' + "vnetRoutes": {"staticRoutes": []}}, "enableInternetSecurity": true}}], "vpnGatewayScaleUnit": + 3, "vpnServerConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2"}, + "customDnsServers": [], "isRoutingPreferenceInternet": false}}' headers: Accept: - application/json @@ -5388,19 +6337,19 @@ interactions: Connection: - keep-alive Content-Length: - - '1847' + - '1683' Content-Type: - application/json ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"41848123-d3eb-4321-a743-67dc90f36e3c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"20fcd5c2-4b3f-4962-8905-4507edcaae03\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -5408,7 +6357,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"41848123-d3eb-4321-a743-67dc90f36e3c\\\"\",\r\n + \ \"etag\": \"W/\\\"20fcd5c2-4b3f-4962-8905-4507edcaae03\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -5422,21 +6371,23 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 3,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2873' + - '2742' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:58:41 GMT + - Tue, 10 May 2022 02:22:12 GMT expires: - '-1' pragma: @@ -5453,58 +6404,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 878d42be-3929-40f6-ba04-cbc7c8b49f6c + - 7bd85ec4-6aef-4adb-997a-73f7fba2ba18 x-ms-ratelimit-remaining-subscription-writes: - - '1191' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network p2s-vpn-gateway update - Connection: - - keep-alive - ParameterSetName: - - -g -n --scale-unit --vpn-server-config --address-space --labels - User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 18 Sep 2021 06:58: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: - - ddbc66b9-8d64-450b-b54c-bc9c5a8fe5e5 + - '1199' status: code: 200 message: OK @@ -5522,9 +6424,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5536,7 +6438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:59:02 GMT + - Tue, 10 May 2022 02:22:22 GMT expires: - '-1' pragma: @@ -5553,7 +6455,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 759c1316-ba69-48f2-9273-3b32087fd9d2 + - add07149-b3d7-46a4-b5a9-755b15658dfd status: code: 200 message: OK @@ -5571,9 +6473,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5585,7 +6487,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:59:23 GMT + - Tue, 10 May 2022 02:22:33 GMT expires: - '-1' pragma: @@ -5602,7 +6504,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bca87da7-520e-4021-bdee-9e4c70b0edbb + - f00b0c74-bfd7-4360-b475-62737489d0d2 status: code: 200 message: OK @@ -5620,9 +6522,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5634,7 +6536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:59:43 GMT + - Tue, 10 May 2022 02:22:53 GMT expires: - '-1' pragma: @@ -5651,7 +6553,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 982e0c3b-5a0a-41d1-ba87-c3dfbb196786 + - 84be01f8-704b-4561-ac4a-c3b70976cdc0 status: code: 200 message: OK @@ -5669,9 +6571,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5683,7 +6585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:00:24 GMT + - Tue, 10 May 2022 02:23:13 GMT expires: - '-1' pragma: @@ -5700,7 +6602,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b15f6975-e7c0-4991-8a44-c54e03464acb + - e0bfb00b-223c-41c7-9386-0963120dad34 status: code: 200 message: OK @@ -5718,9 +6620,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5732,7 +6634,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:01:04 GMT + - Tue, 10 May 2022 02:23:54 GMT expires: - '-1' pragma: @@ -5749,7 +6651,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2321c79a-548e-436e-b417-670f2435c359 + - 71b8a0b1-b3cc-4ee8-bf1c-9be0ae92f438 status: code: 200 message: OK @@ -5767,9 +6669,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5781,7 +6683,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:02:25 GMT + - Tue, 10 May 2022 02:24:33 GMT expires: - '-1' pragma: @@ -5798,7 +6700,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b06e6a89-d272-480e-a13e-081a8a447026 + - f01806d5-4eaa-4ec3-b929-181715b8dc8a status: code: 200 message: OK @@ -5816,9 +6718,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5830,7 +6732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:05:06 GMT + - Tue, 10 May 2022 02:25:54 GMT expires: - '-1' pragma: @@ -5847,7 +6749,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5d902b44-d039-4cc3-8ba0-0ca103d1fc48 + - 824447a6-155e-453c-8a8a-dfc5bd4efe0f status: code: 200 message: OK @@ -5865,9 +6767,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5879,7 +6781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:06:47 GMT + - Tue, 10 May 2022 02:28:35 GMT expires: - '-1' pragma: @@ -5896,7 +6798,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 447d4969-ecce-4695-b636-6d99c83edf98 + - 51c1a1e1-0eee-45d0-9740-9442e9f3ca2a status: code: 200 message: OK @@ -5914,9 +6816,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5928,7 +6830,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:08:27 GMT + - Tue, 10 May 2022 02:30:16 GMT expires: - '-1' pragma: @@ -5945,7 +6847,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1ea1a3ee-7626-43ea-855c-b4e5cd63f72b + - ddc1314a-bd61-4688-bcac-5522a6afaba3 status: code: 200 message: OK @@ -5963,9 +6865,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5977,7 +6879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:10:08 GMT + - Tue, 10 May 2022 02:31:56 GMT expires: - '-1' pragma: @@ -5994,7 +6896,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 492e73cc-6e63-4c5c-a8d7-d6058a9d1585 + - 23cdfd5d-7e61-48a6-ba15-9316c8601b54 status: code: 200 message: OK @@ -6012,9 +6914,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6026,7 +6928,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:11:48 GMT + - Tue, 10 May 2022 02:33:36 GMT expires: - '-1' pragma: @@ -6043,7 +6945,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9648df26-b2a3-487d-9cbb-c7bd66cc087f + - 7232c8dc-0120-4628-95fb-61c424f4de7d status: code: 200 message: OK @@ -6061,9 +6963,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6075,7 +6977,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:13:29 GMT + - Tue, 10 May 2022 02:35:17 GMT expires: - '-1' pragma: @@ -6092,7 +6994,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 95f660ba-24f5-4ed1-9979-4007b764ee1f + - 0296d0a1-b05c-4edc-8d9c-f3a282b8d440 status: code: 200 message: OK @@ -6110,9 +7012,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6124,7 +7026,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:15:10 GMT + - Tue, 10 May 2022 02:36:58 GMT expires: - '-1' pragma: @@ -6141,7 +7043,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 395ee1de-5a0b-4c60-9526-65b8c5b4cf21 + - b2d32b7b-13d6-424c-a7de-ca5926866021 status: code: 200 message: OK @@ -6159,9 +7061,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6173,7 +7075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:16:50 GMT + - Tue, 10 May 2022 02:38:39 GMT expires: - '-1' pragma: @@ -6190,7 +7092,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d34a06f2-fa70-47b3-bf6d-73f950aec502 + - f27d6c63-34dd-495b-aeb9-1a1fbf34555e status: code: 200 message: OK @@ -6208,9 +7110,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6222,7 +7124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:18:30 GMT + - Tue, 10 May 2022 02:40:19 GMT expires: - '-1' pragma: @@ -6239,7 +7141,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8610d8a5-f637-4a8f-92b9-d3b61eb5c21c + - 0f8b09b7-29d9-49b5-8980-4ce614085e96 status: code: 200 message: OK @@ -6257,9 +7159,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6271,7 +7173,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:10 GMT + - Tue, 10 May 2022 02:41:59 GMT expires: - '-1' pragma: @@ -6288,7 +7190,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f9267e93-22a2-452d-b18b-64be653368b9 + - ed4abfd0-93e0-44b4-8941-3dbe70c42ded status: code: 200 message: OK @@ -6306,9 +7208,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6320,7 +7222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:21:51 GMT + - Tue, 10 May 2022 02:43:41 GMT expires: - '-1' pragma: @@ -6337,7 +7239,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ab6b524-0c87-4b9e-8f20-d2f455b3c02b + - fe4a5ae4-1a82-4600-ad96-fb46f80b9f5d status: code: 200 message: OK @@ -6355,9 +7257,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6369,7 +7271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:23:31 GMT + - Tue, 10 May 2022 02:45:21 GMT expires: - '-1' pragma: @@ -6386,7 +7288,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5a8fb24a-88b5-485a-bb73-cf6d41cd1b35 + - 653d7a8e-0469-461d-b3eb-d8a75255c656 status: code: 200 message: OK @@ -6404,9 +7306,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6418,7 +7320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:25:12 GMT + - Tue, 10 May 2022 02:47:02 GMT expires: - '-1' pragma: @@ -6435,7 +7337,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a39e6cc-bcfa-4df0-b89e-1f0216609770 + - 6b3e4ba9-f347-4762-8567-2f8f77dad6e4 status: code: 200 message: OK @@ -6453,9 +7355,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6467,7 +7369,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:26:52 GMT + - Tue, 10 May 2022 02:48:43 GMT expires: - '-1' pragma: @@ -6484,7 +7386,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5a9fbc3-ec92-474d-81c2-361d56644e11 + - a6e2d3e8-55a7-452f-ba7f-2993bdeb6d17 status: code: 200 message: OK @@ -6502,9 +7404,9 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c1a96e1a-446f-4d10-9931-9193e026188d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5d469a98-063c-4c87-8db7-ab33183a79b4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -6516,7 +7418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:28:33 GMT + - Tue, 10 May 2022 02:50:23 GMT expires: - '-1' pragma: @@ -6533,7 +7435,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fbd7d832-7d6c-48d1-8d57-7a176be9f4e6 + - e05e9f20-d0ef-4ee9-adb7-590f2a94733d status: code: 200 message: OK @@ -6551,13 +7453,13 @@ interactions: ParameterSetName: - -g -n --scale-unit --vpn-server-config --address-space --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"5d61c753-9ba1-47a8-8d02-fce34e5c01d0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7557fd67-d887-44a9-8168-f71a78664a78\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -6565,7 +7467,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"5d61c753-9ba1-47a8-8d02-fce34e5c01d0\\\"\",\r\n + \ \"etag\": \"W/\\\"7557fd67-d887-44a9-8168-f71a78664a78\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -6579,19 +7481,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 3,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2875' + - '2744' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:28:34 GMT + - Tue, 10 May 2022 02:50:23 GMT etag: - - W/"5d61c753-9ba1-47a8-8d02-fce34e5c01d0" + - W/"7557fd67-d887-44a9-8168-f71a78664a78" expires: - '-1' pragma: @@ -6608,7 +7512,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6e071f7a-76c7-4c28-ae83-057701276c44 + - 333abf1d-324c-4603-be54-acde65f9ed47 status: code: 200 message: OK @@ -6626,14 +7530,14 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways?api-version=2021-08-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_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"5d61c753-9ba1-47a8-8d02-fce34e5c01d0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7557fd67-d887-44a9-8168-f71a78664a78\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -6641,7 +7545,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \ \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"5d61c753-9ba1-47a8-8d02-fce34e5c01d0\\\"\",\r\n + \ \"etag\": \"W/\\\"7557fd67-d887-44a9-8168-f71a78664a78\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -6655,18 +7559,19 @@ interactions: \ \"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\": - true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayScaleUnit\": - 3,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": - false\r\n }\r\n }\r\n ]\r\n}" + true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayDetachStatus\": + \"Attached\",\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": + [],\r\n \"isRoutingPreferenceInternet\": false,\r\n \"useRadiusProxyIPs\": + false,\r\n \"radiusProxyIPs\": []\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3132' + - '3013' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:28:36 GMT + - Tue, 10 May 2022 02:50:25 GMT expires: - '-1' pragma: @@ -6683,7 +7588,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 33d74cf4-8ae9-4657-b35a-0d53b96de2ae + - a1b8d16e-da2b-4cca-986f-ee823e024f54 status: code: 200 message: OK @@ -6699,34 +7604,65 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/p2svpnGateways?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/p2svpnGateways?api-version=2021-08-01 response: body: - string: '{"value":[{"name":"test-p2s-gateway","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generatecvdstcek5yi5vfddnoqek4y2m3vm6aknxljrtbgwxzx7vk2/providers/Microsoft.Network/p2sVpnGateways/test-p2s-gateway","etag":"W/\"11a450ce-6b1f-4369-b783-53a18a6b6e8a\"","type":"Microsoft.Network/p2sVpnGateways","location":"westus","properties":{"provisioningState":"Updating","virtualHub":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generatecvdstcek5yi5vfddnoqek4y2m3vm6aknxljrtbgwxzx7vk2/providers/Microsoft.Network/virtualHubs/test-p2s-vhub"},"vpnServerConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generatecvdstcek5yi5vfddnoqek4y2m3vm6aknxljrtbgwxzx7vk2/providers/Microsoft.Network/vpnServerConfigurations/test-p2s-vpn-server-config"},"vpnServerConfigurationLocation":"westus","p2SConnectionConfigurations":[{"name":"P2SConnectionConfigDefault","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generatecvdstcek5yi5vfddnoqek4y2m3vm6aknxljrtbgwxzx7vk2/providers/Microsoft.Network/p2sVpnGateways/test-p2s-gateway/p2sConnectionConfigurations/P2SConnectionConfigDefault","etag":"W/\"11a450ce-6b1f-4369-b783-53a18a6b6e8a\"","type":"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations","properties":{"provisioningState":"Updating","routingConfiguration":{"associatedRouteTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generatecvdstcek5yi5vfddnoqek4y2m3vm6aknxljrtbgwxzx7vk2/providers/Microsoft.Network/virtualHubs/test-p2s-vhub/hubRouteTables/defaultRouteTable"},"propagatedRouteTables":{"labels":["default"],"ids":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generatecvdstcek5yi5vfddnoqek4y2m3vm6aknxljrtbgwxzx7vk2/providers/Microsoft.Network/virtualHubs/test-p2s-vhub/hubRouteTables/defaultRouteTable"}]},"vnetRoutes":{"staticRoutes":[]}},"vpnClientAddressPool":{"addressPrefixes":["10.0.2.0/24","11.0.1.0/24"]},"enableInternetSecurity":true}}],"vpnGatewayScaleUnit":2,"customDnsServers":[],"isRoutingPreferenceInternet":false}},{"name":"clitestvp2sgateway","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway","etag":"W/\"5d61c753-9ba1-47a8-8d02-fce34e5c01d0\"","type":"Microsoft.Network/p2sVpnGateways","location":"westcentralus","properties":{"provisioningState":"Succeeded","virtualHub":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub"},"vpnServerConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2"},"vpnServerConfigurationLocation":"westcentralus","p2SConnectionConfigurations":[{"name":"P2SConnectionConfigDefault","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault","etag":"W/\"5d61c753-9ba1-47a8-8d02-fce34e5c01d0\"","type":"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations","properties":{"provisioningState":"Succeeded","routingConfiguration":{"associatedRouteTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable"},"propagatedRouteTables":{"labels":["x1","x2","x3"],"ids":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable"}]},"vnetRoutes":{"staticRoutes":[]}},"vpnClientAddressPool":{"addressPrefixes":["13.0.0.0/24","12.0.0.0/24"]},"enableInternetSecurity":true}}],"vpnGatewayScaleUnit":3,"customDnsServers":[],"isRoutingPreferenceInternet":false}}]}' + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitestvp2sgateway\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"7557fd67-d887-44a9-8168-f71a78664a78\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n + \ \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": + \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"7557fd67-d887-44a9-8168-f71a78664a78\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"x1\",\r\n \"x2\",\r\n \"x3\"\r\n + \ ],\r\n \"ids\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubRouteTables/defaultRouteTable\"\r\n + \ }\r\n ]\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\": + true\r\n }\r\n }\r\n ],\r\n \"vpnGatewayDetachStatus\": + \"Attached\",\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": + [],\r\n \"isRoutingPreferenceInternet\": false,\r\n \"useRadiusProxyIPs\": + false,\r\n \"radiusProxyIPs\": []\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '4460' + - '3013' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:28:38 GMT + - Tue, 10 May 2022 02:50: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-original-request-ids: - - 7f5dc552-c19a-4a49-a7fe-bfc7051d10e9 - - d8127957-2f8a-43dc-946a-7ec702cad319 + x-ms-arm-service-request-id: + - 83fb145b-c53a-4b08-b6db-cf1771c1fea5 status: code: 200 message: OK @@ -6744,13 +7680,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n - \ \"etag\": \"W/\\\"5d61c753-9ba1-47a8-8d02-fce34e5c01d0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7557fd67-d887-44a9-8168-f71a78664a78\\\"\",\r\n \"type\": \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n @@ -6758,7 +7694,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westcentralus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"5d61c753-9ba1-47a8-8d02-fce34e5c01d0\\\"\",\r\n + \ \"etag\": \"W/\\\"7557fd67-d887-44a9-8168-f71a78664a78\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -6772,19 +7708,21 @@ interactions: \ \"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\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 3,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2875' + - '2744' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:28:40 GMT + - Tue, 10 May 2022 02:50:26 GMT etag: - - W/"5d61c753-9ba1-47a8-8d02-fce34e5c01d0" + - W/"7557fd67-d887-44a9-8168-f71a78664a78" expires: - '-1' pragma: @@ -6801,7 +7739,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c7b5c40c-7965-4330-b6c8-ac219ddcfb88 + - 84ce9025-beb0-4649-a311-221a078e03f8 status: code: 200 message: OK @@ -6821,9 +7759,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-01 response: body: string: '' @@ -6831,17 +7769,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 18 Sep 2021 07:28:43 GMT + - Tue, 10 May 2022 02:50:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 pragma: - no-cache server: @@ -6852,9 +7790,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dfac7853-1a2d-448f-be44-5b3bee5fdac0 + - 889a9757-96e0-4ad1-93db-8d6002eaa272 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted @@ -6872,58 +7810,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 18 Sep 2021 07:28: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: - - 1ba980ba-ebc7-4291-9498-b348ef9d4661 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network p2s-vpn-gateway delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6935,7 +7824,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:29:04 GMT + - Tue, 10 May 2022 02:50:40 GMT expires: - '-1' pragma: @@ -6952,7 +7841,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1ca71fc-3c0a-432a-b324-2f499a97826f + - ee4862c7-d3b8-469e-a0c5-5fbd580e3894 status: code: 200 message: OK @@ -6970,9 +7859,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -6984,7 +7873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:29:24 GMT + - Tue, 10 May 2022 02:50:50 GMT expires: - '-1' pragma: @@ -7001,7 +7890,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c4b4a2b-2eb8-478f-8513-2d47a52fa76a + - 4fd707bb-cc0e-423a-8da7-7a8a8b3a1f0b status: code: 200 message: OK @@ -7019,9 +7908,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -7033,7 +7922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:29:44 GMT + - Tue, 10 May 2022 02:51:10 GMT expires: - '-1' pragma: @@ -7050,7 +7939,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b771c067-4d38-4f11-ac91-627ffca88e11 + - 28a1666b-3c9a-4b4c-b7bc-42e901938430 status: code: 200 message: OK @@ -7068,9 +7957,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -7082,7 +7971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:30:25 GMT + - Tue, 10 May 2022 02:51:31 GMT expires: - '-1' pragma: @@ -7099,7 +7988,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73d7172d-e353-4bd2-9dcc-b6885b103f40 + - 06010fc2-4bd1-4c14-b4fd-bc842bc5a038 status: code: 200 message: OK @@ -7117,9 +8006,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -7131,7 +8020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:31:05 GMT + - Tue, 10 May 2022 02:52:12 GMT expires: - '-1' pragma: @@ -7148,7 +8037,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4474f66-812d-4286-952b-ad9702a54206 + - 0c16cfbc-159e-44c5-a2dd-808ef8159539 status: code: 200 message: OK @@ -7166,9 +8055,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -7180,7 +8069,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:32:26 GMT + - Tue, 10 May 2022 02:52:52 GMT expires: - '-1' pragma: @@ -7197,7 +8086,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b33f66ce-bdeb-4617-93ea-0e3bf4870885 + - 6c251530-7bb8-47a1-a039-c6f2a5911704 status: code: 200 message: OK @@ -7215,9 +8104,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -7229,7 +8118,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:35:08 GMT + - Tue, 10 May 2022 02:54:12 GMT expires: - '-1' pragma: @@ -7246,7 +8135,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22ad1957-b6ae-46bd-b504-56776bc73c49 + - 9142d6e3-05e8-4b4a-bea1-567da7efba24 status: code: 200 message: OK @@ -7264,9 +8153,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -7278,7 +8167,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:36:48 GMT + - Tue, 10 May 2022 02:56:52 GMT expires: - '-1' pragma: @@ -7295,7 +8184,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c12e2052-4dab-4aa1-901f-64914f1c7c5b + - e2a9d3fe-a45c-4e49-9b10-f89c22da4c10 status: code: 200 message: OK @@ -7313,9 +8202,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -7327,7 +8216,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:38:29 GMT + - Tue, 10 May 2022 02:58:33 GMT expires: - '-1' pragma: @@ -7344,7 +8233,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d49fa31-daf6-49eb-9803-084e2c5bcc0b + - e39189a6-1ccd-461e-a2f3-0d7befad1792 status: code: 200 message: OK @@ -7362,9 +8251,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -7376,7 +8265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:40:09 GMT + - Tue, 10 May 2022 03:00:14 GMT expires: - '-1' pragma: @@ -7393,7 +8282,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 366f00d5-e9c1-4a2e-95f3-bdf207ddef0c + - fc50c220-3d2c-4243-90a1-e8b97e75ef42 status: code: 200 message: OK @@ -7411,9 +8300,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -7425,7 +8314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:41:49 GMT + - Tue, 10 May 2022 03:01:55 GMT expires: - '-1' pragma: @@ -7442,7 +8331,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92aea370-72a2-4061-94b5-08117d1a6b51 + - 005ac7f6-7171-4d4e-b14a-274792af1b31 status: code: 200 message: OK @@ -7460,9 +8349,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fd0db081-7377-46b8-b7ba-6d0bd819d680?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ca9109a1-acc0-499d-8c9f-9fb75e72050d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -7474,7 +8363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:43:30 GMT + - Tue, 10 May 2022 03:03:35 GMT expires: - '-1' pragma: @@ -7491,7 +8380,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7b463fdd-47ef-4e3b-a6d3-6db3c7c246e8 + - 0fe89489-0d86-49ff-a8c2-ae6010733f8d status: code: 200 message: OK @@ -7509,36 +8398,33 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_p2s_vpn_gateway000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2021-08-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_p2s_vpn_gateway000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway - not found.\",\r\n \"details\": []\r\n }\r\n}" + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/p2sVpnGateways/clitestvp2sgateway'' + under resource group ''cli_test_azure_p2s_vpn_gateway000001'' was not found. + For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '311' + - '259' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:43:33 GMT + - Tue, 10 May 2022 03:03:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 8e8e5195-7327-42c6-b493-e973845ac6b3 + x-ms-failure-cause: + - gateway status: code: 404 message: Not Found 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 eeb9d56a371..e0f08088620 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 @@ -61,7 +61,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2\",\r\n @@ -166,7 +166,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2\",\r\n @@ -227,7 +227,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\",\r\n @@ -678,7 +678,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\",\r\n @@ -742,7 +742,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n @@ -1000,7 +1000,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n @@ -1064,7 +1064,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections?api-version=2021-08-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitestvhubconnection2\",\r\n @@ -1128,7 +1128,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n @@ -1192,7 +1192,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n @@ -1267,7 +1267,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n @@ -1382,7 +1382,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n @@ -1448,7 +1448,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2021-08-01 response: body: string: '' @@ -1742,7 +1742,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections?api-version=2021-08-01 response: body: string: "{\r\n \"value\": []\r\n}" 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 index c9a50c3fc20..402b424c104 100644 --- 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 @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vpn_server_config000001?api-version=2021-04-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":"2021-09-18T06:23:34Z"},"properties":{"provisioningState":"Succeeded"}}' + 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":"2022-05-10T01:33:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '361' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:23:42 GMT + - Tue, 10 May 2022 01:33:24 GMT expires: - '-1' pragma: @@ -63,13 +63,13 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"c6d7c267-ce41-4fa0-8fe9-022b1bfba36c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"050191d6-5ecf-4325-ae98-07d455c319cf\\\"\",\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\": @@ -80,21 +80,21 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\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/westcentralus/operations/dfb4abb7-d64f-4efe-83e3-1c9476ee02fc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/02ec48b2-cc67-4b4d-bd1f-e1bd1400b817?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2267' + - '2268' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:23:52 GMT + - Tue, 10 May 2022 01:33:33 GMT expires: - '-1' pragma: @@ -107,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e9f3a6d0-4d33-4378-81a0-4fac8faf3d7d + - 730ce244-084a-44fc-9e58-2890e28b0ffa x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -127,9 +127,9 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/dfb4abb7-d64f-4efe-83e3-1c9476ee02fc?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/02ec48b2-cc67-4b4d-bd1f-e1bd1400b817?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -141,7 +141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:02 GMT + - Tue, 10 May 2022 01:33:44 GMT expires: - '-1' pragma: @@ -158,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 30c7af23-7d82-4f1e-9cdd-de8b1f077f54 + - 91cb5c5d-0bb3-4b35-98d4-84a4e3b44a5d status: code: 200 message: OK @@ -176,13 +176,13 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"82a5c8f0-670e-400c-9dc7-5a961603ae40\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"015a3d67-9338-4483-9c0c-52ff57922f8c\\\"\",\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\": @@ -193,19 +193,19 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2268' + - '2269' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:02 GMT + - Tue, 10 May 2022 01:33:44 GMT etag: - - W/"82a5c8f0-670e-400c-9dc7-5a961603ae40" + - W/"015a3d67-9338-4483-9c0c-52ff57922f8c" expires: - '-1' pragma: @@ -222,7 +222,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ecedc95-9878-4547-927a-c8df59b9a242 + - ae2cfffe-44d7-4e4f-88db-02d07b610fe8 status: code: 200 message: OK @@ -241,21 +241,21 @@ interactions: - -n -g --auth-types --radius-client-root-certs --radius-server-root-certs --radius-servers --radius-servers User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vpn_server_config000001?api-version=2021-04-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":"2021-09-18T06:23:34Z"},"properties":{"provisioningState":"Succeeded"}}' + 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":"2022-05-10T01:33:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '361' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:04 GMT + - Tue, 10 May 2022 01:33:45 GMT expires: - '-1' pragma: @@ -295,13 +295,13 @@ interactions: - -n -g --auth-types --radius-client-root-certs --radius-server-root-certs --radius-servers --radius-servers User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"1887b63e-a1e1-4780-b7c7-387020c400d9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6c5245e1-1647-4c48-bbd7-214d0e411e59\\\"\",\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\": @@ -316,20 +316,21 @@ interactions: \ }\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}" + {},\r\n \"configurationPolicyGroups\": [],\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/westcentralus/operations/62f8451b-b777-40f5-8804-db52ff03d6f1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/dff3e303-cf4a-447a-8ba2-88d397bc1995?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2571' + - '2572' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:05 GMT + - Tue, 10 May 2022 01:33:46 GMT expires: - '-1' pragma: @@ -346,9 +347,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 69966b8c-3501-4c67-84c3-178c7271699a + - 0cf98d25-0e3a-4dbb-ba03-7ac0e497a2de x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -367,9 +368,9 @@ interactions: - -n -g --auth-types --radius-client-root-certs --radius-server-root-certs --radius-servers --radius-servers User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/62f8451b-b777-40f5-8804-db52ff03d6f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/dff3e303-cf4a-447a-8ba2-88d397bc1995?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -381,7 +382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:17 GMT + - Tue, 10 May 2022 01:33:57 GMT expires: - '-1' pragma: @@ -398,7 +399,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 113bbed6-5493-41ad-9191-6342cee77cc8 + - f06c832a-7e6b-478b-91f1-0523900e8593 status: code: 200 message: OK @@ -417,13 +418,13 @@ interactions: - -n -g --auth-types --radius-client-root-certs --radius-server-root-certs --radius-servers --radius-servers User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"b1e2d3e5-6f3c-4072-8bba-243228d0a4ce\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e4b136de-7951-43de-bb1f-736a528c45eb\\\"\",\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\": @@ -438,18 +439,19 @@ interactions: \ }\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}" + {},\r\n \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2572' + - '2573' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:17 GMT + - Tue, 10 May 2022 01:33:57 GMT etag: - - W/"b1e2d3e5-6f3c-4072-8bba-243228d0a4ce" + - W/"e4b136de-7951-43de-bb1f-736a528c45eb" expires: - '-1' pragma: @@ -466,7 +468,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fcbf5b0d-55bc-4902-ad74-f60b11f8200a + - 6b75010d-bfef-4c4b-b417-25b578ceecb1 status: code: 200 message: OK @@ -484,13 +486,13 @@ interactions: ParameterSetName: - -n -g --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"b1e2d3e5-6f3c-4072-8bba-243228d0a4ce\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e4b136de-7951-43de-bb1f-736a528c45eb\\\"\",\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\": @@ -505,18 +507,19 @@ interactions: \ }\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}" + {},\r\n \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2572' + - '2573' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:19 GMT + - Tue, 10 May 2022 01:33:58 GMT etag: - - W/"b1e2d3e5-6f3c-4072-8bba-243228d0a4ce" + - W/"e4b136de-7951-43de-bb1f-736a528c45eb" expires: - '-1' pragma: @@ -533,7 +536,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 919dfcf0-2b33-491c-b94f-fa164cf0d274 + - b30031d3-8135-4ec5-afda-40c93e8bf0d3 status: code: 200 message: OK @@ -551,21 +554,21 @@ interactions: ParameterSetName: - -n -g --auth-types --aad-audience --aad-issuer --aad-tenant --no-wait User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vpn_server_config000001?api-version=2021-04-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":"2021-09-18T06:23:34Z"},"properties":{"provisioningState":"Succeeded"}}' + 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":"2022-05-10T01:33:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '361' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:20 GMT + - Tue, 10 May 2022 01:33:59 GMT expires: - '-1' pragma: @@ -599,13 +602,13 @@ interactions: ParameterSetName: - -n -g --auth-types --aad-audience --aad-issuer --aad-tenant --no-wait User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"c1d49425-8da6-4b5c-9bc5-ebcc79c955d0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"58cb8834-dfb5-4d1e-aa38-bd22923560b9\\\"\",\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\": @@ -615,20 +618,21 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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/westcentralus/operations/7e30fe00-9b66-44f6-b4c6-3466ffb64d0d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2047ac46-a2a8-4665-b041-f1fe21fbc2cf?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1097' + - '1098' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:21 GMT + - Tue, 10 May 2022 01:34:00 GMT expires: - '-1' pragma: @@ -645,9 +649,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3acb68e1-f36d-445e-b29a-02ec2d32ae48 + - 32720e9c-18d7-4c93-a271-d4e417162494 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -665,15 +669,15 @@ interactions: ParameterSetName: - -n -g --created User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"e2af6b8b-59b0-40e3-ada0-668213ac1a41\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"58cb8834-dfb5-4d1e-aa38-bd22923560b9\\\"\",\r\n \"type\": \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + \ \"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 @@ -681,7 +685,8 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" headers: cache-control: - no-cache @@ -690,9 +695,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:24 GMT + - Tue, 10 May 2022 01:34:02 GMT etag: - - W/"e2af6b8b-59b0-40e3-ada0-668213ac1a41" + - W/"58cb8834-dfb5-4d1e-aa38-bd22923560b9" expires: - '-1' pragma: @@ -709,7 +714,70 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c2fb415-96a3-43b8-999e-fb0dbf15bbff + - edde1515-6483-4477-a1cc-4d3a52fb45c3 + 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: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + 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=2021-08-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/\\\"5b4db1f2-c1ff-467d-982e-7acea815daea\\\"\",\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 + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1099' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 01:34:33 GMT + etag: + - W/"5b4db1f2-c1ff-467d-982e-7acea815daea" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e326fd67-63cf-4915-8a47-d5096d83115b status: code: 200 message: OK @@ -727,13 +795,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"e2af6b8b-59b0-40e3-ada0-668213ac1a41\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5b4db1f2-c1ff-467d-982e-7acea815daea\\\"\",\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\": @@ -743,18 +811,19 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:25 GMT + - Tue, 10 May 2022 01:34:33 GMT etag: - - W/"e2af6b8b-59b0-40e3-ada0-668213ac1a41" + - W/"5b4db1f2-c1ff-467d-982e-7acea815daea" expires: - '-1' pragma: @@ -771,7 +840,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 375b31a3-9825-4cdc-8c3d-ce05eed62964 + - a90a7563-2e7e-499a-9021-e3b4b84b6668 status: code: 200 message: OK @@ -789,14 +858,14 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations?api-version=2021-08-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/\\\"e2af6b8b-59b0-40e3-ada0-668213ac1a41\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5b4db1f2-c1ff-467d-982e-7acea815daea\\\"\",\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 @@ -807,16 +876,17 @@ interactions: {\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}" + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1235' + - '1240' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:28 GMT + - Tue, 10 May 2022 01:34:34 GMT expires: - '-1' pragma: @@ -833,7 +903,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92082980-3e52-433e-913f-a840f61ed754 + - f0bd1bbd-ed18-4975-aa47-023327ee956f status: code: 200 message: OK @@ -849,14 +919,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/vpnServerConfigurations?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/vpnServerConfigurations?api-version=2021-08-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/\\\"e2af6b8b-59b0-40e3-ada0-668213ac1a41\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5b4db1f2-c1ff-467d-982e-7acea815daea\\\"\",\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 @@ -867,16 +937,17 @@ interactions: {\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}" + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1235' + - '1240' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:29 GMT + - Tue, 10 May 2022 01:34:36 GMT expires: - '-1' pragma: @@ -893,7 +964,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 367113bf-ee1a-4054-87d8-5fbc41897d62 + - 3c138ac7-8596-4e96-b4ae-87470baa3e3d status: code: 200 message: OK @@ -912,13 +983,13 @@ interactions: - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"e2af6b8b-59b0-40e3-ada0-668213ac1a41\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5b4db1f2-c1ff-467d-982e-7acea815daea\\\"\",\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\": @@ -928,18 +999,19 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:31 GMT + - Tue, 10 May 2022 01:34:36 GMT etag: - - W/"e2af6b8b-59b0-40e3-ada0-668213ac1a41" + - W/"5b4db1f2-c1ff-467d-982e-7acea815daea" expires: - '-1' pragma: @@ -956,7 +1028,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c5f53ade-5412-470f-a73c-936f0e3fdb74 + - 4a9bcb1d-f718-40d5-86c7-940eba40f659 status: code: 200 message: OK @@ -969,7 +1041,8 @@ interactions: 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/"}}}' + "aadAudience": "a21fce82-76af-45e6-8583-a08cb3b956f9", "aadIssuer": "https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/"}, + "configurationPolicyGroups": []}}' headers: Accept: - application/json @@ -980,20 +1053,20 @@ interactions: Connection: - keep-alive Content-Length: - - '1001' + - '997' Content-Type: - application/json ParameterSetName: - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"a6b79fc0-1fbf-4a8b-9202-36382f047e29\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"78eb3338-509c-4e49-8c13-f9d135da380b\\\"\",\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\": @@ -1003,25 +1076,25 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6fbc4f58-101d-4d53-b8bc-7422ca3180fe?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/adcbc1d6-7a36-45fc-8ce6-c29d627744db?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1406' + - '1407' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:31 GMT + - Tue, 10 May 2022 01:34:37 GMT expires: - '-1' pragma: @@ -1038,9 +1111,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 20658a20-ccf5-44cd-8592-c80f918f8b42 + - 1205b456-52f7-466d-bc5e-2b39c62bebd6 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1059,9 +1132,9 @@ interactions: - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6fbc4f58-101d-4d53-b8bc-7422ca3180fe?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/adcbc1d6-7a36-45fc-8ce6-c29d627744db?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1073,7 +1146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:42 GMT + - Tue, 10 May 2022 01:34:47 GMT expires: - '-1' pragma: @@ -1090,7 +1163,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4f20bba-d49e-4f07-95f7-e2ff475ffb3e + - dd3f0c98-027d-48a3-921b-0898abca6416 status: code: 200 message: OK @@ -1109,13 +1182,13 @@ interactions: - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"17292d5e-f0f4-4a97-ad2e-faf5ba691928\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f10c6162-a70e-42ef-9751-c3e55fe8defe\\\"\",\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\": @@ -1125,23 +1198,23 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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' + - '1408' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:43 GMT + - Tue, 10 May 2022 01:34:47 GMT etag: - - W/"17292d5e-f0f4-4a97-ad2e-faf5ba691928" + - W/"f10c6162-a70e-42ef-9751-c3e55fe8defe" expires: - '-1' pragma: @@ -1158,7 +1231,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed55df7b-0d5d-41fb-8e7a-d6e5418fc995 + - df87e195-5b4b-4afd-a52d-5f84d24e78c2 status: code: 200 message: OK @@ -1176,13 +1249,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"17292d5e-f0f4-4a97-ad2e-faf5ba691928\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f10c6162-a70e-42ef-9751-c3e55fe8defe\\\"\",\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\": @@ -1192,23 +1265,23 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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' + - '1408' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:44 GMT + - Tue, 10 May 2022 01:34:49 GMT etag: - - W/"17292d5e-f0f4-4a97-ad2e-faf5ba691928" + - W/"f10c6162-a70e-42ef-9751-c3e55fe8defe" expires: - '-1' pragma: @@ -1225,7 +1298,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - aec68e1a-bda4-42d4-8712-ae7fe91132a4 + - a14821e0-d940-4383-abe9-2181ca46a13e status: code: 200 message: OK @@ -1243,13 +1316,13 @@ interactions: ParameterSetName: - -n -g --index User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"17292d5e-f0f4-4a97-ad2e-faf5ba691928\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f10c6162-a70e-42ef-9751-c3e55fe8defe\\\"\",\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\": @@ -1259,23 +1332,23 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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' + - '1408' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:46 GMT + - Tue, 10 May 2022 01:34:50 GMT etag: - - W/"17292d5e-f0f4-4a97-ad2e-faf5ba691928" + - W/"f10c6162-a70e-42ef-9751-c3e55fe8defe" expires: - '-1' pragma: @@ -1292,7 +1365,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ebcc30c7-d074-4f83-9cdd-c6482c385586 + - ec593137-41ab-4431-9e8d-3e9082d89a39 status: code: 200 message: OK @@ -1303,7 +1376,8 @@ interactions: [], "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/"}}}' + "aadAudience": "a21fce82-76af-45e6-8583-a08cb3b956f9", "aadIssuer": "https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/"}, + "configurationPolicyGroups": []}}' headers: Accept: - application/json @@ -1314,19 +1388,19 @@ interactions: Connection: - keep-alive Content-Length: - - '787' + - '783' Content-Type: - application/json ParameterSetName: - -n -g --index User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"9551c2d4-5b20-4f30-bd4c-2ac752a9a00e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"79ea0fda-5802-48e0-b60b-5018b1d3c9a2\\\"\",\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\": @@ -1336,20 +1410,21 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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/westcentralus/operations/42fd088b-2f8f-4aa7-8830-08cab85503e0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b069c2a2-bbb3-48e6-8fed-fbc5ed8da326?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1097' + - '1098' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:47 GMT + - Tue, 10 May 2022 01:34:50 GMT expires: - '-1' pragma: @@ -1366,9 +1441,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 66613c4a-7dfa-408b-8971-b049b0d62257 + - d9b207d2-ef30-4b9e-9b6e-c2e883264524 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -1386,9 +1461,9 @@ interactions: ParameterSetName: - -n -g --index User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/42fd088b-2f8f-4aa7-8830-08cab85503e0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b069c2a2-bbb3-48e6-8fed-fbc5ed8da326?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1400,7 +1475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:58 GMT + - Tue, 10 May 2022 01:35:01 GMT expires: - '-1' pragma: @@ -1417,7 +1492,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 35610497-a774-4abb-989b-ac8881224137 + - 727a5c09-dead-45ee-8d59-59cf7544ac3b status: code: 200 message: OK @@ -1435,13 +1510,13 @@ interactions: ParameterSetName: - -n -g --index User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"4961619e-33fa-407a-b04f-dac946503155\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f43ba635-6991-4b0d-b8e5-ece7254af16b\\\"\",\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\": @@ -1451,18 +1526,19 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:58 GMT + - Tue, 10 May 2022 01:35:02 GMT etag: - - W/"4961619e-33fa-407a-b04f-dac946503155" + - W/"f43ba635-6991-4b0d-b8e5-ece7254af16b" expires: - '-1' pragma: @@ -1479,7 +1555,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8bbbf0bb-c32e-4993-8c49-46f411b18145 + - e14bee4a-a4f9-4818-b1c2-c1087f9e8941 status: code: 200 message: OK @@ -1498,13 +1574,13 @@ interactions: - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"4961619e-33fa-407a-b04f-dac946503155\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f43ba635-6991-4b0d-b8e5-ece7254af16b\\\"\",\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\": @@ -1514,18 +1590,19 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:00 GMT + - Tue, 10 May 2022 01:35:03 GMT etag: - - W/"4961619e-33fa-407a-b04f-dac946503155" + - W/"f43ba635-6991-4b0d-b8e5-ece7254af16b" expires: - '-1' pragma: @@ -1542,7 +1619,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76198971-478a-4b92-a684-3f331acf9cba + - 7d4f9a8f-d0a9-4c1e-8bcc-b32f0570c5a1 status: code: 200 message: OK @@ -1555,7 +1632,8 @@ interactions: 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/"}}}' + "aadAudience": "a21fce82-76af-45e6-8583-a08cb3b956f9", "aadIssuer": "https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/"}, + "configurationPolicyGroups": []}}' headers: Accept: - application/json @@ -1566,20 +1644,20 @@ interactions: Connection: - keep-alive Content-Length: - - '1001' + - '997' Content-Type: - application/json ParameterSetName: - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"fa0475e1-afea-4eaa-a775-691f8a501843\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ba95224c-b439-4644-8033-30bba46ef5c1\\\"\",\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\": @@ -1589,25 +1667,25 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/34c6c3ca-ff58-406e-b1e3-2cb6bc02a340?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb8562b1-b083-47f7-b3ec-9467435886f7?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1406' + - '1407' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:00 GMT + - Tue, 10 May 2022 01:35:03 GMT expires: - '-1' pragma: @@ -1624,9 +1702,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 61150f40-0d5d-43e5-b0bf-41ac0a04be0f + - 99c29b2b-615e-4c31-8cd1-d9a2f558f823 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1645,9 +1723,9 @@ interactions: - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/34c6c3ca-ff58-406e-b1e3-2cb6bc02a340?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb8562b1-b083-47f7-b3ec-9467435886f7?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1659,7 +1737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:10 GMT + - Tue, 10 May 2022 01:35:14 GMT expires: - '-1' pragma: @@ -1676,7 +1754,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 681fbd93-f424-4c99-b239-6cadab371a61 + - c326a924-11d3-4bf9-9b93-0707099fb235 status: code: 200 message: OK @@ -1695,13 +1773,13 @@ interactions: - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"4eeae58a-2b5a-485b-a398-836f8e8cd5b4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"387f3033-6544-4699-8098-ec014c1e3586\\\"\",\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\": @@ -1711,23 +1789,23 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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' + - '1408' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:11 GMT + - Tue, 10 May 2022 01:35:14 GMT etag: - - W/"4eeae58a-2b5a-485b-a398-836f8e8cd5b4" + - W/"387f3033-6544-4699-8098-ec014c1e3586" expires: - '-1' pragma: @@ -1744,7 +1822,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cddcb455-3b26-4815-9826-b78411ea01ec + - 9a26cbfa-bcd3-450a-8c5e-0e0768035f56 status: code: 200 message: OK @@ -1762,13 +1840,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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/\\\"4eeae58a-2b5a-485b-a398-836f8e8cd5b4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"387f3033-6544-4699-8098-ec014c1e3586\\\"\",\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\": @@ -1778,23 +1856,23 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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' + - '1408' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:13 GMT + - Tue, 10 May 2022 01:35:15 GMT etag: - - W/"4eeae58a-2b5a-485b-a398-836f8e8cd5b4" + - W/"387f3033-6544-4699-8098-ec014c1e3586" expires: - '-1' pragma: @@ -1811,7 +1889,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 96f593d2-1cae-40d5-9fb9-1b603f07802b + - 3c313927-a8d8-4b16-b12c-ef135e54b7bd status: code: 200 message: OK @@ -1831,9 +1909,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-01 response: body: string: '' @@ -1841,17 +1919,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4e787bbb-8702-491d-8ceb-6d293fd34744?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/37dc2132-4297-46c5-83f7-e682fe7c9427?api-version=2021-08-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 18 Sep 2021 06:25:17 GMT + - Tue, 10 May 2022 01:35:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/4e787bbb-8702-491d-8ceb-6d293fd34744?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/37dc2132-4297-46c5-83f7-e682fe7c9427?api-version=2021-08-01 pragma: - no-cache server: @@ -1862,7 +1940,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4b9c8c35-b613-40a0-a123-c5867758d9d1 + - bd4dc010-d14e-48da-95f4-887d271a300c x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1882,9 +1960,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4e787bbb-8702-491d-8ceb-6d293fd34744?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/37dc2132-4297-46c5-83f7-e682fe7c9427?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1896,7 +1974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:27 GMT + - Tue, 10 May 2022 01:35:28 GMT expires: - '-1' pragma: @@ -1913,7 +1991,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6196ac57-3ed4-45ed-bdcb-5e75e7a3d290 + - 368b4b1d-ef03-4fae-8869-4ab124042825 status: code: 200 message: OK @@ -1931,36 +2009,33 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) 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-05-01 + 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=2021-08-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}" + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnServerConfigurations/clitestserverconfig'' + under resource group ''cli_test_azure_vpn_server_config000001'' was not found. + For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '321' + - '271' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:29 GMT + - Tue, 10 May 2022 01:35:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - d8bf4e2f-2edb-43ed-addb-da7c38c3ea95 + x-ms-failure-cause: + - gateway status: code: 404 message: Not Found diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vpn_server_config_multi_auth.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vpn_server_config_multi_auth.yaml index 788a1c0ec7e..3fa9cda00c8 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vpn_server_config_multi_auth.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vpn_server_config_multi_auth.yaml @@ -12,26 +12,23 @@ interactions: - keep-alive ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs --radius-servers - --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types + --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types --protocols User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_vpn_server_config_multi_auth000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001","name":"test_azure_vpn_server_config_multi_auth000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T09:49:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001","name":"test_azure_vpn_server_config_multi_auth000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:07:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '375' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:31 GMT + - Tue, 10 May 2022 04:07:46 GMT expires: - '-1' pragma: @@ -46,9 +43,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westcentralus", "properties": {"vpnAuthenticationTypes": - ["Radius", "AAD", "Certificate"], "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="}], + body: '{"location": "westcentralus", "properties": {"vpnProtocols": ["OpenVPN"], + "vpnAuthenticationTypes": ["Radius", "AAD", "Certificate"], "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"}], "radiusServers": [{"radiusServerAddress": "test1", "radiusServerScore": 10, "radiusServerSecret": "clitest"}, {"radiusServerAddress": @@ -65,24 +62,24 @@ interactions: Connection: - keep-alive Content-Length: - - '1956' + - '1985' Content-Type: - application/json ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs --radius-servers - --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types + --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types --protocols User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n - \ \"etag\": \"W/\\\"2b10de85-c3e8-496b-b7ce-eed073f7c390\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"11e26f6f-bd6e-44a9-93c1-722ab76e6a0f\\\"\",\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 \"AAD\",\r\n \"Certificate\"\r\n ],\r\n + [\r\n \"OpenVPN\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n + \ \"Radius\",\r\n \"AAD\",\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 @@ -96,20 +93,21 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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/westcentralus/operations/1b1082a4-68b0-4b09-a956-7d600c29b95c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/69a71bf3-9900-4319-97f7-7d0532277df3?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2819' + - '2811' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:40 GMT + - Tue, 10 May 2022 04:07:56 GMT expires: - '-1' pragma: @@ -122,9 +120,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e19432ed-f3a8-4c48-a3b5-4596f4098dc4 + - ced9dd7e-874e-4419-ba76-4e88854a681e x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -141,11 +139,11 @@ interactions: - keep-alive ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs --radius-servers - --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types + --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types --protocols User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/1b1082a4-68b0-4b09-a956-7d600c29b95c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/69a71bf3-9900-4319-97f7-7d0532277df3?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -157,7 +155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:51 GMT + - Tue, 10 May 2022 04:08:06 GMT expires: - '-1' pragma: @@ -174,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9a5910c8-adef-403c-be5c-5ff4799ae686 + - 8ef77119-bf92-440d-b05b-754bda7064c2 status: code: 200 message: OK @@ -191,19 +189,19 @@ interactions: - keep-alive ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs --radius-servers - --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types + --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types --protocols User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n - \ \"etag\": \"W/\\\"a1e41a9e-fb2e-434d-96ba-4bbc0dd9b0a1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"49f1a1d3-fcfc-4733-bf4a-15bb89ee779e\\\"\",\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 \"AAD\",\r\n \"Certificate\"\r\n ],\r\n + [\r\n \"OpenVPN\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n + \ \"Radius\",\r\n \"AAD\",\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 @@ -217,18 +215,19 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2820' + - '2812' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:51 GMT + - Tue, 10 May 2022 04:08:06 GMT etag: - - W/"a1e41a9e-fb2e-434d-96ba-4bbc0dd9b0a1" + - W/"49f1a1d3-fcfc-4733-bf4a-15bb89ee779e" expires: - '-1' pragma: @@ -245,7 +244,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5e287582-f6c1-416b-bec9-a8c549be859a + - cf846f5a-1f81-47f5-bd72-4efda5d7f071 status: code: 200 message: OK @@ -263,32 +262,27 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_vpn_server_config_multi_auth000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001","name":"test_azure_vpn_server_config_multi_auth000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T09:49:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001","name":"test_azure_vpn_server_config_multi_auth000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:07:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '375' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:53 GMT + - Tue, 10 May 2022 04:08:23 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -316,13 +310,13 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1\",\r\n - \ \"etag\": \"W/\\\"05ff7c8c-97b3-476a-9bb9-cd37f72e11c6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"89552be0-bda7-4cb5-8d2a-1f17c541c902\\\"\",\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\": @@ -333,21 +327,21 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\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/westcentralus/operations/220a55ab-c4bd-4676-af82-3c4b915ed2da?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3028e185-aa8f-4be9-8f49-b4dd53d0d645?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2269' + - '2277' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:58 GMT + - Tue, 10 May 2022 04:08:33 GMT expires: - '-1' pragma: @@ -360,9 +354,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - af46be1b-f6ad-4c08-a7c1-95b7870ce066 + - 200549ef-b61f-45c5-acdc-290b5c4bd56a x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -380,9 +374,9 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/220a55ab-c4bd-4676-af82-3c4b915ed2da?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3028e185-aa8f-4be9-8f49-b4dd53d0d645?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -394,7 +388,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:08 GMT + - Tue, 10 May 2022 04:08:44 GMT expires: - '-1' pragma: @@ -411,7 +405,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d9a99c8a-2c59-492f-a63d-6782f7c628ca + - 50267958-ca2f-4fcb-a06f-ce02f3d59bb7 status: code: 200 message: OK @@ -429,13 +423,13 @@ interactions: ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1\",\r\n - \ \"etag\": \"W/\\\"63d61ca3-30b2-4d03-9027-5c5b840cfd6d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b3734314-2937-46ad-982a-7a831f9a34b2\\\"\",\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\": @@ -446,19 +440,19 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2270' + - '2278' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:10 GMT + - Tue, 10 May 2022 04:08:44 GMT etag: - - W/"63d61ca3-30b2-4d03-9027-5c5b840cfd6d" + - W/"b3734314-2937-46ad-982a-7a831f9a34b2" expires: - '-1' pragma: @@ -475,7 +469,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 508173ee-0777-4e58-ba57-ee7239ecbebf + - 6e8a5193-46ab-419d-b691-1e20b8b31c41 status: code: 200 message: OK @@ -492,26 +486,23 @@ interactions: - keep-alive ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs --radius-servers - --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types + --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types --protocols User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_vpn_server_config_multi_auth000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001","name":"test_azure_vpn_server_config_multi_auth000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T09:49:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001","name":"test_azure_vpn_server_config_multi_auth000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T04:07:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '375' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:11 GMT + - Tue, 10 May 2022 04:08:45 GMT expires: - '-1' pragma: @@ -526,9 +517,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westcentralus", "properties": {"vpnAuthenticationTypes": - ["Radius", "AAD", "Certificate"], "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="}], + body: '{"location": "westcentralus", "properties": {"vpnProtocols": ["OpenVPN"], + "vpnAuthenticationTypes": ["Radius", "AAD", "Certificate"], "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"}], "radiusServers": [{"radiusServerAddress": "test1", "radiusServerScore": 10, "radiusServerSecret": "clitest"}, {"radiusServerAddress": @@ -545,24 +536,24 @@ interactions: Connection: - keep-alive Content-Length: - - '1956' + - '1985' Content-Type: - application/json ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs --radius-servers - --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types + --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types --protocols User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1\",\r\n - \ \"etag\": \"W/\\\"922893ab-a198-4170-8dca-6a87a097b6d9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f620d098-fa7c-4cc8-8a62-285b2c38ec3a\\\"\",\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 \"AAD\",\r\n \"Certificate\"\r\n ],\r\n + [\r\n \"OpenVPN\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n + \ \"Radius\",\r\n \"AAD\",\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 @@ -576,18 +567,21 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\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/westcentralus/operations/2781a7f5-095c-4827-bbee-97f39c66bc52?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b17e2b9b-f088-44cf-b79b-6dbb4a50b86f?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2821' + - '2813' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:14 GMT + - Tue, 10 May 2022 04:08:46 GMT expires: - '-1' pragma: @@ -604,9 +598,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 692c2368-319e-490c-b1d8-cf0b3ca77bac + - bf1e7afd-6c7d-4a46-9d07-a48761e90e19 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -623,11 +617,11 @@ interactions: - keep-alive ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs --radius-servers - --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types + --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types --protocols User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2781a7f5-095c-4827-bbee-97f39c66bc52?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b17e2b9b-f088-44cf-b79b-6dbb4a50b86f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -639,7 +633,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:25 GMT + - Tue, 10 May 2022 04:08:57 GMT expires: - '-1' pragma: @@ -656,7 +650,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0afb925c-710a-4938-9e7e-021f37cb4670 + - 5fc6dafd-2b86-480d-b242-d75db250edbc status: code: 200 message: OK @@ -673,19 +667,19 @@ interactions: - keep-alive ParameterSetName: - -n -g --vpn-client-root-certs --vpn-client-revoked-certs --radius-servers - --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types + --radius-servers --aad-audience --aad-issuer --aad-tenant --auth-types --protocols User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestserverconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_vpn_server_config_multi_auth000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig1\",\r\n - \ \"etag\": \"W/\\\"98bbd58e-8d06-44f7-896b-f38c42582eee\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"aff97f18-feb4-49bc-954f-aa10813f0463\\\"\",\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 \"AAD\",\r\n \"Certificate\"\r\n ],\r\n + [\r\n \"OpenVPN\"\r\n ],\r\n \"vpnAuthenticationTypes\": [\r\n + \ \"Radius\",\r\n \"AAD\",\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 @@ -699,18 +693,19 @@ interactions: [],\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}" + \ \"configurationPolicyGroups\": [],\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2822' + - '2814' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:25 GMT + - Tue, 10 May 2022 04:08:57 GMT etag: - - W/"98bbd58e-8d06-44f7-896b-f38c42582eee" + - W/"aff97f18-feb4-49bc-954f-aa10813f0463" expires: - '-1' pragma: @@ -727,7 +722,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 97f7ec73-2e5e-4679-8eef-59d74756572c + - 676ca62d-ab36-4326-a45d-dde118e2b94d status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_p2s_gateway_routing_configuration.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_p2s_gateway_routing_configuration.yaml index 3c4b473dc3a..9e68b621088 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_p2s_gateway_routing_configuration.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_p2s_gateway_routing_configuration.yaml @@ -30,7 +30,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2svpnGateways/p2svpngateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2svpnGateways/p2svpngateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"p2svpngateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2sVpnGateways/p2svpngateway\",\r\n @@ -7758,7 +7758,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2svpnGateways/p2svpngateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2svpnGateways/p2svpngateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"p2svpngateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2sVpnGateways/p2svpngateway\",\r\n @@ -7837,7 +7837,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2svpnGateways/p2svpngateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2svpnGateways/p2svpngateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"p2svpngateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2sVpnGateways/p2svpngateway\",\r\n @@ -7916,7 +7916,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2svpnGateways/p2svpngateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2svpnGateways/p2svpngateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"p2svpngateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/p2sVpnGateways/p2svpngateway\",\r\n diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_route_table.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_route_table.yaml index 12ca7335ef1..cba58415351 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_route_table.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_route_table.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_route_table000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001","name":"cli_test_azure_vwan_route_table000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-08-02T08:02:55Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001","name":"cli_test_azure_vwan_route_table000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T07:06:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '352' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:03:01 GMT + - Tue, 10 May 2022 07:06:19 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n - \ \"etag\": \"W/\\\"f0b0f540-25ee-4ebe-9666-5cf729f0abba\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a60d6943-acca-43d6-a0a9-fe5b7a222d25\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b0206ced-d2f5-491b-ab68-29b079da6644?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/14781bd9-041e-41e0-bf99-ac636e8abb7c?api-version=2021-08-01 cache-control: - no-cache content-length: - - '567' + - '529' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:03:11 GMT + - Tue, 10 May 2022 07:06:24 GMT expires: - '-1' pragma: @@ -95,7 +95,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 07a8105a-c379-4f68-bf4e-6c00d7feefa9 + - f6475413-05a7-448f-ad34-5b1062e7b21b x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b0206ced-d2f5-491b-ab68-29b079da6644?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/14781bd9-041e-41e0-bf99-ac636e8abb7c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:03:21 GMT + - Tue, 10 May 2022 07:06:34 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c107537e-4bbd-4016-b0d7-a5379c632696 + - 05124ab0-70f2-4627-9b5c-926fd199a482 status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n - \ \"etag\": \"W/\\\"3efd6b90-fea3-4fd1-be5e-bdb5a82c4298\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e4389ae4-f846-4064-9d7b-239a713e9136\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '568' + - '530' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:03:22 GMT + - Tue, 10 May 2022 07:06:35 GMT etag: - - W/"3efd6b90-fea3-4fd1-be5e-bdb5a82c4298" + - W/"e4389ae4-f846-4064-9d7b-239a713e9136" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d7daab87-7d38-45af-92e2-b3354f56eea9 + - d5ae972f-4a9e-4634-a000-2ce6ea3e4c77 status: code: 200 message: OK @@ -219,38 +219,41 @@ interactions: Connection: - keep-alive Content-Length: - - '287' + - '249' Content-Type: - application/json ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n - \ \"etag\": \"W/\\\"7059d559-f740-495f-8ae2-30dbfb64d39b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b3f60db6-3329-465e-9598-25582380cdee\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n - \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"None\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a551c34-da96-4412-9f29-173069a663b6?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0efe5130-9c9d-415f-9392-b920fb8cf07e?api-version=2021-08-01 cache-control: - no-cache content-length: - - '872' + - '1046' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:03:31 GMT + - Tue, 10 May 2022 07:06:41 GMT expires: - '-1' pragma: @@ -263,7 +266,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3966dd00-4678-4a55-aebc-a42d81357dd1 + - 2d253a6a-854f-40ff-9e5d-6312a081be06 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -283,9 +286,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a551c34-da96-4412-9f29-173069a663b6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0efe5130-9c9d-415f-9392-b920fb8cf07e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -297,7 +300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:03:41 GMT + - Tue, 10 May 2022 07:06:51 GMT expires: - '-1' pragma: @@ -314,7 +317,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8a170978-1b7a-4bf4-b2c5-42345021d9b3 + - 634cdc6d-2c74-4fcc-9356-2ab1062c39f7 status: code: 200 message: OK @@ -332,9 +335,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a551c34-da96-4412-9f29-173069a663b6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0efe5130-9c9d-415f-9392-b920fb8cf07e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -346,7 +349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:03:51 GMT + - Tue, 10 May 2022 07:07:01 GMT expires: - '-1' pragma: @@ -363,7 +366,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e647d6be-d6b4-47c9-bc6d-350e9aff499f + - 392e4137-348a-4ae6-9c30-525b29445366 status: code: 200 message: OK @@ -381,9 +384,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a551c34-da96-4412-9f29-173069a663b6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0efe5130-9c9d-415f-9392-b920fb8cf07e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -395,7 +398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:04:12 GMT + - Tue, 10 May 2022 07:07:22 GMT expires: - '-1' pragma: @@ -412,7 +415,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef0e8be7-444e-4022-a3f9-cb5e3a2c1083 + - 8858ac3e-7dd1-4c74-a5cb-561ee6444d43 status: code: 200 message: OK @@ -430,9 +433,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a551c34-da96-4412-9f29-173069a663b6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0efe5130-9c9d-415f-9392-b920fb8cf07e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -444,7 +447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:04:33 GMT + - Tue, 10 May 2022 07:07:42 GMT expires: - '-1' pragma: @@ -461,7 +464,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0bff1d51-a2ef-4d73-806e-30aa8ab576d5 + - ca801935-4744-4f1a-a21e-debfaba76dbb status: code: 200 message: OK @@ -479,9 +482,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a551c34-da96-4412-9f29-173069a663b6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0efe5130-9c9d-415f-9392-b920fb8cf07e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -493,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:05:13 GMT + - Tue, 10 May 2022 07:08:23 GMT expires: - '-1' pragma: @@ -510,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2cfaf8c-52f5-49d7-9641-49be40de9340 + - 866c43ef-723f-41e9-a5a4-b0279ced5be5 status: code: 200 message: OK @@ -528,9 +531,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a551c34-da96-4412-9f29-173069a663b6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0efe5130-9c9d-415f-9392-b920fb8cf07e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -542,7 +545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:05:53 GMT + - Tue, 10 May 2022 07:09:03 GMT expires: - '-1' pragma: @@ -559,7 +562,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c03cdc98-50ae-4579-a343-9a6f8b6f72f7 + - 76e36ee5-2ee0-4fb8-9002-040ba15c2dea status: code: 200 message: OK @@ -577,58 +580,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a551c34-da96-4412-9f29-173069a663b6?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 02 Aug 2021 08:07: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: - - 3ba9c32c-b17f-4f4f-bdfb-2fcb4c84d736 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l - User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a551c34-da96-4412-9f29-173069a663b6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0efe5130-9c9d-415f-9392-b920fb8cf07e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -640,7 +594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:09:55 GMT + - Tue, 10 May 2022 07:10:24 GMT expires: - '-1' pragma: @@ -657,7 +611,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0364af93-b8c6-4c8d-b443-8be620b29cec + - 5c0d427a-3f9b-4aab-bf5a-0e09c4b25a0b status: code: 200 message: OK @@ -675,28 +629,31 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n - \ \"etag\": \"W/\\\"b725c51e-cbb4-486e-8a70-470eabdafe77\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7ede9eb9-0010-4cbf-b1b2-c6bf7393927a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n - \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"Provisioning\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '881' + - '1055' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:09:56 GMT + - Tue, 10 May 2022 07:10:25 GMT expires: - '-1' pragma: @@ -713,7 +670,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6708142a-620b-4b89-840d-23be28b72f07 + - 36a15d2e-2a1a-4cfb-b268-9fd09651be3e status: code: 200 message: OK @@ -731,9 +688,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/mycligateway'' @@ -743,11 +700,11 @@ interactions: cache-control: - no-cache content-length: - - '289' + - '251' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:09:57 GMT + - Tue, 10 May 2022 07:10:25 GMT expires: - '-1' pragma: @@ -774,19 +731,19 @@ interactions: Connection: - keep-alive Content-Length: - - '279' + - '241' Content-Type: - application/json ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"b545be06-fb28-4639-b784-edef3f56d8b8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"071339c0-b14d-4fb5-ac56-c7d5a43a20ba\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n @@ -798,15 +755,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 cache-control: - no-cache content-length: - - '981' + - '905' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:10:04 GMT + - Tue, 10 May 2022 07:10:31 GMT expires: - '-1' pragma: @@ -819,9 +776,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcc56f4f-d168-4ec7-8793-1a528f379942 + - 225e963d-a468-4fb5-a004-732af33fd236 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -839,9 +796,58 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-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: + - Tue, 10 May 2022 07:10: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: + - dfc7f333-6fd8-415f-81a2-69fe3b1fb57f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vhub -l + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -853,7 +859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:10:15 GMT + - Tue, 10 May 2022 07:10:52 GMT expires: - '-1' pragma: @@ -870,7 +876,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4512a135-7b8d-4b0a-8e38-203c47864851 + - bb0c7be0-129c-4035-94e3-47ca4abbe3dc status: code: 200 message: OK @@ -888,9 +894,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -902,7 +908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:10:25 GMT + - Tue, 10 May 2022 07:11:13 GMT expires: - '-1' pragma: @@ -919,7 +925,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fd21a40b-0518-40b1-bde5-0c89ad9d02da + - 9290c99c-f827-4106-8735-4e45ca28c023 status: code: 200 message: OK @@ -937,9 +943,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -951,7 +957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:10:45 GMT + - Tue, 10 May 2022 07:11:33 GMT expires: - '-1' pragma: @@ -968,7 +974,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 85bc0d45-5771-4771-bb84-8d9b358be520 + - 27d250fe-1eec-4838-8525-a7339480f9f5 status: code: 200 message: OK @@ -986,9 +992,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1000,7 +1006,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:11:06 GMT + - Tue, 10 May 2022 07:12:13 GMT expires: - '-1' pragma: @@ -1017,7 +1023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b46f18d-b660-494f-9c57-48abeaed7f89 + - bfe60d66-8a49-4b62-a7c5-dca9d5138370 status: code: 200 message: OK @@ -1035,9 +1041,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1049,7 +1055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:11:46 GMT + - Tue, 10 May 2022 07:12:54 GMT expires: - '-1' pragma: @@ -1066,7 +1072,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cd39764d-5bcc-48df-97c2-d17537bbd1a3 + - b189f2e8-2b55-4ec1-be07-d685cb398c3b status: code: 200 message: OK @@ -1084,9 +1090,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1098,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:12:27 GMT + - Tue, 10 May 2022 07:14:14 GMT expires: - '-1' pragma: @@ -1115,7 +1121,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 02cf8b0c-ec30-4e4f-8a86-e9b9349a5d05 + - d94e405b-e175-4dd6-a44e-5654c12e07ae status: code: 200 message: OK @@ -1133,9 +1139,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1147,7 +1153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:13:47 GMT + - Tue, 10 May 2022 07:16:55 GMT expires: - '-1' pragma: @@ -1164,7 +1170,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3da98ffc-0bcb-479e-9d9b-5e3b15c0119b + - db2f9471-151c-4d96-8717-4d3e459c06ef status: code: 200 message: OK @@ -1182,9 +1188,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1196,7 +1202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:16:29 GMT + - Tue, 10 May 2022 07:18:35 GMT expires: - '-1' pragma: @@ -1213,7 +1219,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 77cec549-c971-4efc-9fea-4bcdda01444e + - 91ed9b7d-5088-4389-8021-7032684962a2 status: code: 200 message: OK @@ -1231,9 +1237,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1245,7 +1251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:18:09 GMT + - Tue, 10 May 2022 07:20:16 GMT expires: - '-1' pragma: @@ -1262,7 +1268,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9bbcb0dd-99a8-4b87-8f50-5ec00b9604c2 + - 9aeb7005-e2d9-43f6-988d-ce91c9073f76 status: code: 200 message: OK @@ -1280,9 +1286,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1294,7 +1300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:19:50 GMT + - Tue, 10 May 2022 07:21:56 GMT expires: - '-1' pragma: @@ -1311,7 +1317,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 05ce1613-92c2-4164-8d93-6038ae564697 + - 7c6d8d18-2491-4bdc-8661-f565a7479932 status: code: 200 message: OK @@ -1329,9 +1335,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1343,7 +1349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:21:30 GMT + - Tue, 10 May 2022 07:23:37 GMT expires: - '-1' pragma: @@ -1360,7 +1366,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57caec2a-6f0d-4314-88cd-08cdad2045d0 + - 2bb4af85-26fc-4607-aea4-a4fe16b29943 status: code: 200 message: OK @@ -1378,9 +1384,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1392,7 +1398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:23:11 GMT + - Tue, 10 May 2022 07:25:16 GMT expires: - '-1' pragma: @@ -1409,7 +1415,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9ffb092a-9e0f-4e09-b39c-ffcf923ba690 + - fd5abe06-f8e7-412b-b57f-85b4ca475093 status: code: 200 message: OK @@ -1427,9 +1433,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1441,7 +1447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:24:51 GMT + - Tue, 10 May 2022 07:26:57 GMT expires: - '-1' pragma: @@ -1458,7 +1464,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ab492a6d-df81-415e-934e-122fcb15ae81 + - f51bdc81-e2d3-40d6-89d2-8ac7d59a0c29 status: code: 200 message: OK @@ -1476,9 +1482,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1490,7 +1496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:26:32 GMT + - Tue, 10 May 2022 07:28:38 GMT expires: - '-1' pragma: @@ -1507,7 +1513,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cbcb9ab7-010e-4ebe-9f14-10f4c79d4843 + - 063b44bc-a2dd-4ad8-8a82-17699a32bacb status: code: 200 message: OK @@ -1525,9 +1531,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1539,7 +1545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:28:12 GMT + - Tue, 10 May 2022 07:30:19 GMT expires: - '-1' pragma: @@ -1556,7 +1562,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b680d4ab-196a-407a-b4d1-9a2f11b53e80 + - cc6f6f2b-4454-4867-af8a-a6924a03e858 status: code: 200 message: OK @@ -1574,9 +1580,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1588,7 +1594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:29:53 GMT + - Tue, 10 May 2022 07:31:59 GMT expires: - '-1' pragma: @@ -1605,7 +1611,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c46ab1e5-f903-4f08-8397-d306217fa03a + - 598a7f35-2d62-4c07-8443-7eaf00674273 status: code: 200 message: OK @@ -1623,9 +1629,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1637,7 +1643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:31:33 GMT + - Tue, 10 May 2022 07:33:40 GMT expires: - '-1' pragma: @@ -1654,7 +1660,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 80854a7f-e7a2-48c0-ad9c-ccc24f2d0027 + - cb1f4b9b-056d-4a71-b655-e7c28a3f511e status: code: 200 message: OK @@ -1672,9 +1678,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1686,7 +1692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:33:14 GMT + - Tue, 10 May 2022 07:35:20 GMT expires: - '-1' pragma: @@ -1703,7 +1709,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 79639438-ecc7-4e2c-99f6-96592d3cf8d7 + - a2f63412-38e4-48c9-957e-59243c0b018a status: code: 200 message: OK @@ -1721,9 +1727,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1735,7 +1741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:34:54 GMT + - Tue, 10 May 2022 07:37:01 GMT expires: - '-1' pragma: @@ -1752,7 +1758,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f414faee-5aee-43af-8a4c-c41d84f6b560 + - 8dfe9e87-fda4-49b3-8401-3745bf610c47 status: code: 200 message: OK @@ -1770,9 +1776,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1784,7 +1790,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:36:34 GMT + - Tue, 10 May 2022 07:38:40 GMT expires: - '-1' pragma: @@ -1801,7 +1807,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 811fb2b7-5654-44f9-9133-0e4b2ffa1b77 + - 2f218c7b-8e1a-436d-b5c0-cd19e022b3d8 status: code: 200 message: OK @@ -1819,9 +1825,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1833,7 +1839,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:38:14 GMT + - Tue, 10 May 2022 07:40:22 GMT expires: - '-1' pragma: @@ -1850,7 +1856,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7db67b6e-3d12-4c87-9902-d8d123bf97a3 + - 2188add9-fa45-4577-bd0c-477e842ed339 status: code: 200 message: OK @@ -1868,9 +1874,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1882,7 +1888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:39:54 GMT + - Tue, 10 May 2022 07:42:02 GMT expires: - '-1' pragma: @@ -1899,7 +1905,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d93ec04a-5b94-4c77-8305-82bb876c56e0 + - 921b8bb5-7ad4-49d4-8ea9-3f7dbd491488 status: code: 200 message: OK @@ -1917,9 +1923,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fa11c653-fd94-4511-9250-f92dbadf123c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5be45ef6-3649-43fc-bf39-12ff34e90419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1931,7 +1937,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:41:35 GMT + - Tue, 10 May 2022 07:43:43 GMT expires: - '-1' pragma: @@ -1948,7 +1954,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c49cd2f-6567-43eb-9447-7c3cc1f7a120 + - 58636c1e-4b3b-4f2d-8fed-528e213df182 status: code: 200 message: OK @@ -1966,41 +1972,41 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"7a417bf7-8c45-4f5e-892b-0b7170e96d78\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"68384564-fdd0-42ad-bf49-4ec04a4d8f86\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"52.149.206.233\",\r\n \"10.0.0.4\"\r\n ]\r\n + [\r\n \"20.121.106.20\",\r\n \"10.0.0.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"52.149.206.146\",\r\n \"10.0.0.5\"\r\n ]\r\n + [\r\n \"20.121.105.246\",\r\n \"10.0.0.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"52.149.206.233\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.121.106.20\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"52.149.206.146\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.121.105.246\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1866' + - '1788' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:41:35 GMT + - Tue, 10 May 2022 07:43:43 GMT expires: - '-1' pragma: @@ -2017,7 +2023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - db8ec543-5dad-4d0e-8319-de6c2e7ccd82 + - d1e92411-4573-4cb9-acfe-e84743819227 status: code: 200 message: OK @@ -2042,13 +2048,13 @@ interactions: - -n -g --vhub-name --connections --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"943a828c-ab38-4756-a1a6-b08254df9456\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"d63177f2-4f14-4d5b-a94c-b36bf7148f4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -2057,15 +2063,15 @@ interactions: \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routeTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2951a46a-c037-4f82-9394-58e30400af42?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/538bd37d-6ac1-473d-86ff-fd24e05497d9?api-version=2021-08-01 cache-control: - no-cache content-length: - - '763' + - '725' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:41:38 GMT + - Tue, 10 May 2022 07:43:45 GMT expires: - '-1' pragma: @@ -2078,7 +2084,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b8d03bc3-54dd-48a6-a4bc-1bbb3c3d51ab + - e33796b1-3759-4796-8f5d-50b1b81ca165 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2099,9 +2105,9 @@ interactions: - -n -g --vhub-name --connections --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2951a46a-c037-4f82-9394-58e30400af42?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/538bd37d-6ac1-473d-86ff-fd24e05497d9?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2113,7 +2119,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:41:48 GMT + - Tue, 10 May 2022 07:43:56 GMT expires: - '-1' pragma: @@ -2130,7 +2136,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1f8807f4-4dd2-4419-b89e-b88bca07fdf4 + - 6c8d63a6-1fbb-4f08-b5e8-bfa85f42cf3a status: code: 200 message: OK @@ -2149,9 +2155,9 @@ interactions: - -n -g --vhub-name --connections --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2951a46a-c037-4f82-9394-58e30400af42?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/538bd37d-6ac1-473d-86ff-fd24e05497d9?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2163,7 +2169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:41:58 GMT + - Tue, 10 May 2022 07:44:17 GMT expires: - '-1' pragma: @@ -2180,7 +2186,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b8299251-cd3e-40fa-962c-9d1105f070da + - dbe44018-08d9-4f03-a140-3d8e585cd45e status: code: 200 message: OK @@ -2199,59 +2205,9 @@ interactions: - -n -g --vhub-name --connections --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2951a46a-c037-4f82-9394-58e30400af42?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 02 Aug 2021 08:42: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: - - 15c56cf0-361f-4c45-bfb7-a6f03e76e678 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub route-table create - Connection: - - keep-alive - ParameterSetName: - - -n -g --vhub-name --connections --destination-type --destinations --next-hop-type - --next-hops - User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2951a46a-c037-4f82-9394-58e30400af42?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/538bd37d-6ac1-473d-86ff-fd24e05497d9?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2263,7 +2219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:00 GMT + - Tue, 10 May 2022 07:44:57 GMT expires: - '-1' pragma: @@ -2280,7 +2236,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 14914036-db1f-4bfc-a306-0230ca99a5b3 + - b6d697de-2dc1-422d-b5f2-c86daf2b3d4e status: code: 200 message: OK @@ -2299,13 +2255,13 @@ interactions: - -n -g --vhub-name --connections --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"54d81eb7-58a6-42e7-af7b-c5eb1f3c029a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"e2c22063-bc37-4601-994e-2f0ad931998e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -2316,11 +2272,11 @@ interactions: cache-control: - no-cache content-length: - - '764' + - '726' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:00 GMT + - Tue, 10 May 2022 07:44:57 GMT expires: - '-1' pragma: @@ -2337,7 +2293,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - faf1851e-afcf-4843-8e30-9ef9f282052c + - ca3ca8f5-f6d2-4722-8e6c-e6aadcabca4f status: code: 200 message: OK @@ -2355,9 +2311,9 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -2367,11 +2323,11 @@ interactions: cache-control: - no-cache content-length: - - '333' + - '295' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:02 GMT + - Tue, 10 May 2022 07:44:59 GMT expires: - '-1' pragma: @@ -2384,7 +2340,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 21fecebe-84ba-410d-9c0e-88a50760602a + - 37b054bb-8e76-46b7-b5a8-ff3b1d6bb4c9 status: code: 404 message: Not Found @@ -2402,13 +2358,13 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"54d81eb7-58a6-42e7-af7b-c5eb1f3c029a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"e2c22063-bc37-4601-994e-2f0ad931998e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -2419,11 +2375,11 @@ interactions: cache-control: - no-cache content-length: - - '764' + - '726' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:04 GMT + - Tue, 10 May 2022 07:44:59 GMT expires: - '-1' pragma: @@ -2440,7 +2396,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57d8c3db-3cc7-4483-92c7-f134ef1a9795 + - 6636e1f8-2fe7-4d7b-990c-cc08157771ea status: code: 200 message: OK @@ -2458,14 +2414,14 @@ interactions: ParameterSetName: - -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables?api-version=2021-08-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"testroutetable\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"54d81eb7-58a6-42e7-af7b-c5eb1f3c029a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"e2c22063-bc37-4601-994e-2f0ad931998e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -2478,11 +2434,11 @@ interactions: cache-control: - no-cache content-length: - - '889' + - '851' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:06 GMT + - Tue, 10 May 2022 07:45:00 GMT expires: - '-1' pragma: @@ -2499,7 +2455,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 469ab4ae-df77-4bea-8645-ca03fe8d32ae + - f2da1d40-8d75-4a1e-a5a6-a4aca5c10f5e status: code: 200 message: OK @@ -2517,20 +2473,20 @@ interactions: ParameterSetName: - -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables?api-version=2021-08-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"defaultRouteTable\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/defaultRouteTable\",\r\n - \ \"etag\": \"W/\\\"54d81eb7-58a6-42e7-af7b-c5eb1f3c029a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"e2c22063-bc37-4601-994e-2f0ad931998e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n },\r\n {\r\n \"name\": \"noneRouteTable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/noneRouteTable\",\r\n - \ \"etag\": \"W/\\\"54d81eb7-58a6-42e7-af7b-c5eb1f3c029a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"e2c22063-bc37-4601-994e-2f0ad931998e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \"labels\": [\r\n \"none\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": @@ -2539,11 +2495,11 @@ interactions: cache-control: - no-cache content-length: - - '1311' + - '1235' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:08 GMT + - Tue, 10 May 2022 07:45:01 GMT expires: - '-1' pragma: @@ -2560,7 +2516,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6779b7fe-3854-4433-8711-f8920d6e7809 + - 5be5fe96-c04d-4c7e-9c0b-603122ef95bf status: code: 200 message: OK @@ -2578,9 +2534,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --connections User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -2590,11 +2546,11 @@ interactions: cache-control: - no-cache content-length: - - '333' + - '295' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:10 GMT + - Tue, 10 May 2022 07:45:02 GMT expires: - '-1' pragma: @@ -2607,7 +2563,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d2620df-2fa8-45d0-8cfe-42bca53a9ca1 + - c6501a14-cd34-4823-ab63-13ccc4083a07 status: code: 404 message: Not Found @@ -2625,13 +2581,13 @@ interactions: ParameterSetName: - -n -g --vhub-name --connections User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"54d81eb7-58a6-42e7-af7b-c5eb1f3c029a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"e2c22063-bc37-4601-994e-2f0ad931998e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -2642,11 +2598,11 @@ interactions: cache-control: - no-cache content-length: - - '764' + - '726' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:11 GMT + - Tue, 10 May 2022 07:45:03 GMT expires: - '-1' pragma: @@ -2663,7 +2619,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 15d3f4af-5263-47d5-bc1a-73e78aa566d3 + - dbcf1b0d-0505-46c2-a055-9a6b12b17d47 status: code: 200 message: OK @@ -2682,19 +2638,19 @@ interactions: Connection: - keep-alive Content-Length: - - '460' + - '422' Content-Type: - application/json ParameterSetName: - -n -g --vhub-name --connections User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"535fdf23-815a-40bd-a438-08b9f08d50ed\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"76aa1e6e-2987-401f-9a77-29aa94b9d61e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -2703,15 +2659,15 @@ interactions: \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routeTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f1987249-6e7b-4310-bfb0-75285aac59cb?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/89b1deb1-2b6a-4897-baa3-f06e1fb6827c?api-version=2021-08-01 cache-control: - no-cache content-length: - - '766' + - '728' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:13 GMT + - Tue, 10 May 2022 07:45:04 GMT expires: - '-1' pragma: @@ -2728,9 +2684,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 83758aa3-6b6c-4275-9bfd-65237319dd5a + - 06087c06-fa8f-4efc-9665-d5932a100cab x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2748,9 +2704,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --connections User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f1987249-6e7b-4310-bfb0-75285aac59cb?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/89b1deb1-2b6a-4897-baa3-f06e1fb6827c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2762,7 +2718,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:24 GMT + - Tue, 10 May 2022 07:45:14 GMT expires: - '-1' pragma: @@ -2779,7 +2735,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22c29306-6030-4777-b290-981ca06ebf27 + - c94212fb-df02-40de-8344-4fb467e35804 status: code: 200 message: OK @@ -2797,9 +2753,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --connections User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f1987249-6e7b-4310-bfb0-75285aac59cb?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/89b1deb1-2b6a-4897-baa3-f06e1fb6827c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2811,7 +2767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:35 GMT + - Tue, 10 May 2022 07:45:24 GMT expires: - '-1' pragma: @@ -2828,7 +2784,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f836af96-1a69-49e3-8ba9-b65374d1b41d + - 70454f88-7b74-4ccb-ad7e-f41b954dea1b status: code: 200 message: OK @@ -2846,9 +2802,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --connections User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f1987249-6e7b-4310-bfb0-75285aac59cb?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/89b1deb1-2b6a-4897-baa3-f06e1fb6827c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2860,7 +2816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:43:56 GMT + - Tue, 10 May 2022 07:45:44 GMT expires: - '-1' pragma: @@ -2877,7 +2833,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ad8ab1dc-c6a8-407e-a3eb-1b4e9ee2fbf2 + - 9bb6ed0c-4109-405b-8599-3402c8f635de status: code: 200 message: OK @@ -2895,9 +2851,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --connections User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f1987249-6e7b-4310-bfb0-75285aac59cb?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/89b1deb1-2b6a-4897-baa3-f06e1fb6827c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2909,7 +2865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:44:37 GMT + - Tue, 10 May 2022 07:46:26 GMT expires: - '-1' pragma: @@ -2926,7 +2882,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b133bd2d-28e2-4e33-947c-eb7e545ddf2f + - ced364ea-4b1d-44e7-bbe0-023d6cd9ba50 status: code: 200 message: OK @@ -2944,13 +2900,13 @@ interactions: ParameterSetName: - -n -g --vhub-name --connections User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"49619b8e-a312-4081-8f69-a84928ce6c2b\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"66754926-a2d2-43cb-a42f-94b1cd9f063d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -2961,11 +2917,11 @@ interactions: cache-control: - no-cache content-length: - - '767' + - '729' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:44:38 GMT + - Tue, 10 May 2022 07:46:26 GMT expires: - '-1' pragma: @@ -2982,7 +2938,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e544b118-ac74-43a2-b3e7-3bd19c0f4fbc + - f52a73e2-f7c0-44ba-b4d4-9bf46266698a status: code: 200 message: OK @@ -3000,9 +2956,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -3012,11 +2968,11 @@ interactions: cache-control: - no-cache content-length: - - '333' + - '295' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:44:40 GMT + - Tue, 10 May 2022 07:46:27 GMT expires: - '-1' pragma: @@ -3029,7 +2985,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 53964f4c-c9ea-4011-b2c7-4a187212bbb2 + - 2901175d-be99-4a8b-bf61-6add79f57cac status: code: 404 message: Not Found @@ -3047,13 +3003,13 @@ interactions: ParameterSetName: - -n -g --vhub-name --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"49619b8e-a312-4081-8f69-a84928ce6c2b\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"66754926-a2d2-43cb-a42f-94b1cd9f063d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -3064,11 +3020,11 @@ interactions: cache-control: - no-cache content-length: - - '767' + - '729' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:44:42 GMT + - Tue, 10 May 2022 07:46:29 GMT expires: - '-1' pragma: @@ -3085,7 +3041,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4dc55fc1-d829-46ca-a37a-e9a38570b6ca + - 469f8287-3da3-4ccb-98a6-4d56a2bef995 status: code: 200 message: OK @@ -3106,19 +3062,19 @@ interactions: Connection: - keep-alive Content-Length: - - '588' + - '550' Content-Type: - application/json ParameterSetName: - -n -g --vhub-name --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"999de0c3-c81e-4f3e-bb0f-195c51210993\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"0aa42553-2bec-4916-a39b-5674466bc2ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -3130,15 +3086,15 @@ interactions: [\r\n \"All_Branches\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routeTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2694877-d102-497a-b4ce-e5225bb0db55?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8a89749c-09ce-451a-a023-157dfb81b096?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1001' + - '963' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:44:45 GMT + - Tue, 10 May 2022 07:46:29 GMT expires: - '-1' pragma: @@ -3155,9 +3111,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25c948b4-94de-4915-a21c-f0d3b88edbfc + - 11e5346f-bee1-4307-bb47-5aa31e3fbb33 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3175,9 +3131,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2694877-d102-497a-b4ce-e5225bb0db55?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8a89749c-09ce-451a-a023-157dfb81b096?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3189,7 +3145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:44:55 GMT + - Tue, 10 May 2022 07:46:40 GMT expires: - '-1' pragma: @@ -3206,7 +3162,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25f06e00-8d7a-4d50-90f8-20e3627bbdc6 + - 526f0f7a-cf13-4d15-a61a-32687f81a418 status: code: 200 message: OK @@ -3224,9 +3180,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2694877-d102-497a-b4ce-e5225bb0db55?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8a89749c-09ce-451a-a023-157dfb81b096?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3238,7 +3194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:45:05 GMT + - Tue, 10 May 2022 07:46:50 GMT expires: - '-1' pragma: @@ -3255,7 +3211,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44fdf83b-b808-49f9-ab20-7434f261bcdd + - 06372c3c-beb7-4466-8346-92fdfd2f7398 status: code: 200 message: OK @@ -3273,9 +3229,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2694877-d102-497a-b4ce-e5225bb0db55?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8a89749c-09ce-451a-a023-157dfb81b096?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3287,7 +3243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:45:26 GMT + - Tue, 10 May 2022 07:47:10 GMT expires: - '-1' pragma: @@ -3304,7 +3260,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0f5da435-1b8e-4076-9b05-8e69e9e2ff8f + - 9e9788bd-d1c7-444a-90ec-fb24ad395834 status: code: 200 message: OK @@ -3322,9 +3278,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2694877-d102-497a-b4ce-e5225bb0db55?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8a89749c-09ce-451a-a023-157dfb81b096?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3336,7 +3292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:46:06 GMT + - Tue, 10 May 2022 07:47:50 GMT expires: - '-1' pragma: @@ -3353,7 +3309,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2aa20ac3-ddc9-420d-8e83-b3a0ab1da951 + - eb7244cf-1b5d-402c-b285-aeae09a886c5 status: code: 200 message: OK @@ -3371,13 +3327,13 @@ interactions: ParameterSetName: - -n -g --vhub-name --destination-type --destinations --next-hop-type --next-hops User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"c50590fc-97af-4f6b-b792-bc4d846d68e1\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"52f21edc-aa08-40da-a6ed-40583dbab45a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -3391,11 +3347,11 @@ interactions: cache-control: - no-cache content-length: - - '1002' + - '964' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:46:06 GMT + - Tue, 10 May 2022 07:47:51 GMT expires: - '-1' pragma: @@ -3412,7 +3368,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b7f4c773-1cbb-4ce1-b62a-7a15b3cfcf4c + - cb75793b-2531-4354-87ed-d5604c763cb2 status: code: 200 message: OK @@ -3430,9 +3386,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -3442,11 +3398,11 @@ interactions: cache-control: - no-cache content-length: - - '333' + - '295' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:46:08 GMT + - Tue, 10 May 2022 07:47:58 GMT expires: - '-1' pragma: @@ -3459,7 +3415,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a12e922a-ade9-4b4e-8734-8e04c47c4be5 + - 4bf67232-9896-48fb-856c-692cfd8f023c status: code: 404 message: Not Found @@ -3477,13 +3433,13 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"c50590fc-97af-4f6b-b792-bc4d846d68e1\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"52f21edc-aa08-40da-a6ed-40583dbab45a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \ \"10.4.0.0/16\",\r\n \"10.6.0.0/16\"\r\n ],\r\n @@ -3497,11 +3453,11 @@ interactions: cache-control: - no-cache content-length: - - '1002' + - '964' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:46:10 GMT + - Tue, 10 May 2022 07:48:00 GMT expires: - '-1' pragma: @@ -3511,14 +3467,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a6c70f15-d59c-4a55-85d7-0d5380e30ba6 + - 51734aa3-0ede-4e05-8dc0-acabef14dd27 status: code: 200 message: OK @@ -3537,19 +3489,19 @@ interactions: Connection: - keep-alive Content-Length: - - '456' + - '418' Content-Type: - application/json ParameterSetName: - -n -g --vhub-name --index User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"d4ba69d6-154f-42d0-aa89-c1f0c3e50573\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"8350b8d3-229c-4a98-a738-f365ba255e2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"Service\",\r\n \"destinations\": [\r\n \ \"Skype\",\r\n \"Sharepoint\"\r\n ],\r\n \"nextHopType\": @@ -3558,15 +3510,15 @@ interactions: \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routeTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/171fc4ad-2128-49ab-83e5-fd6e1ee64229?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/75c507ad-1725-454c-b6e1-fb834ed06b92?api-version=2021-08-01 cache-control: - no-cache content-length: - - '762' + - '724' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:46:12 GMT + - Tue, 10 May 2022 07:48:02 GMT expires: - '-1' pragma: @@ -3576,16 +3528,12 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 740bc418-1289-4010-aee3-6770e977a1cb + - 4b2695fe-8d50-4dc6-af24-f352b55b5711 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 200 message: OK @@ -3603,9 +3551,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/171fc4ad-2128-49ab-83e5-fd6e1ee64229?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/75c507ad-1725-454c-b6e1-fb834ed06b92?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3617,7 +3565,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:46:22 GMT + - Tue, 10 May 2022 07:48:13 GMT expires: - '-1' pragma: @@ -3627,14 +3575,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b2313603-9f3c-4a8c-84f4-95fcf83c0c46 + - 903594c1-9164-4d41-8e3d-83a0bca77c3b status: code: 200 message: OK @@ -3652,9 +3596,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/171fc4ad-2128-49ab-83e5-fd6e1ee64229?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/75c507ad-1725-454c-b6e1-fb834ed06b92?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3666,7 +3610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:46:32 GMT + - Tue, 10 May 2022 07:48:33 GMT expires: - '-1' pragma: @@ -3676,14 +3620,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b5424ea-367d-44af-b025-15bfc715925f + - f1a9dcd8-a572-4b26-a9db-02d2b0513e6f status: code: 200 message: OK @@ -3701,58 +3641,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/171fc4ad-2128-49ab-83e5-fd6e1ee64229?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 02 Aug 2021 08:46: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: - - 2324f7d3-8f6e-43f1-8fe5-a238b8cab84e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub route-table route remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --vhub-name --index - User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/171fc4ad-2128-49ab-83e5-fd6e1ee64229?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/75c507ad-1725-454c-b6e1-fb834ed06b92?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3764,7 +3655,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:47:34 GMT + - Tue, 10 May 2022 07:49:14 GMT expires: - '-1' pragma: @@ -3774,14 +3665,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b1c45017-97d5-41a8-9b85-77531c088fd2 + - 218aff20-9a8b-49ec-a84f-e59d59b0b09c status: code: 200 message: OK @@ -3799,13 +3686,13 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"72bfbd0f-961d-407e-aee6-713711160c33\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"b64b7a1a-2a78-478d-bb97-f4aea47ff9f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"Service\",\r\n \"destinations\": [\r\n \ \"Skype\",\r\n \"Sharepoint\"\r\n ],\r\n \"nextHopType\": @@ -3816,11 +3703,11 @@ interactions: cache-control: - no-cache content-length: - - '763' + - '725' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:47:35 GMT + - Tue, 10 May 2022 07:49:15 GMT expires: - '-1' pragma: @@ -3830,14 +3717,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bf6dbc47-c24d-4810-a873-32eefdb067a9 + - bd0705fe-e670-4e77-bd1a-9e8f7b7885db status: code: 200 message: OK @@ -3855,9 +3738,9 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -3867,11 +3750,11 @@ interactions: cache-control: - no-cache content-length: - - '333' + - '295' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:47:37 GMT + - Tue, 10 May 2022 07:49:15 GMT expires: - '-1' pragma: @@ -3884,7 +3767,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7154ba91-40b7-4931-8900-5c621a103aee + - eefaa3a5-9014-4458-931d-3df1381add14 status: code: 404 message: Not Found @@ -3902,13 +3785,13 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"72bfbd0f-961d-407e-aee6-713711160c33\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"b64b7a1a-2a78-478d-bb97-f4aea47ff9f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"destinationType\": \"Service\",\r\n \"destinations\": [\r\n \ \"Skype\",\r\n \"Sharepoint\"\r\n ],\r\n \"nextHopType\": @@ -3919,11 +3802,11 @@ interactions: cache-control: - no-cache content-length: - - '763' + - '725' content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:47:39 GMT + - Tue, 10 May 2022 07:49:16 GMT expires: - '-1' pragma: @@ -3940,7 +3823,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 698f3f58-5567-488b-a5d5-150868b8eaeb + - 7b7e2579-e564-4d5e-b2c7-d800d243a92c status: code: 200 message: OK @@ -3960,25 +3843,25 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables/testroutetable?api-version=2021-08-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7050615-5765-45da-91e9-c2b819b43ff0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fcd13f29-d158-4212-8b4b-dbc1327658f5?api-version=2021-08-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 02 Aug 2021 08:47:41 GMT + - Tue, 10 May 2022 07:49:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/d7050615-5765-45da-91e9-c2b819b43ff0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/fcd13f29-d158-4212-8b4b-dbc1327658f5?api-version=2021-08-01 pragma: - no-cache server: @@ -3989,7 +3872,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f54f136-a6bf-4c14-8144-c15465cc25d0 + - 8bc71329-c574-42be-8add-fd031212c26b x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -4009,9 +3892,9 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7050615-5765-45da-91e9-c2b819b43ff0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fcd13f29-d158-4212-8b4b-dbc1327658f5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4023,7 +3906,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:47:51 GMT + - Tue, 10 May 2022 07:49:28 GMT expires: - '-1' pragma: @@ -4040,7 +3923,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 32a04955-920a-46dd-a629-915cbe02c057 + - 026a5456-f527-4e4a-b88f-8ab3b664c44a status: code: 200 message: OK @@ -4058,9 +3941,9 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7050615-5765-45da-91e9-c2b819b43ff0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fcd13f29-d158-4212-8b4b-dbc1327658f5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4072,7 +3955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:48:02 GMT + - Tue, 10 May 2022 07:49:38 GMT expires: - '-1' pragma: @@ -4089,7 +3972,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 028cf2d2-4d52-4552-9868-6c8ca02951f4 + - 9871e023-452f-495d-823e-b33646897cbd status: code: 200 message: OK @@ -4107,9 +3990,9 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7050615-5765-45da-91e9-c2b819b43ff0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fcd13f29-d158-4212-8b4b-dbc1327658f5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4121,7 +4004,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:48:22 GMT + - Tue, 10 May 2022 07:49:58 GMT expires: - '-1' pragma: @@ -4138,7 +4021,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 37e7ec69-23ab-4a40-b746-0718390ac930 + - b8fa2efc-f9d5-4b47-ae97-9b345d231354 status: code: 200 message: OK @@ -4156,9 +4039,9 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - AZURECLI/2.26.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7050615-5765-45da-91e9-c2b819b43ff0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fcd13f29-d158-4212-8b4b-dbc1327658f5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -4170,7 +4053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 02 Aug 2021 08:49:02 GMT + - Tue, 10 May 2022 07:50:38 GMT expires: - '-1' pragma: @@ -4187,7 +4070,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c1ab1141-7f43-477b-9e4c-06565f9fbc8c + - eada3284-fcca-418d-80da-da9b02288847 status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_route_table_v3.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_route_table_v3.yaml index 467d85180e8..514e74a69b3 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_route_table_v3.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_route_table_v3.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.26.0 method: GET uri: https://aka.ms/azure-cli-extension-index-v1 response: @@ -23,21 +23,19 @@ interactions: content-length: - '0' date: - - Fri, 22 Jan 2021 02:33:35 GMT + - Mon, 16 May 2022 06:20:07 GMT expires: - - Fri, 22 Jan 2021 02:33:35 GMT + - Mon, 16 May 2022 06:20:07 GMT location: - - https://azurecliextensionsync.blob.core.windows.net/index1/index.json + - https://azcliextensionsync.blob.core.windows.net/index1/index.json pragma: - no-cache request-context: - - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e + - appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587 server: - Kestrel strict-transport-security: - max-age=31536000 ; includeSubDomains - x-powered-by: - - ASP.NET x-response-cache-status: - 'True' status: @@ -53,9 +51,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.26.0 method: GET - uri: https://azurecliextensionsync.blob.core.windows.net/index1/index.json + uri: https://azcliextensionsync.blob.core.windows.net/index1/index.json response: body: string: "{\n \"extensions\": {\n \"account\": [\n {\n \"downloadUrl\": @@ -137,6 +135,136 @@ interactions: \"account\",\n \"summary\": \"Microsoft Azure Command-Line Tools SubscriptionClient Extension\",\n \"version\": \"0.2.1\"\n \ },\n \"sha256Digest\": \"aba36f7a6f109d2bd1b1624ebcfdfd07a97e9a0b05b051d0af7d2ddb4d2f3c89\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/account-0.2.2-py3-none-any.whl\",\n + \ \"filename\": \"account-0.2.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/account\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"account\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SubscriptionClient Extension\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"adffb8a4ceaecde0157467740551cea2b983ae5483d9b0ec59f9c678f232066d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/account-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"account-0.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/account\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"account\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SubscriptionClient Extension\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"94aa62990cc1260c24100501c3479d0f1ddbb485dccdbecf42228382c537f019\"\n + \ }\n ],\n \"acrtransfer\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/acrtransfer-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"acrtransfer-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"KraterDev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/acrtransfer\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"acrtransfer\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Acrtransfer Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"8fadff19781b34ab246a15a5c222fd6af53ea93f7778fbf933d1ccd082f3e362\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/acrtransfer-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"acrtransfer-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"KraterDev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/acrtransfer\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"acrtransfer\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Acrtransfer Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"668b94d0341b663a610212f318b899a53be60ae0eb59c47e162f5dabd3483551\"\n + \ }\n ],\n \"ad\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/ad-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"ad-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ad\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ad\",\n \"summary\": \"Microsoft Azure Command-Line Tools + DomainServicesResourceProvider Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"61df234e10759e9916c1d447ab02b82637de10fd97c31a17252e1f5183853883\"\n \ }\n ],\n \"aem\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aem-0.1.1-py2.py3-none-any.whl\",\n \ \"filename\": \"aem-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": @@ -164,6 +292,107 @@ interactions: \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring Extensions for SAP\",\n \"version\": \"0.1.1\"\n },\n \ \"sha256Digest\": \"4ac7b8a4a89eda68d9d1a07cc5edd9b1a2b88421e2aa9a9e5b86a241f127775f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aem-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"aem-0.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"yugangw@microsoft.com\",\n + \ \"name\": \"Yugang Wang\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring + Extensions for SAP\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"3ae49bb9f6b07cdaae840079c95e3d30c7e8bc27ba68d542e8e122cf4c14ce00\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aem-0.2.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.19.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"yugangw@microsoft.com\",\n \"name\": + \"Yugang Wang\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring + Extensions for SAP\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"fb11a2b2b46c5bae831216969bc333a74c7f2a1f77fb8fae7427b911d27bdd41\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aem-0.2.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.19.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"yugangw@microsoft.com\",\n \"name\": + \"Yugang Wang\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring + Extensions for SAP\",\n \"version\": \"0.2.2\"\n },\n + \ \"sha256Digest\": \"4019ccd9d3bfef853bbe31bc178e07ea1d132a8dea6e6931f917c0d4b0130d13\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"aem-0.3.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.19.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"yugangw@microsoft.com\",\n \"name\": + \"Yugang Wang\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring + Extensions for SAP\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"25aaf9006ab1d115d7c484cfda1c9ad0e3617af6d2140db87499aaea81b67ff8\"\n \ }\n ],\n \"ai-examples\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"ai_examples-0.1.0-py2.py3-none-any.whl\",\n @@ -1304,11 +1533,10 @@ interactions: \"aks-preview\",\n \"summary\": \"Provides a preview for upcoming AKS features\",\n \"version\": \"0.4.72\"\n },\n \ \"sha256Digest\": \"5d8ec45db6137170926753fe13f7afa8bc66b7b2d8e1af420bb4615b20b471bf\"\n - \ }\n ],\n \"alertsmanagement\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"alertsmanagement-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.73-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.73-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -1319,533 +1547,394 @@ interactions: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"fey@microsoft.com\",\n \"name\": \"Github:qwordy\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"alertsmanagement\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Alerts Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"80ab78574debff9d8a9106bac3929cb552adea1371ea24f06073669fef708fcd\"\n - \ }\n ],\n \"alias\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/alias-0.5.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"alias-0.5.2-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.50.dev0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.73\"\n },\n + \ \"sha256Digest\": \"d5cd928c82d0f65dbdefc651b2925bfba8710d14d9ecb2aab50ce3b6b461a3c5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"t-chwong@microsoft.com\",\n \"name\": - \"Ernest Wong\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.29.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"alias\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"jinja2 (~=2.10)\"\n ]\n - \ }\n ],\n \"summary\": - \"Support for command aliases\",\n \"version\": \"0.5.2\"\n - \ },\n \"sha256Digest\": \"05f82d75026e780d27bd34a1be57f4ec0f425500d8ab4ee7e92fee07b944da33\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alias-0.5.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"alias-0.5.1-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.31.dev0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"t-chwong@microsoft.com\",\n \"name\": - \"Ernest Wong\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"alias\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"jinja2 (~=2.10)\"\n ]\n - \ }\n ],\n \"summary\": - \"Support for command aliases\",\n \"version\": \"0.5.1\"\n - \ },\n \"sha256Digest\": \"81b9a7f1824bffcbd6e72680891476151dde868e030cdbf1bfd9135e1a8f3447\"\n - \ }\n ],\n \"application-insights\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"aleldeib@microsoft.com\",\n \"name\": - \"Ace Eldeib\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"application-insights\",\n \"summary\": \"Support for - managing Application Insights components and querying metrics, events, and - logs from such components.\",\n \"version\": \"0.1.3\"\n - \ },\n \"sha256Digest\": \"e5b8104da5d9f241a0599adeb3b1d2f910f00991f47d4f4c4095285de3a82f00\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.4-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.0\"\n },\n + \ \"sha256Digest\": \"abb67e21afe5760a77dc90832ff3790da7041e19240b5e16829b27562b538917\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.1-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"extensions\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"aleldeib@microsoft.com\",\n \"name\": - \"Ace Eldeib\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"application-insights\",\n \"summary\": \"Support for - managing Application Insights components and querying metrics, events, and - logs from such components.\",\n \"version\": \"0.1.4\"\n - \ },\n \"sha256Digest\": \"8b4ef4870b16a15fd81af385c3dff762e7af52333e212a68b5ec5f42663a6078\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.5-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.5-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.1\"\n },\n + \ \"sha256Digest\": \"18a96ea0a9a7402715bd8896901e9b9b1a69ae40f8791755337178fdb3d2dd8b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.2-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"application-insights\",\n \"summary\": \"Support for - managing Application Insights components and querying metrics, events, and - logs from such components.\",\n \"version\": \"0.1.5\"\n - \ },\n \"sha256Digest\": \"effa0a37f1e8b2506d4849a2208d69f06a6683809e5da809bea63bd0f940da2f\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.6-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.6-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.2\"\n },\n + \ \"sha256Digest\": \"8a0d406acb640b0f9e2a5c2aba6ec1038aa14178e28cacb07f213127da4c7d4a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.3-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"application-insights\",\n \"summary\": \"Support for - managing Application Insights components and querying metrics, events, and - logs from such components.\",\n \"version\": \"0.1.6\"\n - \ },\n \"sha256Digest\": \"271db7f2036eb245d3d00d5010468330e4ed97e7ed9756598e61a1960d37ac44\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.7-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.7-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.3\"\n },\n + \ \"sha256Digest\": \"a5ee5bd051e5e3909dd84593ff6c5ae9aa37eb4fd68ffa23db1011894c15ba9d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.4-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"application-insights\",\n \"summary\": \"Support for - managing Application Insights components and querying metrics, events, and - logs from such components.\",\n \"version\": \"0.1.7\"\n - \ },\n \"sha256Digest\": \"6cb8c879d0960e6f41e1273c309253d7d7ca42089694fcf5e500d0a27ae89b59\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.8-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.8-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.4\"\n },\n + \ \"sha256Digest\": \"9d917bb16488f2e0c07b8448675105ce726e836f3070cb1669394ce174893ec4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.5-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"isodate (~=0.6.0)\"\n ]\n - \ }\n ],\n \"summary\": - \"Support for managing Application Insights components and querying metrics, - events, and logs from such components.\",\n \"version\": - \"0.1.8\"\n },\n \"sha256Digest\": \"f2f041e166f0b587e7c92252ef59e3bcecb8721f15c5e96f4496871a85a81f61\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.9-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.9-py2.py3-none-any.whl\",\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.5\"\n },\n + \ \"sha256Digest\": \"17a72fbfd8ddafbe11cedadb5f2fd9b514d700ecc3854ece5c257c5c7e443182\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.6-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"isodate (~=0.6.0)\"\n ]\n - \ }\n ],\n \"summary\": - \"Support for managing Application Insights components and querying metrics, - events, and logs from such components.\",\n \"version\": - \"0.1.9\"\n },\n \"sha256Digest\": \"4ed371e2e02a31133bec6d416dd98c0de3e1ffbf56089e034abc36609c9dfa97\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.10-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.10-py2.py3-none-any.whl\",\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.6\"\n },\n + \ \"sha256Digest\": \"70552c8f2eb4c60d7de4f2ed9225c16757c6f1978fa0a091d83ab74a748155a5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.7-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"isodate (~=0.6.0)\"\n ]\n - \ }\n ],\n \"summary\": - \"Support for managing Application Insights components and querying metrics, - events, and logs from such components.\",\n \"version\": - \"0.1.10\"\n },\n \"sha256Digest\": \"4f6ef254677ae32523f44af0f6b99bbdf6e5a8d1c894c7d2d72f4c8f8f359fb0\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.11-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.11-py2.py3-none-any.whl\",\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.7\"\n },\n + \ \"sha256Digest\": \"3721871ac87368c30bd8dfbcd6ff745bb4254f9b2daff651ba3de892dfd15067\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.8-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"isodate (~=0.6.0)\"\n ]\n - \ }\n ],\n \"summary\": - \"Support for managing Application Insights components and querying metrics, - events, and logs from such components.\",\n \"version\": - \"0.1.11\"\n },\n \"sha256Digest\": \"ffb9b4daf395966226786cc55bce2beff7d9a22ccec739cb21910ff03f582e90\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.12-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.12-py2.py3-none-any.whl\",\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.8\"\n },\n + \ \"sha256Digest\": \"c32a30d83efeee2cdb23e5dccf1d86788835bcb8947d6ba838fab63d97409bd5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.9-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"isodate (~=0.6.0)\"\n ]\n - \ }\n ],\n \"summary\": - \"Support for managing Application Insights components and querying metrics, - events, and logs from such components.\",\n \"version\": - \"0.1.12\"\n },\n \"sha256Digest\": \"94ecdd71a1007df791a193e9273e902c39caa53dc965823c019d41cd679ee27c\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.13-py2.py3-none-any.whl\",\n - \ \"filename\": \"application_insights-0.1.13-py2.py3-none-any.whl\",\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.9\"\n },\n + \ \"sha256Digest\": \"8e9f36f5ee8f07e3d7f24de3ffe11aa82ba1af4b135286cf3e463d8d6d7e5ab3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.10-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"isodate (~=0.6.0)\"\n ]\n - \ }\n ],\n \"summary\": - \"Support for managing Application Insights components and querying metrics, - events, and logs from such components.\",\n \"version\": - \"0.1.13\"\n },\n \"sha256Digest\": \"b1d5d31cfbd8a75595943d7248e585d63d0a1c6b43c69febbd7162239af98933\"\n - \ }\n ],\n \"attestation\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/attestation-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"attestation-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/attestation\"\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.10\"\n },\n + \ \"sha256Digest\": \"2dc5f15206e44d509d1a6738ee7b24bd3bba20d2a184d9fd93423affb346abdc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"attestation\",\n \"summary\": \"Microsoft Azure Command-Line - Tools AttestationManagementClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"1d4e9b832a3f50b33428d565478a2e655c81d49277c07dc909f1485b62ba5372\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/attestation-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"attestation-0.2.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.11.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/attestation\"\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.11\"\n },\n + \ \"sha256Digest\": \"9eeda4d792219e1745948103bd6f0677a724553708ba1ccf49ca484181939f07\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"attestation\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"pyjwt (==1.7.1)\"\n ]\n - \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Tools AttestationManagementClient Extension\",\n - \ \"version\": \"0.2.0\"\n },\n \"sha256Digest\": - \"895328b45d8bcfe45e4937885572cd1f39d23bc49f88314713a462bf1a367cc9\"\n }\n - \ ],\n \"automation\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/automation-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"automation-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.13.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/automation\"\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.12\"\n },\n + \ \"sha256Digest\": \"9d7f0941b2e1e765cd48cee7b7502a035d65385ddce9d210ccdf6ef68519b4e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.13-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"automation\",\n \"summary\": \"Microsoft Azure Command-Line - Tools AutomationClient Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"779f996ffab9fd76438d8938216fcbeb6f9aecad3a23bd2097731182607e4d7a\"\n - \ }\n ],\n \"azure-batch-cli-extensions\": [\n {\n - \ \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-2.5.3/azure_batch_cli_extensions-2.5.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_batch_cli_extensions-2.5.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.maxCliCoreVersion\": - \"2.0.58\",\n \"azext.minCliCoreVersion\": \"2.0.24\",\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n - \ \"run_requires\": [\n {\n \"requires\": - [\n \"azure-batch-extensions (<4.1,>=4.0.0)\",\n - \ \"pycparser (==2.18)\"\n ]\n - \ }\n ],\n \"summary\": - \"Additional commands for working with Azure Batch service\",\n \"version\": - \"2.5.3\"\n },\n \"sha256Digest\": \"cc30b985edd5de0233d4fd283cfa29390d119c223b2f819ca36e071f759d5485\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-3.0.4/azure_batch_cli_extensions-3.0.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_batch_cli_extensions-3.0.4-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.maxCliCoreVersion\": - \"2.1.0\",\n \"azext.minCliCoreVersion\": \"2.0.59\",\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n - \ \"run_requires\": [\n {\n \"requires\": - [\n \"azure-batch-extensions (<5.1,>=5.0.0)\",\n - \ \"pycparser (==2.18)\"\n ]\n - \ }\n ],\n \"summary\": - \"Additional commands for working with Azure Batch service\",\n \"version\": - \"3.0.4\"\n },\n \"sha256Digest\": \"9e76b7242934ceb8ae48c65f5469312522a034f4abf66d4771fb721aee04a502\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-4.0.0/azure_batch_cli_extensions-4.0.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_batch_cli_extensions-4.0.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.maxCliCoreVersion\": - \"2.1.0\",\n \"azext.minCliCoreVersion\": \"2.0.69\",\n - \ \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.13\"\n },\n + \ \"sha256Digest\": \"54409bfe6bc1b8c34183eea46624973cb6c53acf6b11b5665cc21b229da17156\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.14-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.14-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": \"azpycli@microsoft.com\",\n \"name\": @@ -1853,666 +1942,511 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n - \ \"run_requires\": [\n {\n \"requires\": - [\n \"azure-batch-extensions (<6.1,>=6.0.0)\",\n - \ \"pycparser (==2.18)\"\n ]\n - \ }\n ],\n \"summary\": - \"Additional commands for working with Azure Batch service\",\n \"version\": - \"4.0.0\"\n },\n \"sha256Digest\": \"3045dc24858b9acfed13a517038830ddc643aef779de0d14617c49c9fd2dcbd5\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-5.0.1/azure_batch_cli_extensions-5.0.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_batch_cli_extensions-5.0.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.maxCliCoreVersion\": - \"3.0.0\",\n \"azext.minCliCoreVersion\": \"2.0.73\",\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.14\"\n },\n + \ \"sha256Digest\": \"635f9a1ed5cd480da0e730ddd3116bc352997120aa1feff1b3972067460bbc9f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.15-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n - \ \"run_requires\": [\n {\n \"requires\": - [\n \"azure-batch-extensions (<7.1,>=7.0.0)\",\n - \ \"pycparser (==2.18)\"\n ]\n - \ }\n ],\n \"summary\": - \"Additional commands for working with Azure Batch service\",\n \"version\": - \"5.0.1\"\n },\n \"sha256Digest\": \"bf07b63782e0f6446302971afaf8b5ec5bb6dbc00449bf3276511993abf8cd61\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-6.0.0/azure_batch_cli_extensions-6.0.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_batch_cli_extensions-6.0.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.maxCliCoreVersion\": - \"3.0.0\",\n \"azext.minCliCoreVersion\": \"2.0.74\",\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.15\"\n },\n + \ \"sha256Digest\": \"c5bc6296b75fcdaf2a499d34dfa184d6cdeda7a8abaf1306fd758dd04804e621\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.17-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.17-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n - \ \"run_requires\": [\n {\n \"requires\": - [\n \"azure-batch-extensions (<8.1,>=8.0.0)\",\n - \ \"pycparser (==2.18)\"\n ]\n - \ }\n ],\n \"summary\": - \"Additional commands for working with Azure Batch service\",\n \"version\": - \"6.0.0\"\n },\n \"sha256Digest\": \"6955a0d960d9c4df6935b9058f67c8c42872c8716d8d2a4f76e9e6ce72eb66ab\"\n - \ }\n ],\n \"azure-cli-iot-ext\": [\n {\n - \ \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.8.10/azure_cli_iot_ext-0.8.10-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_cli_iot_ext-0.8.10-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.70\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"Programming Language - :: Python :: 3.7\",\n \"Programming Language :: Python - :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n - \ ],\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"iotupx@microsoft.com\",\n - \ \"name\": \"Microsoft\",\n \"role\": + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.17\"\n },\n + \ \"sha256Digest\": \"add861fdea86d7789a0680a3db61fbc32736849c137eb043cb4496f1ee07b742\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.18-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.18-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-cli-iot-ext\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"jsonschema (==3.0.2)\",\n \"paho-mqtt - (==1.5.0)\",\n \"setuptools\"\n ]\n - \ }\n ],\n \"summary\": - \"Deprecated: please remove 'azure-cli-iot-ext' and install the 'azure-iot' - extension instead. The legacy extension 'azure-cli-iot-ext' is scheduled for - removal after 9/15/2020.\",\n \"version\": \"0.8.10\"\n - \ },\n \"sha256Digest\": \"55178c5c9a975f27054764a4f2758815cdda55f73fdf11c432bd03f6ac2391fd\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.8.9/azure_cli_iot_ext-0.8.9-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_cli_iot_ext-0.8.9-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.70\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"Programming Language - :: Python :: 3.7\",\n \"Programming Language :: Python - :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n - \ ],\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"iotupx@microsoft.com\",\n - \ \"name\": \"Microsoft\",\n \"role\": + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.18\"\n },\n + \ \"sha256Digest\": \"5cdb117cd30f743c092131bf77e8a699ba4e62bdf7f60a987b5e04387a57ccec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.19-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.19-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-cli-iot-ext\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"jsonschema (==3.0.2)\",\n \"paho-mqtt - (==1.5.0)\",\n \"setuptools\"\n ]\n - \ }\n ],\n \"summary\": - \"The Azure IoT extension for Azure CLI.\",\n \"version\": - \"0.8.9\"\n },\n \"sha256Digest\": \"080ea8af36c301bc2ed667eca5585f627c5a6f2de9a44eb903f83b156d2a2ee6\"\n - \ }\n ],\n \"azure-cli-ml\": [\n {\n \"downloadUrl\": - \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.20.0-py3-none-any.whl\",\n - \ \"filename\": \"azure_cli_ml-1.20.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 3 - Alpha\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"Programming Language - :: Python :: 3.7\",\n \"Programming Language :: Python - :: 3.8\"\n ],\n \"description_content_type\": - \"text/x-rst\",\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\",\n - \ \"license\": \"LICENSE.txt\"\n },\n - \ \"project_urls\": {\n \"Home\": - \"https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"Proprietary https://aka.ms/azureml-preview-sdk-license - \",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-cli-ml\",\n \"requires_python\": \">=3.5,<4\",\n - \ \"run_requires\": [\n {\n \"requires\": - [\n \"adal (>=1.2.1)\",\n \"azureml-cli-common - (~=1.20.0)\",\n \"docker (>=3.7.2)\",\n \"msrest - (>=0.6.6)\",\n \"pyyaml (>=5.1.0)\",\n \"requests - (>=2.21.0)\"\n ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureML - Command Module\",\n \"test_requires\": [\n {\n - \ \"requires\": [\n \"azure-keyvault\",\n - \ \"mock\",\n \"nose\",\n - \ \"unittest-xml-reporting\"\n ]\n - \ }\n ],\n \"version\": - \"1.20.0\"\n },\n \"sha256Digest\": \"de8fe760321a6ef79a87fe4e833f881529c96656a4583b22df377dbd50e8b2b8\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.5.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_cli_ml-1.5.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.28\",\n \"classifiers\": [\n \"Development - Status :: 3 - Alpha\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"Programming Language - :: Python :: 3.7\",\n \"Programming Language :: Python - :: 3.8\"\n ],\n \"description_content_type\": - \"text/x-rst\",\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\",\n - \ \"license\": \"LICENSE.txt\"\n },\n - \ \"project_urls\": {\n \"Home\": - \"https://docs.microsoft.com/azure/machine-learning/service/\"\n }\n - \ }\n },\n \"extras\": - [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"Proprietary https://aka.ms/azureml-preview-sdk-license \",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-cli-ml\",\n \"requires_python\": - \">=3.5,<4\",\n \"run_requires\": [\n {\n - \ \"requires\": [\n \"adal - (>=1.2.1)\",\n \"azureml-cli-common (~=1.5.0)\",\n - \ \"docker (>=3.7.2)\",\n \"msrest - (>=0.6.6)\",\n \"pyyaml (>=5.1.0)\",\n \"requests - (>=2.21.0)\"\n ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureML - Command Module\",\n \"test_requires\": [\n {\n - \ \"requires\": [\n \"azure-keyvault\",\n - \ \"mock\",\n \"nose\",\n - \ \"unittest-xml-reporting\"\n ]\n - \ }\n ],\n \"version\": - \"1.5.0\"\n },\n \"sha256Digest\": \"a535f01501a06f70d26a75f5ccde2d32640d3c7efec302fc2fc454bfb867e946\"\n - \ }\n ],\n \"azure-devops\": [\n {\n \"downloadUrl\": - \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20190805.1/azure_devops-0.12.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_devops-0.12.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.49\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.19\"\n },\n + \ \"sha256Digest\": \"ea42777c9a90295667bc3dc2154f3f3c9f122f884fd7dea661d4948d81dc0b63\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.21-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.21-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"VSTS_Social@microsoft.com\",\n \"name\": - \"Microsoft\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"distro (==1.3.0)\",\n \"msrest - (<0.7.0,>=0.6.0)\",\n \"python-dateutil (==2.7.3)\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Tools for managing Azure DevOps.\",\n \"version\": - \"0.12.0\"\n },\n \"sha256Digest\": \"2abdfd1b760e1968176cd4043e2db7edf951978c6a2182eb5e79bb0c8070af4c\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20200113.1/azure_devops-0.17.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_devops-0.17.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.69\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.21\"\n },\n + \ \"sha256Digest\": \"8035103b7eb04451b596d70d03f7b1685418e6679c143db5cf6ca70d91e65848\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.22-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.22-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"VSTS_Social@microsoft.com\",\n \"name\": - \"Microsoft\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"distro (==1.3.0)\",\n \"msrest - (<0.7.0,>=0.6.0)\",\n \"python-dateutil (==2.7.3)\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Tools for managing Azure DevOps.\",\n \"version\": - \"0.17.0\"\n },\n \"sha256Digest\": \"1e891afc8b6ee52c62c4f99802d77728ff60e89e4c08972325178cc4fdac6be9\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20200401.4/azure_devops-0.18.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_devops-0.18.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.2.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"VSTS_Social@microsoft.com\",\n - \ \"name\": \"Microsoft\",\n \"role\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"distro (==1.3.0)\",\n \"msrest - (<0.7.0,>=0.6.0)\",\n \"python-dateutil (==2.7.3)\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Tools for managing Azure DevOps.\",\n \"version\": - \"0.18.0\"\n },\n \"sha256Digest\": \"21fd9bf9c01a315184f11d7f709f354075118c298fd662472273cb003bfbe23e\"\n - \ }\n ],\n \"azure-firewall\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.1.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.1.3-py2.py3-none-any.whl\",\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.22\"\n },\n + \ \"sha256Digest\": \"d9673c7d1496e2d85d2b15ad1fc7b2e24101517d8714c4a1cc9f86175cf395a2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.23-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.23-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.1.3\"\n },\n - \ \"sha256Digest\": \"116c1324206e8aa0e7cffdd719a12e87b2977a061fcd9fb96ae4b6fbe223e93f\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.1.9-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.1.9-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.23\"\n },\n + \ \"sha256Digest\": \"1d5ad0d8d49f0cf13ffb65cbb3a60651dfa87a8b8b9537f7d9574d4bdc68c1d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.24-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.24-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.1.9\"\n },\n - \ \"sha256Digest\": \"f20c18b5b176dd39815dee4d344368774b58bb2f4f03c28b89ee08212e45856a\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.2.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.24\"\n },\n + \ \"sha256Digest\": \"4f2e624cc8e1a9ef653295b563d883f2fe58016ca1ba5b45485f17d60d410de7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.25-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.25-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.2.0\"\n },\n - \ \"sha256Digest\": \"7934510bc2ed4d83c8dbee7d2d22c3de2332b96020e2f45515035153f94a246f\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.3.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.3.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.25\"\n },\n + \ \"sha256Digest\": \"67e35a0b44ffa2c73c98e0ef8604705302707a383b1ffe37a5a9368f2d2a24bb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.26-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.26-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.3.0\"\n },\n - \ \"sha256Digest\": \"12e5f8567ba8a74988f50ec6ed3539fad5b9e491727b0bc2c16e7acc34f49423\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.3.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.3.1-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.26\"\n },\n + \ \"sha256Digest\": \"b0653d61f1b26184f2439bef551fb42055f9509ec4f4a3e805d20bce2f382cf8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.27-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.27-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.3.1\"\n },\n - \ \"sha256Digest\": \"32e10a4e96a891151959680ff3cbf3e28ea0cf38e49ac062c49c668d00e5d7d7\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.4.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.4.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.27\"\n },\n + \ \"sha256Digest\": \"327010762d4953215b870434fafd0f64f7c46bf6d41eafe147a7de202331e3d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.28-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.28-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.4.0\"\n },\n - \ \"sha256Digest\": \"5c79cedfc5abf134f4b47ad5d867ff5852d2ba17f710d44a2101fe0aa51b1a48\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.5.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.5.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.28\"\n },\n + \ \"sha256Digest\": \"6242d3de31d9fb51d7385e4b8b4880806a6df7057d552914ae114d6445440b9e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.29-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.29-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.5.0\"\n },\n - \ \"sha256Digest\": \"ceb70fe380937e5cb42998648a3218313b1425286705743275a808bb15d70d03\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.5.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.5.1-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.29\"\n },\n + \ \"sha256Digest\": \"4b433b98716ceb98545a1031ac06284ed06cdb454af009e486a30b32ec07b176\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.30-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.30-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.5.1\"\n },\n - \ \"sha256Digest\": \"40581d4aaf52a8a1f8deccf3be641385348251b34ffeb4c65193111150002699\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.6.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.30\"\n },\n + \ \"sha256Digest\": \"c7a0e4838eebb2a6ee5fafa97c361b73ccb66440e1e27f8d10b241de36c82afd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.31-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.31-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.6.0\"\n },\n - \ \"sha256Digest\": \"b22c81a341f1742ebb2c32c45af1470b12bfe2d03907d43206cf8d0860e058f6\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.6.1-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.31\"\n },\n + \ \"sha256Digest\": \"fed778a52ba3233267c1a957e59d6b62f40dfaac4483c3285fb1747659a180e1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.32-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.32-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.6.1\"\n },\n - \ \"sha256Digest\": \"4bf18f81d1b97d458181154f51803103745182cf68972180507aa8c291c60a94\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.6.2-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.32\"\n },\n + \ \"sha256Digest\": \"d2267981145c8c7494d0b74ed6e0629ebff46e44b632d5936c01eee885c0f9a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.33-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.33-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.6.2\"\n },\n - \ \"sha256Digest\": \"30539d78089ae73cbc012d487de7b9e9717096e2abf960ca4e7057ef77222a25\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.7.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.7.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.33\"\n },\n + \ \"sha256Digest\": \"a087c366a73df27aa0950067649a75cfb08432e331f95d497915e62c5291f59e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.34-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.34-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.7.0\"\n },\n - \ \"sha256Digest\": \"b6ac17ae8f18d9c702cece94822c0d00dbc13b7ed60a7831281e2e5391cefe39\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.8.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_firewall-0.8.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.34\"\n },\n + \ \"sha256Digest\": \"32a00c0a498ca140540ffd4a33685cbf9f188bee23c9b75d47a12ca342420102\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.35-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.35-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall - resources.\",\n \"version\": \"0.8.0\"\n },\n - \ \"sha256Digest\": \"897e1ff2ff69b6f2969dc97e97847a25b7a9060091024a96e0e2ca0876c0cd53\"\n - \ }\n ],\n \"azure-iot\": [\n {\n \"downloadUrl\": - \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.8/azure_iot-0.10.8-py3-none-any.whl\",\n - \ \"filename\": \"azure_iot-0.10.8-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.35\"\n },\n + \ \"sha256Digest\": \"ae1c4eb5688de501f34a1125495f012ddd6445aea1f4da3ac9b81d52c019a309\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.37-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.37-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -2523,97 +2457,56 @@ interactions: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-iot\",\n \"requires_python\": - \">=3.6,<4\",\n \"run_requires\": [\n {\n - \ \"requires\": [\n \"jsonschema - (==3.0.2)\",\n \"paho-mqtt (==1.5.0)\",\n \"setuptools\"\n - \ ]\n }\n ],\n - \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n - \ \"version\": \"0.10.8\"\n },\n \"sha256Digest\": - \"7088445bdecf5c1917c7eb2d41c3aa7c71d4e3911ccac5dc629066b518d5f875\"\n },\n - \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.9.7/azure_iot-0.9.7-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_iot-0.9.7-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.70\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.5\",\n \"Programming Language :: Python - :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n - \ \"Programming Language :: Python :: 3.8\",\n \"License - :: OSI Approved :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-iot\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"jsonschema (==3.0.2)\",\n \"paho-mqtt - (==1.5.0)\",\n \"setuptools\"\n ]\n - \ }\n ],\n \"summary\": - \"The Azure IoT extension for Azure CLI.\",\n \"version\": - \"0.9.7\"\n },\n \"sha256Digest\": \"1b4d44540a4feb487bb88aae4bdb4231045f0b23ad84f0e8792e859302183303\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.9.4/azure_iot-0.9.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"azure_iot-0.9.4-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.70\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.5\",\n \"Programming Language :: Python - :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n - \ \"Programming Language :: Python :: 3.8\",\n \"License - :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.37\"\n },\n + \ \"sha256Digest\": \"9f5cd1a94360c156d4baef8a7c8c6230f291807caa4857528ba57ff99ff5772d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.38-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.38-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"azure-iot\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"jsonschema (==3.0.2)\",\n \"paho-mqtt - (==1.5.0)\",\n \"setuptools\"\n ]\n - \ }\n ],\n \"summary\": - \"The Azure IoT extension for Azure CLI.\",\n \"version\": - \"0.9.4\"\n },\n \"sha256Digest\": \"bbf330942daac0035bd9bb9a0fdeaf297124ec8cd98e28e46adb2bf34070295b\"\n - \ }\n ],\n \"baremetal-infrastructure\": [\n {\n - \ \"downloadUrl\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension/releases/download/0.0.2/baremetal_infrastructure-0.0.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"baremetal_infrastructure-0.0.2-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.12.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.38\"\n },\n + \ \"sha256Digest\": \"8f3711491f7f6952e6cf50f517de94a0a3380c906f8e3a1c67e917c3ec63b7ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.39-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.39-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": \"azpycli@microsoft.com\",\n \"name\": @@ -2621,150 +2514,147 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"baremetal-infrastructure\",\n \"summary\": \"Additional - commands for working with BareMetal instances.\",\n \"version\": - \"0.0.2\"\n },\n \"sha256Digest\": \"171799d3db711b431365366cc26f3a5b186cb94381f01c2d5f7b3f392892d591\"\n - \ }\n ],\n \"blockchain\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/blockchain-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"blockchain-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.39\"\n },\n + \ \"sha256Digest\": \"249d7eacc77ec774ab656b4cc8bda7e0d9a1790ff7ec9851a3869f3dc3357869\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.40-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.40-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"blockchain\",\n \"summary\": \"Microsoft Azure Command-Line - Tools BlockchainManagementClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"ba0001dffaf39d133604c4281ed9c943f178a16a91d31f5889bf1587d9871049\"\n - \ }\n ],\n \"blueprint\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"blueprint-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.40\"\n },\n + \ \"sha256Digest\": \"6fb60461a49eb3534343eab73a665edf0dc3fa38f6e77972a15442fe35ef7ef5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.41-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.41-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Blueprint Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"98c1874110e2c77c62cf0d180133ea0b29ed08a86189ee292b909369597e694b\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.1.1-py3-none-any.whl\",\n - \ \"filename\": \"blueprint-0.1.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.41\"\n },\n + \ \"sha256Digest\": \"031601c9ef162925ab378ba7e86b843f258b8feddfe8e52bb8d4d6896d7504d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.42-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.42-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Blueprint Extension\",\n \"version\": \"0.1.1\"\n - \ },\n \"sha256Digest\": \"4508b6143f69e6ac388ad37b3e3af82f49c9b5625e12d341963cc2faf02e368f\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"blueprint-0.2.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.42\"\n },\n + \ \"sha256Digest\": \"70b557f454023cd8300da0081f34c97f8ab142d2a867507cc356d5d45e2f6585\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.44-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.44-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Blueprint Extension\",\n \"version\": \"0.2.0\"\n - \ },\n \"sha256Digest\": \"fcbbe61db268b9b5452b0d9055c5fc8b725a63193290957c2681de5fe2e6f1ff\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.2.1-py3-none-any.whl\",\n - \ \"filename\": \"blueprint-0.2.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.44\"\n },\n + \ \"sha256Digest\": \"bf9b38c16159417372b85e10874554ccc08b3a1d545ac098d864d88c832293e8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.45-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.45-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Blueprint Extension\",\n \"version\": \"0.2.1\"\n - \ },\n \"sha256Digest\": \"120bd04db8b31bbc5631ce086739763cca3144c2e314b8e1347f1d633e894a09\"\n - \ }\n ],\n \"cli-translator\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"cli_translator-0.1.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.45\"\n },\n + \ \"sha256Digest\": \"dce3edd35e9467e64db64ea6fe69a3360f51be02fcf273126c77bd2a79bc43c7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.46-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.46-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -2780,17 +2670,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"cli-translator\",\n \"summary\": \"Translate ARM template - to executable Azure CLI scripts.\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"8a4d19ed89cd63e1cc461715b7b0a1a989d2b480adc1b3b4f5747eef0327b85b\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"cli_translator-0.2.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.46\"\n },\n + \ \"sha256Digest\": \"9f811e0176fb309f40c0a6a2cfbd50c27aa4c19a80f518ad100e232c382da336\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.47-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.47-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -2806,17 +2696,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"cli-translator\",\n \"summary\": \"Translate ARM template - to executable Azure CLI scripts.\",\n \"version\": \"0.2.0\"\n - \ },\n \"sha256Digest\": \"ee07cbcde217d2b1ab226ef5aeea8e44510b704fb5e3976638dcf2f978f722e4\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.3.0-py3-none-any.whl\",\n - \ \"filename\": \"cli_translator-0.3.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.47\"\n },\n + \ \"sha256Digest\": \"a3d03b2ad7ae74468556b8142252e9e51f70e50ce5b1685c8188930b1e43a4ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.48-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.48-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -2832,18 +2722,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"cli-translator\",\n \"summary\": \"Translate ARM template - to executable Azure CLI scripts.\",\n \"version\": \"0.3.0\"\n - \ },\n \"sha256Digest\": \"9ea6162d37fc3390be4dce64cb05c5c588070104f3e92a701ab475473565a8a9\"\n - \ }\n ],\n \"codespaces\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/codespaces-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"codespaces-0.1.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.48\"\n },\n + \ \"sha256Digest\": \"f253e1df741ca7a9b22fef56a362606f9cd7f9e79d52d25fe36a8f76a2c0b52f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.49-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.49-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -2859,17 +2748,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"codespaces\",\n \"summary\": \"The Azure CLI Codespaces - extension\",\n \"version\": \"0.1.0\"\n },\n - \ \"sha256Digest\": \"d859256dac3177970bb631e149bcabd19d47fa9e972fb331662413b5cfe0ce32\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/codespaces-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"codespaces-0.2.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.49\"\n },\n + \ \"sha256Digest\": \"8ee88b5673e5d0b69176f8e6b1b5402854b6b28b763e749251414d3801650259\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.50-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.50-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -2885,17 +2774,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"codespaces\",\n \"summary\": \"The Azure CLI Codespaces - extension\",\n \"version\": \"0.2.0\"\n },\n - \ \"sha256Digest\": \"793f4dbf828efc9474cc2d6aa314b0968c25321978b0dceaf33005f02c5f1bd7\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/codespaces-0.2.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"codespaces-0.2.1-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.50\"\n },\n + \ \"sha256Digest\": \"1ee3571431ef61e5c66bc92ca9927b97d0eaf37e0c9290e55744fcf8bd8cf552\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.51-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.51-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -2911,17 +2800,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"codespaces\",\n \"summary\": \"The Azure CLI Codespaces - extension\",\n \"version\": \"0.2.1\"\n },\n - \ \"sha256Digest\": \"30569dd2124bec69abb6e6ae99c5a73059d767434bfe36d6f72a35b4f0e904f3\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/codespaces-0.3.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"codespaces-0.3.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.51\"\n },\n + \ \"sha256Digest\": \"9908869553f8438a8f184586396e2f2013871bbf49063b95a2ee4d354c539912\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.52-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.52-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -2937,18 +2826,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"codespaces\",\n \"summary\": \"The Azure CLI Codespaces - extension\",\n \"version\": \"0.3.0\"\n },\n - \ \"sha256Digest\": \"04d6fc97d8f1d49a54121198a32508118b7102aa69fa6bd31af25103a3af5a4c\"\n - \ }\n ],\n \"communication\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/communication-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"communication-0.1.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.52\"\n },\n + \ \"sha256Digest\": \"9446d0056caeabbfbac6a47ac88fdb67757db285c7063b5e8074befbc56338d0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.53-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.53-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -2964,289 +2852,155 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"communication\",\n \"summary\": \"Microsoft Azure Command-Line - Tools CommunicationServiceManagementClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"a16e8262b53791aad9e74a4f3d4804a5bafbe415df3c7651776e98b787bf6226\"\n - \ }\n ],\n \"connectedk8s\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.1.5-py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-0.1.5-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"k8connect@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.53\"\n },\n + \ \"sha256Digest\": \"d8e85ba210d276b5caee4d8049b1e0e3ea5b55d6b319a630cf2e523305e6e6cc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.54-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.54-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"kubernetes\",\n \"pycryptodome\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"0.1.5\"\n },\n - \ \"sha256Digest\": \"1b529c1fedb5db9dee3dc877ca036f5373d307ca8a07c278d07126531b1c55b6\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-0.2.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"k8connect@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.54\"\n },\n + \ \"sha256Digest\": \"957461fa774e2f4a041464a1c82b77edd6b380c6e77ae7a4ae84fba6402380a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.55-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.55-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"kubernetes\",\n \"pycryptodome\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"0.2.0\"\n },\n - \ \"sha256Digest\": \"d306355d5568f9f5b201db9f5bda28fc0b142c6b70164a87bf56974239749ebd\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.1-py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-0.2.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"k8connect@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.55\"\n },\n + \ \"sha256Digest\": \"6dffcadb2091abab3e6c682dcac05a8149f6887e04550342e1ae33109fd4266f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.56-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.56-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"kubernetes\",\n \"pycryptodome\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"0.2.1\"\n },\n - \ \"sha256Digest\": \"e910b1a0abee28121d5c216821c5d88cefc87030eb3068e699135314ecb0f8c9\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.3-py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-0.2.3-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"k8connect@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.56\"\n },\n + \ \"sha256Digest\": \"113eca94a2bda03fea6810bffbed83c1e1c5ab91d38b40001e8bab320d6449e2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.57-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.57-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"kubernetes\",\n \"pycryptodome\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"0.2.3\"\n },\n - \ \"sha256Digest\": \"9660bbd577c66af1bcebeeaaec9cabb61cd27a0b58c6fe9a9a795d6a73777ee9\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.4-py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-0.2.4-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"k8connect@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.57\"\n },\n + \ \"sha256Digest\": \"ef52483bd0f162fcc1fc0cced91a5804956c202bf0d3559e48f76a26241ace36\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.58-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.58-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"kubernetes\",\n \"pycryptodome\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"0.2.4\"\n },\n - \ \"sha256Digest\": \"4de66f7e8cecdfab8c91bf4f37347770fb17e087454159d3a5c81e0205f2da2c\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.5-py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-0.2.5-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"k8connect@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"kubernetes\",\n \"pycryptodome\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"0.2.5\"\n },\n - \ \"sha256Digest\": \"0c23ebd04c37b26219cd224134e8af675130cc346808ae008cd5cfc4f3b1bd84\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.6-py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-0.2.6-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"k8connect@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"kubernetes\",\n \"pycryptodome\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"0.2.6\"\n },\n - \ \"sha256Digest\": \"165411ce6ecdda8a4705bd9e93998b1ffdf6ddc88b01ed0ce12a3c100d1b9549\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.7-py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-0.2.7-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"k8connect@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"kubernetes (==11.0.0)\",\n \"pycryptodome - (==3.9.8)\"\n ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"0.2.7\"\n },\n - \ \"sha256Digest\": \"115bbeb79206632301a20dc4b1d6604f5c126c82c0ba1a9a58131a66da30a7dc\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.8-py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-0.2.8-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"k8connect@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"kubernetes (==11.0.0)\",\n \"pycryptodome - (==3.9.8)\"\n ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"0.2.8\"\n },\n - \ \"sha256Digest\": \"a0f8d12304b097a65d2b22f4e47faa6c6899e680bab77dfb41e72d2722e7e7d6\"\n - \ }\n ],\n \"connectedmachine\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"connectedmachine-0.1.1-py2.py3-none-any.whl\",\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.58\"\n },\n + \ \"sha256Digest\": \"9ad0566d2719940ac927723e65fd79586eae3ce86190b52cfcda3286c98ee30d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.59-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.59-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": \"azpycli@microsoft.com\",\n \"name\": @@ -3254,17 +3008,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"connectedmachine\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Connectedmachine Extension\",\n \"version\": - \"0.1.1\"\n },\n \"sha256Digest\": \"0f4d009da4e091aece74cd53833fe63e5af18d68fcf6308a08155ee5284f12fb\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"connectedmachine-0.2.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.59\"\n },\n + \ \"sha256Digest\": \"24253eef69ebb4622873771959e33b25d9612f3303cc924c84f8d6e175420f69\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.60-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.60-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -3280,17 +3034,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"connectedmachine\",\n \"summary\": \"Microsoft Azure - Command-Line Tools ConnectedMachine Extension\",\n \"version\": - \"0.2.0\"\n },\n \"sha256Digest\": \"b9a2f3ea3fb7a4c981fad30ff670ff3ca1f8fbef0aede36a8e8a20050b1a245d\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.3.0-py3-none-any.whl\",\n - \ \"filename\": \"connectedmachine-0.3.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.60\"\n },\n + \ \"sha256Digest\": \"c3d1861f4bfa276d714448198b71f482b26538162f0724bb5686343a084a0de6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.61-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.61-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -3306,38 +3060,43 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"connectedmachine\",\n \"summary\": \"Microsoft Azure - Command-Line Tools ConnectedMachine Extension\",\n \"version\": - \"0.3.0\"\n },\n \"sha256Digest\": \"591bed0d6a6251028471bac6a9ebf0f641d7765bf04b13271aae29c37491ba55\"\n - \ }\n ],\n \"connection-monitor-preview\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connection_monitor_preview-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"connection_monitor_preview-0.1.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.61\"\n },\n + \ \"sha256Digest\": \"98f1c161076a1b17889069fd8b654c4be14b5778088cf46a834d6be2a580dca7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.62-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.62-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.maxCliCoreVersion\": \"2.0.82\",\n \"azext.minCliCoreVersion\": - \"2.0.80\",\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connection-monitor-preview\"\n + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"connection-monitor-preview\",\n \"summary\": \"Microsoft - Azure Command-Line Connection Monitor V2 Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"9a796d5187571990d27feb9efeedde38c194f13ea21cbf9ec06131196bfd821d\"\n - \ }\n ],\n \"cosmosdb-preview\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"cosmosdb_preview-0.1.0-py2.py3-none-any.whl\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.62\"\n },\n + \ \"sha256Digest\": \"d1c27a01a402f252e01016181cf988a6da125d120bff168c4b4e85f994215d56\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.63-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.63-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -3348,23 +3107,22 @@ interactions: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"kakhandr@microsoft.com\",\n \"name\": - \"Kalyan khandrika\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"83be5a723d6a0063c4cd17db52a172ef8f9453435d316ef0abbd2ca2dd8e6ca8\"\n - \ }\n ],\n \"costmanagement\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/costmanagement-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"costmanagement-0.1.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.63\"\n },\n + \ \"sha256Digest\": \"cb5ca46f649303009a52c84ec1a9e8efc788e6e80989e07541f03c4edf02cc93\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.64-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.64-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -3380,53 +3138,50 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line - Tools CostManagementClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"d5c8be4d6f3e59a44da32af66f8855c24d9855c5b7bdd2f6571c8721afa20223\"\n - \ }\n ],\n \"csvmware\": [\n {\n \"downloadUrl\": - \"https://github.com/Azure/az-csvmware-cli/releases/download/0.3.0/csvmware-0.3.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"csvmware-0.3.0-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.64\"\n },\n + \ \"sha256Digest\": \"377db46a822434677059bae8f8584e408d42ba951a7e8b688e50579236864faf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.65-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.65-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"shimitta@microsoft.com\",\n \"name\": - \"Shivam Mittal\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"csvmware\",\n \"summary\": \"Manage Azure VMware Solution - by CloudSimple.\",\n \"version\": \"0.3.0\"\n },\n - \ \"sha256Digest\": \"dfb9767f05ac13c762ea9dc4327169e63a5c11879123544b200edb9a2c9a8a42\"\n - \ }\n ],\n \"custom-providers\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/custom_providers-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"custom_providers-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.65\"\n },\n + \ \"sha256Digest\": \"df53989fd97f37b5feb6bd54dca9c11308cd8ac6c77e012efccfb4c0111c2f18\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.66-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.66-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.4\",\n \"Programming - Language :: Python :: 3.5\",\n \"Programming Language - :: Python :: 3.6\",\n \"License :: OSI Approved :: + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": @@ -3435,27 +3190,25 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"custom-providers\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Custom Providers Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"7da462aaa336184b53d7b0b831c0fa77c4239dabe4e70fa4e500e250cf11a8ec\"\n - \ }\n ],\n \"databox\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/databox-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"databox-0.1.0-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"Programming Language :: Python :: 3.7\",\n \"Programming - Language :: Python :: 3.8\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.66\"\n },\n + \ \"sha256Digest\": \"82026c5aafd8f0c7f5e72524e708a4ed5c6485b574686d0cdded1104f20a82b3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.67-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.67-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": \"azpycli@microsoft.com\",\n \"name\": @@ -3463,133 +3216,81 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"databox\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DataBox Extension\",\n \"version\": \"0.1.0\"\n },\n - \ \"sha256Digest\": \"93cac253cd79728eb333715ae56111ffaa287c9d650e924ea07875ab36906974\"\n - \ }\n ],\n \"databricks\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"databricks-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExprimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DatabricksClient Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"36130c36c5d4dd7a76952c3d5b443cf2a76447ccce41094e0b625b85139a366a\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"databricks-0.2.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExprimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DatabricksClient Extension\",\n \"version\": \"0.2.0\"\n - \ },\n \"sha256Digest\": \"229272c5b6abcfc37abe86600db356c54ef664b6681b2f8b705aa50be472b1bc\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.3.0-py3-none-any.whl\",\n - \ \"filename\": \"databricks-0.3.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.67\"\n },\n + \ \"sha256Digest\": \"5bedccad76afa1af2196feea59de05fce27d6e917bd6580793ea553399bc2cd5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.68-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.68-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DatabricksClient Extension\",\n \"version\": \"0.3.0\"\n - \ },\n \"sha256Digest\": \"daf76d6aea0025d4783926d25fa813b74c1bcaa67bf8d937cc0d72529d06b9fe\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.4.0-py3-none-any.whl\",\n - \ \"filename\": \"databricks-0.4.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.68\"\n },\n + \ \"sha256Digest\": \"0501655b210d9b4d8812c9b1820f4860c9e26aa839652c6265ab201dbcfb46d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.69-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.69-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DatabricksClient Extension\",\n \"version\": \"0.4.0\"\n - \ },\n \"sha256Digest\": \"db716fa7a65bfb977ea4d6eb4c5ad56c5dfd39062f0d179c5d3aceff959c2a26\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.5.0-py3-none-any.whl\",\n - \ \"filename\": \"databricks-0.5.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.69\"\n },\n + \ \"sha256Digest\": \"371eec5e3dda3fd7b6ade5274603887bb2113c8e1833a30d49b08a413f3dede4\"\n + \ }\n ],\n \"alertsmanagement\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"fey@microsoft.com\",\n \"name\": \"Github:qwordy\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n @@ -3598,38 +3299,39 @@ interactions: \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DatabricksClient Extension\",\n \"version\": \"0.5.0\"\n - \ },\n \"sha256Digest\": \"9a7bca2c8828959ed048b883da9c2b62c1597f5c6bd475c5269c30a27282080f\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.6.0-py3-none-any.whl\",\n - \ \"filename\": \"databricks-0.6.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Alerts Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"80ab78574debff9d8a9106bac3929cb552adea1371ea24f06073669fef708fcd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"fey@microsoft.com\",\n \"name\": \"Github:qwordy\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/alertsmanagement\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DatabricksClient Extension\",\n \"version\": \"0.6.0\"\n - \ },\n \"sha256Digest\": \"46a77fcd4b31191ce2b2d58e58af982415ea91787628426bd2b3d567da273411\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.7.0-py3-none-any.whl\",\n - \ \"filename\": \"databricks-0.7.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Alerts Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"319f2855f71de21b22b721b4b02d50faf858a71c04ced52a4f4c1e4e114dffa6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -3645,16 +3347,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/alertsmanagement\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DatabricksClient Extension\",\n \"version\": \"0.7.0\"\n - \ },\n \"sha256Digest\": \"236f561c6a20141ae854d1dd64a6e5a0b4636d98517e5ba245401882cc7fbd92\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.7.1-py3-none-any.whl\",\n - \ \"filename\": \"databricks-0.7.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools AlertsManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"1881c770fca969d269840923f1a6332602ec0a031c7402aaefa3ac6babadf70c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -3670,124 +3373,44 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/alertsmanagement\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DatabricksClient Extension\",\n \"version\": \"0.7.1\"\n - \ },\n \"sha256Digest\": \"f086792f8910601c68fbe303f7831f77c79486fdf8e44039b1505d2344bac197\"\n - \ }\n ],\n \"datafactory\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/datafactory-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"datafactory-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DataFactoryManagementClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"f49b145f8125cde30aedf5080af90e26277ad1527cfb13cff0d72838298241d3\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datafactory-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"datafactory-0.2.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.11.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DataFactoryManagementClient Extension\",\n \"version\": - \"0.2.0\"\n },\n \"sha256Digest\": \"7cadaec354c8cbd4eae3465e385685807f619c8e7a2a093e6d4c68a9466b1e6a\"\n - \ }\n ],\n \"datashare\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/datashare-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"datashare-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"datashare\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DataShareManagementClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"803c3637f752b0fb77eb5272a544abafe44942ff920a020ff7ea179ace329342\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datashare-0.1.1-py3-none-any.whl\",\n - \ \"filename\": \"datashare-0.1.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools AlertsManagementClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"4ad81bafbcf4d0cc813918d3a370eda0ff4d7e8d410cadb1adee353e300d58ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.2-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.2.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alertsmanagement\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"datashare\",\n \"summary\": \"Microsoft Azure Command-Line - Tools DataShareManagementClient Extension\",\n \"version\": - \"0.1.1\"\n },\n \"sha256Digest\": \"c0a2b603c0abd320bc3df0a4d6c38945fd894737804690dad98896e2446763f4\"\n - \ }\n ],\n \"db-up\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.13-py2.py3-none-any.whl\",\n - \ \"filename\": \"db_up-0.1.13-py2.py3-none-any.whl\",\n \"metadata\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools AlertsManagementClient Extension\",\n \"version\": + \"0.2.2\"\n },\n \"sha256Digest\": \"2221f34f874532e4c5324f821a40a49f6cecca70b72e594144e6baf60b08508e\"\n + \ }\n ],\n \"alias\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/alias-0.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"alias-0.5.2-py2.py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.46\",\n \"classifiers\": [\n \"Development + \"2.0.50.dev0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -3799,89 +3422,57 @@ interactions: :: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"Cython (==0.29.6)\",\n \"mysql-connector-python - (==8.0.13)\",\n \"psycopg2-binary (==2.7.7)\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Additional commands to simplify Azure Database - workflows.\",\n \"version\": \"0.1.13\"\n },\n - \ \"sha256Digest\": \"df397272396c684972d1185e16439159427795b305f67e47fc37447a0c4d1257\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.14-py2.py3-none-any.whl\",\n - \ \"filename\": \"db_up-0.1.14-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.46\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": + \"t-chwong@microsoft.com\",\n \"name\": + \"Ernest Wong\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + (0.29.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"alias\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"Cython (==0.29.17)\",\n \"mysql-connector-python - (==8.0.13)\",\n \"psycopg2-binary (==2.8.5)\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Additional commands to simplify Azure Database - workflows.\",\n \"version\": \"0.1.14\"\n },\n - \ \"sha256Digest\": \"2f456a810be680ccc5dd7658b955410582063d56573ff3c38386d5ba2aacf7ee\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.15-py2.py3-none-any.whl\",\n - \ \"filename\": \"db_up-0.1.15-py2.py3-none-any.whl\",\n \"metadata\": + \ \"jinja2 (~=2.10)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for command aliases\",\n \"version\": \"0.5.2\"\n + \ },\n \"sha256Digest\": \"05f82d75026e780d27bd34a1be57f4ec0f425500d8ab4ee7e92fee07b944da33\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alias-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"alias-0.5.1-py2.py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.46\",\n \"classifiers\": [\n \"Development + \"2.0.31.dev0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"t-chwong@microsoft.com\",\n \"name\": + \"Ernest Wong\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + \"2.0\",\n \"name\": \"alias\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"Cython (==0.29.17)\",\n \"mysql-connector-python - (==8.0.13)\",\n \"psycopg2-binary (==2.8.5)\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Additional commands to simplify Azure Database - workflows.\",\n \"version\": \"0.1.15\"\n },\n - \ \"sha256Digest\": \"7c8db14999b2b5a4d4b9ae870562505a120896f39c64c20501502f5fdd897911\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"db_up-0.2.0-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.46\",\n \"classifiers\": [\n \"Development + \ \"jinja2 (~=2.10)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for command aliases\",\n \"version\": \"0.5.1\"\n + \ },\n \"sha256Digest\": \"81b9a7f1824bffcbd6e72680891476151dde868e030cdbf1bfd9135e1a8f3447\"\n + \ }\n ],\n \"amg\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.30.0\",\n + \ \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -3891,60 +3482,61 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"2770ea61e30390300de97c4a76424febfc46a24a62f250b0fd3625017cf133f3\"\n + \ }\n ],\n \"application-insights\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"aleldeib@microsoft.com\",\n \"name\": + \"Ace Eldeib\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"Cython (==0.29.17)\",\n \"mysql-connector-python - (==8.0.13)\",\n \"psycopg2-binary (==2.8.5)\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Additional commands to simplify Azure Database - workflows.\",\n \"version\": \"0.2.0\"\n },\n - \ \"sha256Digest\": \"3e5b22cfbe3a0ec63aba3040e541d6819dbb1fbdc5b49286edfd143c79a2b8cb\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.2.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"db_up-0.2.1-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.46\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"e5b8104da5d9f241a0599adeb3b1d2f910f00991f47d4f4c4095285de3a82f00\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"aleldeib@microsoft.com\",\n \"name\": + \"Ace Eldeib\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"Cython (==0.29.17)\",\n \"mysql-connector-python - (==8.0.14)\",\n \"psycopg2-binary (==2.8.5)\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Additional commands to simplify Azure Database - workflows.\",\n \"version\": \"0.2.1\"\n },\n - \ \"sha256Digest\": \"384b3806d49973cc91688ced691785d83cd7c3557016edc9161c151262ae2ab5\"\n - \ }\n ],\n \"deploy-to-azure\": [\n {\n - \ \"downloadUrl\": \"https://github.com/Azure/deploy-to-azure-cli-extension/releases/download/20200318.1/deploy_to_azure-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"deploy_to_azure-0.2.0-py2.py3-none-any.whl\",\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"8b4ef4870b16a15fd81af385c3dff762e7af52333e212a68b5ec5f42663a6078\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.5-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.60\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -3956,161 +3548,23 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"VSTS_Social@microsoft.com\",\n - \ \"name\": \"Microsoft\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/deploy-to-azure-cli-extension\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"deploy-to-azure\",\n \"summary\": \"Deploy to Azure using - Github Actions.\",\n \"version\": \"0.2.0\"\n },\n - \ \"sha256Digest\": \"f925080ee7abc3aef733d4c6313170bdedaa9569af1b95427383bc3c59e4ceb8\"\n - \ }\n ],\n \"desktopvirtualization\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"desktopvirtualization-0.1.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/desktopvirtualization\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"desktopvirtualization\",\n \"summary\": \"Microsoft Azure - Command-Line Tools DesktopVirtualizationAPIClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"d73c88fe0df98871a221495e000c39fbb22975fdc5066668c9ea0f578ff9a1a9\"\n - \ }\n ],\n \"dev-spaces\": [\n {\n \"downloadUrl\": - \"https://azuredevspacestools.blob.core.windows.net/azdssetup/LKS/dev_spaces-1.0.5-py2.py3-none-any.whl\",\n - \ \"filename\": \"dev_spaces-1.0.5-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.1.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azds-azcli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"dev-spaces\",\n \"summary\": \"Dev Spaces provides a - rapid, iterative Kubernetes development experience for teams.\",\n \"version\": - \"1.0.5\"\n },\n \"sha256Digest\": \"6d481b89be4fe8835143433bb0b7c5ba2aba230433bc9ba483c0d26c5ef682a0\"\n - \ },\n {\n \"downloadUrl\": \"https://azuredevspacestools.blob.core.windows.net/azdssetup/LKS/dev_spaces-1.0.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"dev_spaces-1.0.4-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.63\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azds-azcli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"dev-spaces\",\n \"summary\": \"Dev Spaces provides a - rapid, iterative Kubernetes development experience for teams.\",\n \"version\": - \"1.0.4\"\n },\n \"sha256Digest\": \"713600593e7e5c4e317e99d46110485c527740a74d90f01fa9b2ed52cdd42034\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/dev_spaces-1.0.6-py2.py3-none-any.whl\",\n - \ \"filename\": \"dev_spaces-1.0.6-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.1.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azds-azcli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dev-spaces\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"dev-spaces\",\n \"summary\": \"Dev Spaces provides a - rapid, iterative Kubernetes development experience for teams.\",\n \"version\": - \"1.0.6\"\n },\n \"sha256Digest\": \"71041808b27cd9d33fd905c5080c97f61291816f2dddd6dcdb2e66b9fb6ebf59\"\n - \ }\n ],\n \"dev-spaces-preview\": [\n {\n - \ \"downloadUrl\": \"https://azuredevspacestools.blob.core.windows.net/azdssetup/LKS/dev_spaces_preview-0.1.6-py2.py3-none-any.whl\",\n - \ \"filename\": \"dev_spaces_preview-0.1.6-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.maxCliCoreVersion\": \"2.0.62\",\n \"azext.minCliCoreVersion\": - \"2.0.32\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azds-azcli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"dev-spaces-preview\",\n \"summary\": \"Dev Spaces provides - a rapid, iterative Kubernetes development experience for teams.\",\n \"version\": - \"0.1.6\"\n },\n \"sha256Digest\": \"16661d66a3b4a04d429d456ba8a8d0b3b6ceb7b32691ff3a1dcc4144c005c798\"\n - \ }\n ],\n \"dms-preview\": [\n {\n \"downloadUrl\": - \"https://azcliorcas.blob.core.windows.net/azclipath/dms_preview-0.11.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"dms_preview-0.11.0-py2.py3-none-any.whl\",\n + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.5\"\n + \ },\n \"sha256Digest\": \"effa0a37f1e8b2506d4849a2208d69f06a6683809e5da809bea63bd0f940da2f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.6-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4122,22 +3576,23 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"arpavlic@microsoft.com\",\n - \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"dms-preview\",\n \"summary\": \"Support for new Database - Migration Service scenarios.\",\n \"version\": \"0.11.0\"\n - \ },\n \"sha256Digest\": \"ef19e5c19976506a8f8910ec04bc785ebeffb5a4c8764047e4e4d42f812b0845\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/dms_preview-0.12.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"dms_preview-0.12.0-py2.py3-none-any.whl\",\n + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.6\"\n + \ },\n \"sha256Digest\": \"271db7f2036eb245d3d00d5010468330e4ed97e7ed9756598e61a1960d37ac44\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.7-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4149,23 +3604,23 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"arpavlic@microsoft.com\",\n - \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"dms-preview\",\n \"summary\": \"Support for new Database - Migration Service scenarios.\",\n \"version\": \"0.12.0\"\n - \ },\n \"sha256Digest\": \"5e2fd9a8e413fd13a280fbba9964658a5569af2e49e802bd12116ec01e5dd0ae\"\n - \ }\n ],\n \"eventgrid\": [\n {\n \"downloadUrl\": - \"https://eventgridcliextension.blob.core.windows.net/cli/eventgrid-0.4.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"eventgrid-0.4.4-py2.py3-none-any.whl\",\n + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.7\"\n + \ },\n \"sha256Digest\": \"6cb8c879d0960e6f41e1273c309253d7d7ca42089694fcf5e500d0a27ae89b59\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.8-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4177,22 +3632,26 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"ahamad@microsoft.com\",\n - \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line - Tools EventGrid Command Module.\",\n \"version\": \"0.4.4\"\n - \ },\n \"sha256Digest\": \"c91ac92ab27a7127c9def51e096f749986b57acf209b357eaf1494d3dbfb33f9\"\n - \ },\n {\n \"downloadUrl\": \"https://eventgridcliextension.blob.core.windows.net/cli/eventgrid-0.4.6-py2.py3-none-any.whl\",\n - \ \"filename\": \"eventgrid-0.4.6-py2.py3-none-any.whl\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.8\"\n },\n \"sha256Digest\": \"f2f041e166f0b587e7c92252ef59e3bcecb8721f15c5e96f4496871a85a81f61\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.9-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4204,22 +3663,26 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"rgrandhi@microsoft.com\",\n - \ \"name\": \"Ramesh Grandhi.\",\n \"role\": + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line - Tools EventGrid Command Module.\",\n \"version\": \"0.4.6\"\n - \ },\n \"sha256Digest\": \"6ef9f9cf895b5dcdf9a38c2490a0c81e8254de4302dc7139fb6a4fcf2203318d\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.7-py2.py3-none-any.whl\",\n - \ \"filename\": \"eventgrid-0.4.7-py2.py3-none-any.whl\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.9\"\n },\n \"sha256Digest\": \"4ed371e2e02a31133bec6d416dd98c0de3e1ffbf56089e034abc36609c9dfa97\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.10-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4231,22 +3694,26 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"ahamad@microsoft.com\",\n - \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line - Tools EventGrid Command Module.\",\n \"version\": \"0.4.7\"\n - \ },\n \"sha256Digest\": \"f1bff60574d25ccc04eb2038081771b626651d144d9ab01be2b7410e1b02f56a\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.8-py2.py3-none-any.whl\",\n - \ \"filename\": \"eventgrid-0.4.8-py2.py3-none-any.whl\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.10\"\n },\n \"sha256Digest\": \"4f6ef254677ae32523f44af0f6b99bbdf6e5a8d1c894c7d2d72f4c8f8f359fb0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.11-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4258,22 +3725,26 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"ahamad@microsoft.com\",\n - \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line - Tools EventGrid Command Module.\",\n \"version\": \"0.4.8\"\n - \ },\n \"sha256Digest\": \"8f307569c920e1b75d4b6dfb47ad80c0cd49bf54a3a65139b57edff8a4776d45\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.9-py2.py3-none-any.whl\",\n - \ \"filename\": \"eventgrid-0.4.9-py2.py3-none-any.whl\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.11\"\n },\n \"sha256Digest\": \"ffb9b4daf395966226786cc55bce2beff7d9a22ccec739cb21910ff03f582e90\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.12-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4285,23 +3756,26 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"ahamad@microsoft.com\",\n - \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line - Tools EventGrid Command Module.\",\n \"version\": \"0.4.9\"\n - \ },\n \"sha256Digest\": \"1682f61dbb8350611dfeb1f2486158732264eeb35e22af8d7daf39839a720839\"\n - \ }\n ],\n \"express-route\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/express_route-0.1.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"express_route-0.1.3-py2.py3-none-any.whl\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.12\"\n },\n \"sha256Digest\": \"94ecdd71a1007df791a193e9273e902c39caa53dc965823c019d41cd679ee27c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.13-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4313,160 +3787,205 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/express-route\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.29.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"express-route\",\n \"summary\": \"Manage ExpressRoutes - with preview features.\",\n \"version\": \"0.1.3\"\n },\n - \ \"sha256Digest\": \"26ea9cbe5c1cc64ae0ea42ef4f550a1f7e8d91b7af5e04945c689e73b7499d7a\"\n - \ }\n ],\n \"express-route-cross-connection\": [\n - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/express_route_cross_connection-0.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"express_route_cross_connection-0.1.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.41\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/express-route-cross-connection\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"express-route-cross-connection\",\n \"summary\": \"Manage - customer ExpressRoute circuits using an ExpressRoute cross-connection.\",\n - \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\": - \"b83f723baae0ea04557a87f358fa2131baf15d45cd3aba7a9ab42d14ec80df38\"\n }\n - \ ],\n \"footprint\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/footprint-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"footprint-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.13\"\n },\n \"sha256Digest\": \"b1d5d31cfbd8a75595943d7248e585d63d0a1c6b43c69febbd7162239af98933\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.14-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.14-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/footprint\"\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"footprint\",\n \"summary\": \"Microsoft Azure Command-Line - Tools FootprintMonitoringManagementClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"69b0e9a19682f12c67af509071177e442349e1e2ae2f07f1e15d5a3f4136aa95\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/footprint-1.0.0-py3-none-any.whl\",\n - \ \"filename\": \"footprint-1.0.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.11.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.14\"\n },\n \"sha256Digest\": \"9e20c68a41b089691881813fa67596ee96141dda0575f57651417a5dc361d807\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.15-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/footprint\"\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"footprint\",\n \"summary\": \"Microsoft Azure Command-Line - Tools FootprintMonitoringManagementClient Extension\",\n \"version\": - \"1.0.0\"\n },\n \"sha256Digest\": \"4aa59288bf46cfd68519f1f7f63d3e33af16d80632b84c283cc7152129260b2c\"\n - \ }\n ],\n \"front-door\": [\n {\n \"downloadUrl\": - \"https://azurecliafd.blob.core.windows.net/azure-cli-extension/front_door-1.0.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"front_door-1.0.2-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.68\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.15\"\n },\n \"sha256Digest\": \"2173bccb328f61ebdb2ce1a3018856a4a6d2d179fe8d6b665e996203b0ac13a5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.16-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.16-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.16\"\n },\n \"sha256Digest\": \"6b13261d341818e8e491506265ff86b5a4517149e92a462de2ac05102afc923a\"\n + \ }\n ],\n \"appservice-kube\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.26.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"front-door\",\n \"summary\": \"Manage networking Front - Doors.\",\n \"version\": \"1.0.2\"\n },\n - \ \"sha256Digest\": \"a009045bab5dec0dfcd9715e2993ed0fa7a59b4bc6633d388415f482ed9cbc46\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"front_door-1.0.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.68\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"20f01eb95b1daadf21f589d3d953a756cb61259f279973880b4c0acbd4e05e27\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.26.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"front-door\",\n \"summary\": \"Manage networking Front - Doors.\",\n \"version\": \"1.0.3\"\n },\n - \ \"sha256Digest\": \"e483de77921937c210e03ed32e161d0384f162c8b253bd03fe8da1927b4160d7\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"front_door-1.0.4-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.68\",\n \"classifiers\": [\n \"Development + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"4b1b59fbac8dc68f390c48e9e8fa32676c041b857d2bf5f425bc8815e69b8708\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.26.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"aa67ced7e361002bf8bec125540c4f9eb216ba0ad7342336285b8bdd17f1ece0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.33.1\",\n \"azext.minCliCoreVersion\": + \"2.33.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -4483,16 +4002,102 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"front-door\",\n \"summary\": \"Manage networking Front - Doors.\",\n \"version\": \"1.0.4\"\n },\n - \ \"sha256Digest\": \"49f509e8b56f4a1ef1870bac7273376df5e7fbfe1c25e10cf236e9448d66683c\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.5-py3-none-any.whl\",\n - \ \"filename\": \"front_door-1.0.5-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"e972d2e31eacf83f8ceddc7a4db88e72af71238cdfe6cb6772742be163a9230f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.4\"\n },\n \"sha256Digest\": \"96156079aa1128cd5819d353aa27434b4c028f6b525275a136092c5c2b02af4f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.5\"\n },\n \"sha256Digest\": \"d380339170ffdfcdd1e26336da8a3586761b0268f959476f0ecdc50a6365160d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.6\"\n },\n \"sha256Digest\": \"8bf69f06efb9f47aad181f1917f9148c10ab3df6ae1de5b584482a8141727b05\"\n + \ }\n ],\n \"arcappliance\": [\n {\n \"downloadUrl\": + \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.1.48-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-0.1.48-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4503,21 +4108,26 @@ interactions: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"appliance@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"front-door\",\n \"summary\": \"Manage networking Front - Doors.\",\n \"version\": \"1.0.5\"\n },\n - \ \"sha256Digest\": \"cd55a87740de19cbd66444bdb398fd4a64115aeff92d52d2704a19ea2f083c60\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.6-py3-none-any.whl\",\n - \ \"filename\": \"front_door-1.0.6-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==11.0.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"0.1.48\"\n },\n + \ \"sha256Digest\": \"d700ad923f36ae9b1e50910839fdaeb5941a63abf0e5de6b3d2f6543fcf3821d\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.2.16-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-0.2.16-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4528,21 +4138,26 @@ interactions: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"appliance@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"front-door\",\n \"summary\": \"Manage networking Front - Doors.\",\n \"version\": \"1.0.6\"\n },\n - \ \"sha256Digest\": \"fbf965d7146884a87f481138dc06153dc95fd486f9dfeb40c1f11ce4667e203e\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.7-py3-none-any.whl\",\n - \ \"filename\": \"front_door-1.0.7-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==11.0.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"0.2.16\"\n },\n + \ \"sha256Digest\": \"3f528b71c913ba0daf69fd048211ccf52428a2c8f9f48d39281d3b9fc88c0c06\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.2.18-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-0.2.18-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4553,21 +4168,26 @@ interactions: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"appliance@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"front-door\",\n \"summary\": \"Manage networking Front - Doors.\",\n \"version\": \"1.0.7\"\n },\n - \ \"sha256Digest\": \"9a97ac67c089d1e3a753fa55fa80e44b8f8a89bcae42442c19e34b035ae96231\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.8-py3-none-any.whl\",\n - \ \"filename\": \"front_door-1.0.8-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==11.0.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"0.2.18\"\n },\n + \ \"sha256Digest\": \"8d273078acbfad02639d93796e97be93438a4efe962207ea0e319207911bf5aa\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.2.21-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-0.2.21-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -4578,51 +4198,124 @@ interactions: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"appliance@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"front-door\",\n \"summary\": \"Manage networking Front - Doors.\",\n \"version\": \"1.0.8\"\n },\n - \ \"sha256Digest\": \"ccc7b5eba917945af589fed41dd6435eb1fe96385ae0a80c1b3bbb4db03b77a5\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.9-py3-none-any.whl\",\n - \ \"filename\": \"front_door-1.0.9-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==11.0.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"0.2.21\"\n },\n + \ \"sha256Digest\": \"d8ba007fbb6bcdf7f2c44e8185a68abc6c150bad5f2740134837af94dd133e5b\"\n + \ }\n ],\n \"arcdata\": [\n {\n \"downloadUrl\": + \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"front-door\",\n \"summary\": \"Manage networking Front - Doors.\",\n \"version\": \"1.0.9\"\n },\n - \ \"sha256Digest\": \"064aa0c647e0dd320fd1eba50257387fd27e125838a2cf5b58121cc1c5eefc45\"\n - \ }\n ],\n \"fzf\": [\n {\n \"downloadUrl\": - \"https://pahealy.blob.core.windows.net/azext-fzf/fzf-1.0.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"fzf-1.0.2-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.isPreview\": - false,\n \"azext.maxCliCoreVersion\": \"2.99.0\",\n \"azext.minCliCoreVersion\": - \"2.9.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.0\"\n + \ },\n \"sha256Digest\": \"26e67d2d3920902c12330a53f831d7916a1461926c0efd3b7929416bd04c78b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.3.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.3.1\"\n + \ },\n \"sha256Digest\": \"c7040d903665c23b592462225ad32bdff90af40a99fa73ba440b87857c3e1e5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.3.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.3.0\"\n + \ },\n \"sha256Digest\": \"abb61b170c3b830212f12bcb199e5d5106e7cb6ff880b7f7793ce1359667d072\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.2.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language :: Python :: 3.6\",\n \"Programming Language :: Python @@ -4630,25 +4323,32 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"patrick.healy@microsoft.com\",\n - \ \"name\": \"Patrick W. Healy\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/phealy/azure-cli-fzf\"\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"fzf\",\n \"summary\": \"Microsoft Azure Command-Line - Tools fzf Extension\",\n \"version\": \"1.0.2\"\n },\n - \ \"sha256Digest\": \"87fc41624d52af36251c67f8f307e4e3b3789f8664e917d6d5bf4305fbb64e6d\"\n - \ }\n ],\n \"guestconfig\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/guestconfig-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"guestconfig-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.2.3\"\n + \ },\n \"sha256Digest\": \"b4757151ad2796cac8fcc43a363c0fbbf5de270f043d8fd8ccd51b377abfd61c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.2.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language :: Python :: 3.6\",\n \"Programming Language :: Python @@ -4656,127 +4356,98 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"dpgswdist@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/guestconfig\"\n + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"guestconfig\",\n \"summary\": \"Microsoft Azure Command-Line - Tools GuestConfigurationClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"0cf21ef88d49458157dae77e5bb25dfdfff8c12e76d15a19d468b408f4ab61c5\"\n - \ }\n ],\n \"hack\": [\n {\n \"downloadUrl\": - \"https://azhackcli.blob.core.windows.net/whl/hack-0.4.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"hack-0.4.2-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.2.2\"\n + \ },\n \"sha256Digest\": \"2011cf5d186b713df3b14c09cfb63e52e843c015f0cc4a7ff558b161c9e225cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.2.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"chrhar@microsoft.com\",\n - \ \"name\": \"Christopher Harrison\",\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"hack\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Hack Extension\",\n \"version\": \"0.4.2\"\n },\n - \ \"sha256Digest\": \"6b91fae1e3f102bcafd342055e2c743af7231925f2a3a9878db486869f97499c\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hack-0.4.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"hack-0.4.3-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.2.1\"\n + \ },\n \"sha256Digest\": \"0d5bfcbed4e418f5ce79377a2e392f5f61abb0d5e6f8ce164940b83b5cfdbcd5\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"Programming Language :: Python :: 3.7\",\n \"Programming - Language :: Python :: 3.8\",\n \"Programming Language - :: Python :: 3.9\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"chrhar@microsoft.com\",\n \"name\": \"Christopher - Harrison\",\n \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hack\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"hack\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Hack Extension\",\n \"version\": \"0.4.3\"\n },\n - \ \"sha256Digest\": \"bd608002fbab185c137cbbe4de73f7dbc1a438236c96ea53ddc22e27aa7fa013\"\n - \ }\n ],\n \"hardware-security-modules\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hardware_security_modules-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"hardware_security_modules-0.1.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"hardware-security-modules\",\n \"summary\": \"Microsoft - Azure Command-Line Tools AzureDedicatedHSMResourceProvider Extension\",\n - \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\": - \"dafa526a4bce243940432e91f6f28d2254bdcc1a90eaa0f097493f9d79a23b36\"\n }\n - \ ],\n \"healthcareapis\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.1.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"healthcareapis-0.1.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"extensions\": {\n \"python.details\": + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"dpgswdist@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line - Tools HealthCareApis Extension\",\n \"version\": \"0.1.3\"\n - \ },\n \"sha256Digest\": \"2bc0f7c9642cb0afe682218761205d2b7ffe842a397fd679ad462506f2846ce0\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"healthcareapis-0.2.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==2.10.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"308d953ecabc7b59fa6b3e545404279bc18376b8c129580124c443e866e3cb54\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.1.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language :: Python :: 3.6\",\n \"Programming Language :: Python @@ -4784,25 +4455,32 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"dpgswdist@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line - Tools HealthcareApisManagementClient Extension\",\n \"version\": - \"0.2.0\"\n },\n \"sha256Digest\": \"460655a4287a7e4ecf69fac32c95628df9ce776a802f061a81f54f7d89aca0ba\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.0-py3-none-any.whl\",\n - \ \"filename\": \"healthcareapis-0.3.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.11.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==2.10.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.1.3\"\n + \ },\n \"sha256Digest\": \"63573d92742ab3ff2cdb73de39ea17821d3044503382c528e39a28f6224b8acb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language :: Python :: 3.6\",\n \"Programming Language :: Python @@ -4810,25 +4488,32 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"dpgswdist@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line - Tools HealthcareApisManagementClient Extension\",\n \"version\": - \"0.3.0\"\n },\n \"sha256Digest\": \"6dcb79765e87026db4f6e09f4a85e9d6a523fb9928a5586c3cb5e16cc1e1f3be\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.1-py3-none-any.whl\",\n - \ \"filename\": \"healthcareapis-0.3.1-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.11.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==2.10.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.1.2\"\n + \ },\n \"sha256Digest\": \"ffcb38d3653195dc30ce93066b5aff3ff7037be81232db4afcb11ef99f3de844\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language :: Python :: 3.6\",\n \"Programming Language :: Python @@ -4836,133 +4521,186 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"dpgswdist@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line - Tools HealthcareApisManagementClient Extension\",\n \"version\": - \"0.3.1\"\n },\n \"sha256Digest\": \"c1804f41528fdfb2ccc355a3a7e28c961fb1a783c767d855b886db0483897e33\"\n - \ }\n ],\n \"hpc-cache\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"hpc_cache-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.3.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-mgmt-azurearcdata\",\n + \ \"colorama (==0.4.4)\",\n \"jinja2 + (==2.10.3)\",\n \"jsonpatch (==1.24)\",\n \"jsonpath-ng + (==1.4.3)\",\n \"jsonschema (==3.2.0)\",\n + \ \"kubernetes (==12.0.1)\",\n \"ndjson + (==0.3.1)\",\n \"pem (==21.2.0)\",\n \"pydash + (==4.8.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Tools for managing ArcData.\",\n \"version\": + \"1.1.1\"\n },\n \"sha256Digest\": \"1cb2dcfadd539cdc7f6acbfcd44db5f7d380ec9a896f5eaa47ebabbe89786d07\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"dpgswdist@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line - Tools StorageCache Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"0961683cd21f09622399f54b62389fc5d529f861c2280c4751ae977c83da9ae0\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"hpc_cache-0.1.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.3.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-mgmt-azurearcdata\",\n + \ \"jinja2 (==2.10.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"dedb4ac6de099d8fd565d427ac339cc23a10be76ca0147f6babec6096fc377e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"dpgswdist@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line - Tools StorageCache Extension\",\n \"version\": \"0.1.1\"\n - \ },\n \"sha256Digest\": \"16f3648054ccadb1d8e3110ac7febd238f1583b1c559cd19395096e9b7588be4\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"hpc_cache-0.1.2-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.3.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jinja2 + (==2.10.3)\",\n \"jsonpatch (==1.24)\",\n \"jsonpath-ng + (==1.4.3)\",\n \"jsonschema (==3.2.0)\",\n + \ \"kubernetes (==12.0.1)\",\n \"ndjson + (==0.3.1)\",\n \"pem (==21.2.0)\",\n \"pydash + (==4.8.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Tools for managing ArcData.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"4045fabe61c0287003a4626d0f8d27c2839b3575a63ce2bdfe57ed214171acf8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-0.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-0.0.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 1 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Programming Language + :: Python\",\n \"Programming Language :: Python :: + 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"dpgswdist@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/sql/sql-server/azure-arc/overview?view=sql-server-ver15\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jinja2 + (==2.10.3)\",\n \"jsonpatch (==1.24)\",\n \"jsonpath-ng + (==1.4.3)\",\n \"jsonschema (==3.2.0)\",\n + \ \"kubernetes (==12.0.1)\",\n \"ndjson + (==0.3.1)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"0.0.2\"\n + \ },\n \"sha256Digest\": \"d14aa3046b7a9c3bca67c735eeb35fb24ff5ed240212724d3f229eb23280abae\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-0.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-0.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"dpgswdist@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\n + {\n \"Home\": \"https://docs.microsoft.com/en-us/sql/sql-server/azure-arc/overview?view=sql-server-ver15\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line - Tools StorageCache Extension\",\n \"version\": \"0.1.2\"\n - \ },\n \"sha256Digest\": \"6ca5b80e7c705bca73ec1ecfc791d82721fa19d12e4449be4d27933901a9e471\"\n - \ }\n ],\n \"image-copy-extension\": [\n {\n - \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/48/6f/7fa75dfa7c015c0b58f18473b4aa8d565be8606d9740d4442b32b17df913/image_copy_extension-0.2.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"image_copy_extension-0.2.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.24\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jinja2 + (==2.10.3)\",\n \"jsonpatch (==1.24)\",\n \"jsonpath-ng + (==1.4.3)\",\n \"kubernetes (==11.0.0)\",\n + \ \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"0.0.1\"\n + \ },\n \"sha256Digest\": \"e727a7bf123aa15b406455f268be8a906907d6d32bd314d122b83d006767adc8\"\n + \ }\n ],\n \"attestation\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/attestation-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"attestation-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"tamir.kamara@microsoft.com\",\n \"name\": - \"Tamir Kamara\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/attestation\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"image-copy-extension\",\n \"summary\": \"Support for - copying managed vm images between regions\",\n \"version\": - \"0.2.3\"\n },\n \"sha256Digest\": \"8a88c2600f9dad5f38ca6128ab8efaa38a974fbb7fe8c875fc50b7bb7d37bd54\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"image_copy_extension-0.2.4-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.24\",\n \"classifiers\": [\n \"Development + \"attestation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AttestationManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"1d4e9b832a3f50b33428d565478a2e655c81d49277c07dc909f1485b62ba5372\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/attestation-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"attestation-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -4972,22 +4710,28 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"tamir.kamara@microsoft.com\",\n - \ \"name\": \"Tamir Kamara\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/attestation\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"image-copy-extension\",\n \"summary\": \"Support for - copying managed vm images between regions\",\n \"version\": - \"0.2.4\"\n },\n \"sha256Digest\": \"174e2437b20a979257a93017209ba1ff5d1969ea1eca7f3cbe57e8d11c75f4f4\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.5-py2.py3-none-any.whl\",\n - \ \"filename\": \"image_copy_extension-0.2.5-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.24\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"attestation\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pyjwt (==1.7.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AttestationManagementClient Extension\",\n + \ \"version\": \"0.2.0\"\n },\n \"sha256Digest\": + \"895328b45d8bcfe45e4937885572cd1f39d23bc49f88314713a462bf1a367cc9\"\n }\n + \ ],\n \"authV2\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/authV2-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"authV2-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -4997,22 +4741,23 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"tamir.kamara@microsoft.com\",\n - \ \"name\": \"Tamir Kamara\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/authV2\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"image-copy-extension\",\n \"summary\": \"Support for - copying managed vm images between regions\",\n \"version\": - \"0.2.5\"\n },\n \"sha256Digest\": \"14216b9664365a03ccd6d2cb469a32ab1e38f1d1e9b2735d27725cdc5300b148\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.6-py2.py3-none-any.whl\",\n - \ \"filename\": \"image_copy_extension-0.2.6-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.24\",\n \"classifiers\": [\n \"Development + \"authV2\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Authv2 Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"240b7f5f1ac3fc2a72586cde8ff8cc2d2f469a1b6c6378822129b33233c0d7b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/authV2-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"authV2-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -5022,22 +4767,24 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"tamir.kamara@microsoft.com\",\n - \ \"name\": \"Tamir Kamara\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/authV2\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"image-copy-extension\",\n \"summary\": \"Support for - copying managed vm images between regions\",\n \"version\": - \"0.2.6\"\n },\n \"sha256Digest\": \"69cc6fac34625677c94fb276dc97caca8769295db51dc480da4b194a0ec94720\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.7-py2.py3-none-any.whl\",\n - \ \"filename\": \"image_copy_extension-0.2.7-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.24\",\n \"classifiers\": [\n \"Development + \"authV2\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Authv2 Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"0beb143e3ca4f4f9706877d416b07cb9f9796bd696a0a642825d8ca48217edb0\"\n + \ }\n ],\n \"automation\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/automation-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"automation-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.13.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -5047,22 +4794,23 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"tamir.kamara@microsoft.com\",\n - \ \"name\": \"Tamir Kamara\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/automation\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"image-copy-extension\",\n \"summary\": \"Support for - copying managed vm images between regions\",\n \"version\": - \"0.2.7\"\n },\n \"sha256Digest\": \"565cf4411a6b12d2940365a7d4d578422709a2c38f95a253e5f6e82ab9bd6bdd\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.8-py2.py3-none-any.whl\",\n - \ \"filename\": \"image_copy_extension-0.2.8-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.24\",\n \"classifiers\": [\n \"Development + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"779f996ffab9fd76438d8938216fcbeb6f9aecad3a23bd2097731182607e4d7a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"automation-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.13.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -5072,77 +4820,48 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"tamir.kamara@microsoft.com\",\n - \ \"name\": \"Tamir Kamara\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/image-copy\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"image-copy-extension\",\n \"summary\": \"Support for - copying managed vm images between regions\",\n \"version\": - \"0.2.8\"\n },\n \"sha256Digest\": \"b57f554b77e68d414b9f79016311a3e5c180f76206557909319edcad9ada5240\"\n - \ }\n ],\n \"import-export\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/import_export-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"import_export-0.1.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/automation\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"import-export\",\n \"summary\": \"Microsoft Azure Command-Line - Tools StorageImportExport Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"6a5a1a1a23c7ff90e01b1f0a33d04874d750845e6cda56badce4ce99a518ef55\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/import_export-0.1.1-py3-none-any.whl\",\n - \ \"filename\": \"import_export-0.1.1-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"99640d86e3596a806ea2eca6b8f67f02fea74951ffa0606bff60fbfc88da7d6e\"\n + \ }\n ],\n \"azure-batch-cli-extensions\": [\n {\n + \ \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-2.5.3/azure_batch_cli_extensions-2.5.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-2.5.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.0.58\",\n \"azext.minCliCoreVersion\": \"2.0.24\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"import-export\",\n \"summary\": \"Microsoft Azure Command-Line - Tools StorageImportExport Extension\",\n \"version\": \"0.1.1\"\n - \ },\n \"sha256Digest\": \"0680948362e12138c9582e68e471533482749bd660bfe3c8c2a4d856e90927b0\"\n - \ }\n ],\n \"interactive\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"interactive-0.4.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.maxCliCoreVersion\": \"2.0.61\",\n \"azext.minCliCoreVersion\": - \"2.0.50.dev0\",\n \"extensions\": {\n \"python.details\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<4.1,>=4.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"2.5.3\"\n },\n \"sha256Digest\": \"cc30b985edd5de0233d4fd283cfa29390d119c223b2f819ca36e071f759d5485\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-3.0.4/azure_batch_cli_extensions-3.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-3.0.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.1.0\",\n \"azext.minCliCoreVersion\": \"2.0.59\",\n + \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n @@ -5150,20 +4869,31 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<5.1,>=5.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": - \"0.4.1\"\n },\n \"sha256Digest\": \"22b940493972b77c62606b0ae3c834283209d8619bb740e69dd115530a328e3b\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"interactive-0.4.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"extensions\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"3.0.4\"\n },\n \"sha256Digest\": \"9e76b7242934ceb8ae48c65f5469312522a034f4abf66d4771fb721aee04a502\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-4.0.0/azure_batch_cli_extensions-4.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-4.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.1.0\",\n \"azext.minCliCoreVersion\": \"2.0.69\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": \"azpycli@microsoft.com\",\n \"name\": @@ -5171,29 +4901,22 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<6.1,>=6.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": - \"0.4.3\"\n },\n \"sha256Digest\": \"ba78a45ec9753a42e1e805dc9cf3b309df264c6201dfd1dabcc6c00b22599fe8\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"interactive-0.4.4-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n - \ ],\n \"extensions\": {\n \"python.details\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"4.0.0\"\n },\n \"sha256Digest\": \"3045dc24858b9acfed13a517038830ddc643aef779de0d14617c49c9fd2dcbd5\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-5.0.1/azure_batch_cli_extensions-5.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-5.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"3.0.0\",\n \"azext.minCliCoreVersion\": \"2.0.73\",\n + \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n @@ -5201,39 +4924,22 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<7.1,>=7.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": - \"0.4.4\"\n },\n \"sha256Digest\": \"1e66bc1f117fac90f320c072a08f527b8570f5a6725670a1fb4d05f2c7eb7a31\"\n - \ }\n ],\n \"internet-analyzer\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\",\n - \ \"filename\": \"internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"internet-analyzer\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Internet Analyzer Extension\",\n \"version\": - \"0.1.0rc5\"\n },\n \"sha256Digest\": \"7e5ee753abece69fb917f3a96be4a3d8117ffbbbd75d18c2e54c74c0fe2b952e\"\n - \ }\n ],\n \"ip-group\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/ip_group-0.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"ip_group-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"extensions\": {\n \"python.details\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"5.0.1\"\n },\n \"sha256Digest\": \"bf07b63782e0f6446302971afaf8b5ec5bb6dbc00449bf3276511993abf8cd61\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-6.0.0/azure_batch_cli_extensions-6.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-6.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"3.0.0\",\n \"azext.minCliCoreVersion\": \"2.0.74\",\n + \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n @@ -5241,211 +4947,170 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"ip-group\",\n \"summary\": \"Microsoft Azure Command-Line - Tools IpGroup Extension\",\n \"version\": \"0.1.1\"\n },\n - \ \"sha256Digest\": \"477d7f58fe44a4ecb0ced3497262d7ccd8bb7677d70582b6fccf645e91d25ad4\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ip_group-0.1.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"ip_group-0.1.2-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<8.1,>=8.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"6.0.0\"\n },\n \"sha256Digest\": \"6955a0d960d9c4df6935b9058f67c8c42872c8716d8d2a4f76e9e6ce72eb66ab\"\n + \ }\n ],\n \"azure-cli-ml\": [\n {\n \"downloadUrl\": + \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.41.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_cli_ml-1.41.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 3 - Alpha\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n \ \"Programming Language :: Python :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \"Programming Language - :: Python :: 3.7License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\"\n + \ ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"description\": \"DESCRIPTION.rst\",\n + \ \"license\": \"LICENSE.txt\"\n },\n + \ \"project_urls\": {\n \"Home\": + \"https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"ip-group\",\n \"summary\": \"Microsoft Azure Command-Line - Tools IpGroup Extension\",\n \"version\": \"0.1.2\"\n },\n - \ \"sha256Digest\": \"afba2d8a8a612863b63f504d6cff6d559610b961e4c77dc2fd49b9fe03ec67a2\"\n - \ }\n ],\n \"k8sconfiguration\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.1.7-py2.py3-none-any.whl\",\n - \ \"filename\": \"k8sconfiguration-0.1.7-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"k8sconfiguration\",\n \"summary\": \"Microsoft Azure - Command-Line Tools K8sconfiguration Extension\",\n \"version\": - \"0.1.7\"\n },\n \"sha256Digest\": \"6440f1f1bebda0b3288ab95654a107e3f803d1ad2a23276cd5e27abe6a71dd60\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.1.8-py2.py3-none-any.whl\",\n - \ \"filename\": \"k8sconfiguration-0.1.8-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"k8sconfiguration\",\n \"summary\": \"Microsoft Azure - Command-Line Tools K8sconfiguration Extension\",\n \"version\": - \"0.1.8\"\n },\n \"sha256Digest\": \"9d4b9d9dfcd8793297af670de10254804f5ce6d1bac6b0ad8e872cc5fdc5f761\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"k8sconfiguration-0.2.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"paramiko (~=2.6.0)\",\n \"pycryptodome - (~=3.9.8)\"\n ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration - Extension\",\n \"version\": \"0.2.0\"\n },\n - \ \"sha256Digest\": \"ae3ec26beb84e821a169f02479cfc337b82141738bef7a0b09422d3676add9ae\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"k8sconfiguration-0.2.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"paramiko (~=2.6.0)\",\n \"pycryptodome - (~=3.9.8)\"\n ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration - Extension\",\n \"version\": \"0.2.1\"\n },\n - \ \"sha256Digest\": \"a9ae3e56d1289c340ebcb2790775801a9a932d6f5edba66689bada001e35f9ba\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"k8sconfiguration-0.2.2-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"Proprietary https://aka.ms/azureml-preview-sdk-license + \",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-cli-ml\",\n \"requires_python\": \">=3.5,<4\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"adal (>=1.2.1)\",\n \"azureml-cli-common + (~=1.41)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=3.7.2)\",\n \"msrest + (>=0.6.6)\",\n \"pyyaml (>=5.1.0)\",\n \"requests + (>=2.21.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureML + Command Module\",\n \"test_requires\": [\n {\n + \ \"requires\": [\n \"azure-keyvault\",\n + \ \"mock\",\n \"nose\",\n + \ \"unittest-xml-reporting\"\n ]\n + \ }\n ],\n \"version\": + \"1.41.0\"\n },\n \"sha256Digest\": \"c3c5d2bb5ecd63d0d416bf9bc61b9f12df247d2f558957047ffc431e42fcb6b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.37.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_cli_ml-1.37.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 3 - Alpha\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\"\n + \ ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\",\n + \ \"license\": \"LICENSE.txt\"\n },\n + \ \"project_urls\": {\n \"Home\": + \"https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"paramiko (~=2.6.0)\",\n \"pycryptodome - (~=3.9.8)\"\n ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration - Extension\",\n \"version\": \"0.2.2\"\n },\n - \ \"sha256Digest\": \"8692905679d9a800326aea7698818778b6f0ce4761232e20e8fc39c67ccb28d3\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"k8sconfiguration-0.2.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": + (0.30.0)\",\n \"license\": \"Proprietary https://aka.ms/azureml-preview-sdk-license + \",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-cli-ml\",\n \"requires_python\": \">=3.5,<4\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"adal (>=1.2.1)\",\n \"azureml-cli-common + (~=1.37.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=3.7.2)\",\n \"msrest + (>=0.6.6)\",\n \"pyyaml (>=5.1.0)\",\n \"requests + (>=2.21.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureML + Command Module\",\n \"test_requires\": [\n {\n + \ \"requires\": [\n \"azure-keyvault\",\n + \ \"mock\",\n \"nose\",\n + \ \"unittest-xml-reporting\"\n ]\n + \ }\n ],\n \"version\": + \"1.37.0\"\n },\n \"sha256Digest\": \"7dc527ad16592a775d79341d7711df31497b66bf616010890bd1f8831c81012d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_cli_ml-1.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.2\",\n \"azext.minCliCoreVersion\": \"2.0.28\",\n + \ \"classifiers\": [\n \"Development + Status :: 3 - Alpha\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\",\n + \ \"license\": \"LICENSE.txt\"\n },\n + \ \"project_urls\": {\n \"Home\": + \"https://docs.microsoft.com/azure/machine-learning/service/\"\n }\n + \ }\n },\n \"extras\": + [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"Proprietary https://aka.ms/azureml-preview-sdk-license \",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-cli-ml\",\n \"requires_python\": + \">=3.5,<4\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"adal + (>=1.2.1)\",\n \"azureml-cli-common (~=1.5.0)\",\n + \ \"docker (>=3.7.2)\",\n \"msrest + (>=0.6.6)\",\n \"pyyaml (>=5.1.0)\",\n \"requests + (>=2.21.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureML + Command Module\",\n \"test_requires\": [\n {\n + \ \"requires\": [\n \"azure-keyvault\",\n + \ \"mock\",\n \"nose\",\n + \ \"unittest-xml-reporting\"\n ]\n + \ }\n ],\n \"version\": + \"1.5.0\"\n },\n \"sha256Digest\": \"a535f01501a06f70d26a75f5ccde2d32640d3c7efec302fc2fc454bfb867e946\"\n + \ }\n ],\n \"azure-devops\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20190805.1/azure_devops-0.12.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-0.12.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.49\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \"VSTS_Social@microsoft.com\",\n \"name\": + \"Microsoft\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"paramiko (~=2.6.0)\",\n \"pycryptodome - (~=3.9.8)\"\n ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration - Extension\",\n \"version\": \"0.2.3\"\n },\n - \ \"sha256Digest\": \"65f87fadf798e66d87bfd3add12807140523cc324d5ca3dcf03bee2ce6e0839f\"\n - \ }\n ],\n \"keyvault-preview\": [\n {\n - \ \"downloadUrl\": \"https://github.com/Azure/azure-keyvault-cli-extension/releases/download/keyvault-preview_0.1.3/keyvault_preview-0.1.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"keyvault_preview-0.1.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"classifiers\": [\n \"Development + \ \"distro (==1.3.0)\",\n \"msrest + (<0.7.0,>=0.6.0)\",\n \"python-dateutil (==2.7.3)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Tools for managing Azure DevOps.\",\n \"version\": + \"0.12.0\"\n },\n \"sha256Digest\": \"2abdfd1b760e1968176cd4043e2db7edf951978c6a2182eb5e79bb0c8070af4c\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20200113.1/azure_devops-0.17.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-0.17.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.69\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -5457,55 +5122,91 @@ interactions: :: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azurekeyvault@microsoft.com\",\n \"name\": - \"Azure Key Vault\",\n \"role\": \"author\"\n + \"VSTS_Social@microsoft.com\",\n \"name\": + \"Microsoft\",\n \"role\": \"author\"\n \ }\n ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-keyvault-cli-extension\"\n + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"keyvault-preview\",\n \"summary\": \"Preview Azure Key - Vault commands.\",\n \"version\": \"0.1.3\"\n },\n - \ \"sha256Digest\": \"5d80ceaac45576bfd9cb7f2bd5714183d9f88711b4aa415940b4b393a7591069\"\n - \ }\n ],\n \"kusto\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"kusto-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"distro (==1.3.0)\",\n \"msrest + (<0.7.0,>=0.6.0)\",\n \"python-dateutil (==2.7.3)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Tools for managing Azure DevOps.\",\n \"version\": + \"0.17.0\"\n },\n \"sha256Digest\": \"1e891afc8b6ee52c62c4f99802d77728ff60e89e4c08972325178cc4fdac6be9\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20211028.1/azure_devops-0.21.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-0.21.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.2.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"VSTS_Social@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line - Tools KustoManagementClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"ffa47cb6f8f850e75412dffa6a5e52f857d5e7ca217322ce176eea81d24768e8\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.1.1-py3-none-any.whl\",\n - \ \"filename\": \"kusto-0.1.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"distro (==1.3.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing Azure DevOps.\",\n \"version\": \"0.21.0\"\n + \ },\n \"sha256Digest\": \"7ab5fd8d8f05bbd78d2e5fce961a06380aa258445561b88fb1ca02261cae365a\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20220324.1/azure_devops-0.25.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-0.25.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"VSTS_Social@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"distro (==1.3.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing Azure DevOps.\",\n \"version\": \"0.25.0\"\n + \ },\n \"sha256Digest\": \"00e758326f54349274c3c18addb681d88bd03d76562ccc22902231b9c5b22c9a\"\n + \ }\n ],\n \"azure-firewall\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -5515,23 +5216,25 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line - Tools KustoManagementClient Extension\",\n \"version\": - \"0.1.1\"\n },\n \"sha256Digest\": \"e6febb41b7a6dc6ec752825fe2af9506ff40c227bfcea9a3af5e6ded115003d1\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"kusto-0.2.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.11.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"116c1324206e8aa0e7cffdd719a12e87b2977a061fcd9fb96ae4b6fbe223e93f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.1.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.1.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -5541,62 +5244,17 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line - Tools KustoManagementClient Extension\",\n \"version\": - \"0.2.0\"\n },\n \"sha256Digest\": \"5738e9b48c17008688080a6b3cfd37b67dfe597a538c874ec75dddcc8e18935a\"\n - \ }\n ],\n \"log-analytics\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.1.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"log_analytics-0.1.4-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"log-analytics\",\n \"summary\": \"Support for Azure Log - Analytics query capabilities.\",\n \"version\": \"0.1.4\"\n - \ },\n \"sha256Digest\": \"6f4789fff8581a52e13bcf8f13fdc16b47662fac69e1fc3ea49280de1a8e65bc\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"log_analytics-0.2.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"aleldeib@microsoft.com\",\n \"name\": - \"Ace Eldeib\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"log-analytics\",\n \"summary\": \"Support for Azure Log - Analytics query capabilities.\",\n \"version\": \"0.2.0\"\n - \ },\n \"sha256Digest\": \"28a24f605e80c6fc56408add14981e5b4572077f2b5f0c55208f4105624cc91b\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"log_analytics-0.2.1-py2.py3-none-any.whl\",\n + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.1.9\"\n },\n + \ \"sha256Digest\": \"f20c18b5b176dd39815dee4d344368774b58bb2f4f03c28b89ee08212e45856a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.2.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -5608,82 +5266,31 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"aleldeib@microsoft.com\",\n - \ \"name\": \"Ace Eldeib\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"log-analytics\",\n \"summary\": \"Support for Azure Log - Analytics query capabilities.\",\n \"version\": \"0.2.1\"\n - \ },\n \"sha256Digest\": \"23751654f76334e97c3ae3b10dd4e6896785cbf5c7c9442d3f979ebd6b9c6c21\"\n - \ }\n ],\n \"log-analytics-solution\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"log_analytics_solution-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.4\",\n \"Programming - Language :: Python :: 3.5\",\n \"Programming Language - :: Python :: 3.6\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"log-analytics-solution\",\n \"summary\": \"Microsoft - Azure Command-Line Tools Operations Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"844bf0a063b4e244bfe14e215c82d7d70327540b7bf446b7cb1d97ebb8a98119\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-0.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"log_analytics_solution-0.1.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"7934510bc2ed4d83c8dbee7d2d22c3de2332b96020e2f45515035153f94a246f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.4\",\n \"Programming - Language :: Python :: 3.5\",\n \"Programming Language - :: Python :: 3.6\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"log-analytics-solution\",\n \"summary\": \"Support for - Azure Log Analytics Solution\",\n \"version\": \"0.1.1\"\n - \ },\n \"sha256Digest\": \"0c85556a82ef5850c9f90b58380c5cde6a70a2bd2a464c0a8e429c77152a87bd\"\n - \ }\n ],\n \"logic\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"logic-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -5693,23 +5300,25 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"logic\",\n \"summary\": \"Microsoft Azure Command-Line - Tools LogicManagementClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"b02dea64e03adb7cf17a7afafc28844949c0f3a030f4eb005059452f0ac68040\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.1-py3-none-any.whl\",\n - \ \"filename\": \"logic-0.1.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"12e5f8567ba8a74988f50ec6ed3539fad5b9e491727b0bc2c16e7acc34f49423\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -5719,23 +5328,25 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"logic\",\n \"summary\": \"Microsoft Azure Command-Line - Tools LogicManagementClient Extension\",\n \"version\": - \"0.1.1\"\n },\n \"sha256Digest\": \"906b43b34be4ed38c883a4f2031ff7b2b0547f51b16c8553f050afc2986ec939\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.2-py3-none-any.whl\",\n - \ \"filename\": \"logic-0.1.2-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.15.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.3.1\"\n },\n + \ \"sha256Digest\": \"32e10a4e96a891151959680ff3cbf3e28ea0cf38e49ac062c49c668d00e5d7d7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -5745,51 +5356,25 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"logic\",\n \"summary\": \"Microsoft Azure Command-Line - Tools LogicManagementClient Extension\",\n \"version\": - \"0.1.2\"\n },\n \"sha256Digest\": \"35127cc723edf1c6311354326ebae9aa5b0d72d11141fddf3efc8fb84eadac81\"\n - \ }\n ],\n \"maintenance\": [\n {\n \"downloadUrl\": - \"https://mrpcliextensionrelease.blob.core.windows.net/cliextension/maintenance-1.0.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"maintenance-1.0.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.0.47\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"abkmr@microsoft.com\",\n \"name\": \"Abhishek - Kumar\",\n \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"maintenance\",\n \"summary\": \"Support for Azure maintenance - management.\",\n \"version\": \"1.0.1\"\n },\n - \ \"sha256Digest\": \"3e0fb5392bd29e53e7afde543d1a0ef5d33a6032f01322fd75b7afe7016c34fc\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/maintenance-1.1.0-py3-none-any.whl\",\n - \ \"filename\": \"maintenance-1.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.4.0\"\n },\n + \ \"sha256Digest\": \"5c79cedfc5abf134f4b47ad5d867ff5852d2ba17f710d44a2101fe0aa51b1a48\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -5799,18 +5384,18 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line - Tools MaintenanceClient Extension\",\n \"version\": \"1.1.0\"\n - \ },\n \"sha256Digest\": \"351c717a37e6fb9b29d22cdca3b0744a452a1116e83f9e57e794464311708c97\"\n - \ }\n ],\n \"managementpartner\": [\n {\n - \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/28/08/0fde582cf50eaf1ef304b35674b9b22f6731d95b2e41339eba4d35583b18/managementpartner-0.1.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"managementpartner-0.1.2-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"classifiers\": [\n - \ \"Development Status :: 4 - Beta\",\n \"Intended + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.5.0\"\n },\n + \ \"sha256Digest\": \"ceb70fe380937e5cb42998648a3218313b1425286705743275a808bb15d70d03\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: Python\",\n \"Programming Language :: Python :: 2\",\n @@ -5821,22 +5406,23 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"jefl@microsoft.com\",\n \"name\": - \"Jeffrey Li\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.29.0)\",\n \"license\": + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"managementpartner\",\n \"summary\": \"Support for Management - Partner preview\",\n \"version\": \"0.1.2\"\n },\n - \ \"sha256Digest\": \"f7ec0984b4d5a4c9192aa3ab6b78c867fc38cf620effef1804d89c9d1d9f204f\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/managementpartner-0.1.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"managementpartner-0.1.3-py2.py3-none-any.whl\",\n + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.5.1\"\n },\n + \ \"sha256Digest\": \"40581d4aaf52a8a1f8deccf3be641385348251b34ffeb4c65193111150002699\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.6.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -5848,45 +5434,24 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"jefl@microsoft.com\",\n \"name\": - \"Jeffrey Li\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"managementpartner\",\n \"summary\": \"Support for Management - Partner preview\",\n \"version\": \"0.1.3\"\n },\n - \ \"sha256Digest\": \"22ddf4b1cdc77e99262cb6089c4d96040065828a1d38a2709fdb945d3c851839\"\n - \ }\n ],\n \"mesh\": [\n {\n \"downloadUrl\": - \"https://meshcli.blob.core.windows.net/cli/mesh-0.10.6-py2.py3-none-any.whl\",\n - \ \"filename\": \"mesh-0.10.6-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"mesh\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"sfmergeutility (==0.1.6)\"\n ]\n - \ }\n ],\n \"summary\": - \"Support for Microsoft Azure Service Fabric Mesh - Public Preview\",\n \"version\": - \"0.10.6\"\n },\n \"sha256Digest\": \"07b6356cd15294c0bc0b31cfde1cdb2b92516b00728980d7a53557bb49273842\"\n - \ }\n ],\n \"mixed-reality\": [\n {\n \"downloadUrl\": - \"https://test-files.pythonhosted.org/packages/e4/fa/14628eb512ef4f0c38e4e6c8ee2d0624e03d352ca0ec1b1167a32f9de9a3/mixed_reality-0.0.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"mixed_reality-0.0.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"classifiers\": [\n - \ \"Development Status :: 4 - Beta\",\n \"Intended + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.6.0\"\n },\n + \ \"sha256Digest\": \"b22c81a341f1742ebb2c32c45af1470b12bfe2d03907d43206cf8d0860e058f6\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.6.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: Python\",\n \"Programming Language :: Python :: 2\",\n @@ -5897,22 +5462,23 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"xiangyul@microsoft.com\",\n - \ \"name\": \"Xiangyu Luo\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure - CLI Extension.\",\n \"version\": \"0.0.1\"\n },\n - \ \"sha256Digest\": \"c5b7ef47d8db578920bcbda371a47edd19f8f681088823c2622dcb9332417587\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"mixed_reality-0.0.2-py2.py3-none-any.whl\",\n + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.6.1\"\n },\n + \ \"sha256Digest\": \"4bf18f81d1b97d458181154f51803103745182cf68972180507aa8c291c60a94\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.6.2-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -5924,50 +5490,51 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"xiangyul@microsoft.com\",\n - \ \"name\": \"Xiangyu Luo\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure - CLI Extension.\",\n \"version\": \"0.0.2\"\n },\n - \ \"sha256Digest\": \"30449391c1d1e9d67210d0ef81109a11a0f74a24a6f07644c17aed58cf056173\"\n - \ }\n ],\n \"monitor-control-service\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"monitor_control_service-0.1.0-py3-none-any.whl\",\n + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.6.2\"\n },\n + \ \"sha256Digest\": \"30539d78089ae73cbc012d487de7b9e9717096e2abf960ca4e7057ef77222a25\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.7.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.7.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/monitor-control-service\"\n + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"monitor-control-service\",\n \"summary\": \"Microsoft - Azure Command-Line Tools MonitorClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"71604e21a29c5bd84916a890cdf6e09dd7a0623867871d5ac8a0f5c2bed179dd\"\n - \ }\n ],\n \"netappfiles-preview\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-0.3.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"netappfiles_preview-0.3.2-py2.py3-none-any.whl\",\n + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.7.0\"\n },\n + \ \"sha256Digest\": \"b6ac17ae8f18d9c702cece94822c0d00dbc13b7ed60a7831281e2e5391cefe39\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.8.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.8.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.56\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -5985,91 +5552,25 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/netappfiles-preview\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"netappfiles-preview\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"msrest\"\n ]\n - \ }\n ],\n \"summary\": - \"Provides a preview for upcoming Azure NetApp Files (ANF) features.\",\n - \ \"version\": \"0.3.2\"\n },\n \"sha256Digest\": - \"d581bfefe3eb7fbceeed12c192ebdf5993fcf04ede7267d053aa416596bd0b53\"\n }\n - \ ],\n \"notification-hub\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/notification_hub-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"notification_hub-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"notification-hub\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Notification Hub Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"6f8ae57c43f53380db7944d5244121b3b757f996f6ecca394696106fd2c1d875\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/notification_hub-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"notification_hub-0.2.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.8.0\"\n },\n + \ \"sha256Digest\": \"897e1ff2ff69b6f2969dc97e97847a25b7a9060091024a96e0e2ca0876c0cd53\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.9.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.9.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.6\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"notification-hub\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Notification Hub Extension\",\n \"version\": - \"0.2.0\"\n },\n \"sha256Digest\": \"a8d0333e6c8ecc8846dcf162f01ce3d1f7a84cc4a431ec44cb5f48bd498b6d1b\"\n - \ }\n ],\n \"peering\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/peering-0.1.0rc2-py2.py3-none-any.whl\",\n - \ \"filename\": \"peering-0.1.0rc2-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"peering\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Peering Extension\",\n \"version\": \"0.1.0rc2\"\n - \ },\n \"sha256Digest\": \"1b73d60427e5e84971e244a5884b7f14e0e05e65792e9ecc7483695d1b596992\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/peering-0.2.0-py3-none-any.whl\",\n - \ \"filename\": \"peering-0.2.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6079,24 +5580,25 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"peering\",\n \"summary\": \"Microsoft Azure Command-Line - Tools PeeringManagementClient Extension\",\n \"version\": - \"0.2.0\"\n },\n \"sha256Digest\": \"dd301c22107f961692a4acdbb5a98d28a7e86e7fb8619f2322884a2bc5507241\"\n - \ }\n ],\n \"portal\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/portal-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"portal-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.9.0\"\n },\n + \ \"sha256Digest\": \"ea9f1a318e27266652bb6121d93ff5595b2ffe1227efc3ca1ab69b29349bb9d2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.10.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.10.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6106,23 +5608,25 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"portal\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Portal Extension\",\n \"version\": \"0.1.0\"\n },\n - \ \"sha256Digest\": \"89fdc138db22055fc09cf30a46050205a9e842d8fe386a3d8773ea563b074083\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/portal-0.1.1-py3-none-any.whl\",\n - \ \"filename\": \"portal-0.1.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.10.0\"\n },\n + \ \"sha256Digest\": \"94c5b15b65b3fe78fa4a10b839ace1a5eb627e87f4aae2bc5728e159388c9599\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.11.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.11.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6132,47 +5636,17 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"portal\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Portal Extension\",\n \"version\": \"0.1.1\"\n },\n - \ \"sha256Digest\": \"a3fc71fd6f0390850a60947cc1bff31d6346fc3f79e3ac8947add577c10c31a3\"\n - \ }\n ],\n \"powerbidedicated\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"powerbidedicated-0.1.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"powerbidedicated\",\n \"summary\": \"Microsoft Azure - Command-Line Tools PowerBIDedicated Extension\",\n \"version\": - \"0.1.1\"\n },\n \"sha256Digest\": \"a7373b5005814f9d6d0151622c8356b37758a7548aa2fb8cad3ddc4368c5e05f\"\n - \ }\n ],\n \"privatedns\": [\n {\n \"downloadUrl\": - \"https://privatednscliextension.blob.core.windows.net/privatednscliextension/privatedns-0.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"privatedns-0.1.1-py2.py3-none-any.whl\",\n + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.11.0\"\n },\n + \ \"sha256Digest\": \"31100b4d554939502454bf9dbe0a42e2ee4319a1af3f9c93c9b51200bb547707\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.12.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.12.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.58\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -6184,100 +5658,23 @@ interactions: \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"dijyotir@microsoft.com\",\n - \ \"name\": \"Dibya Jyoti Roy\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"privatedns\",\n \"summary\": \"Commands to manage Private - DNS Zones\",\n \"version\": \"0.1.1\"\n },\n - \ \"sha256Digest\": \"d140331c6b19bf0e4558a9b041c4c77c8a02fd36353d5d3a9527c6a4771af011\"\n - \ }\n ],\n \"providerhub\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/providerhub-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"providerhub-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.15.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/providerhub\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"providerhub\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Providerhub Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"9385d61fe18f10c379e7a7c57a1ded34dd0f5b15bcf021777e4d51d288b703fe\"\n - \ }\n ],\n \"resource-graph\": [\n {\n - \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/bd/c1/3df175a9a6a0c6aeae1ca1a7499955d75dd03452b5ba75f6df01a02b7c7f/resource_graph-1.0.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"resource_graph-1.0.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.45\",\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"ilidemi@microsoft.com\",\n \"name\": - \"Ilia Demianenko\",\n \"role\": \"author\"\n - \ },\n {\n \"email\": - \"earc@microsoft.com\",\n \"name\": \"Azure - Resource Graph\",\n \"role\": \"maintainer\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"resource-graph\",\n \"summary\": \"Support for querying - Azure resources with Resource Graph.\",\n \"version\": - \"1.0.0\"\n },\n \"sha256Digest\": \"76f10264a7c6d78664c34e73d390565ce66e639fd39ffdfad149da8fc499112d\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/resource_graph-1.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"resource_graph-1.1.0-py2.py3-none-any.whl\",\n + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.12.0\"\n },\n + \ \"sha256Digest\": \"e8273165377adcbc1effcaaa447d4b7b38c49aadd1ff9255cabf400f6846edb4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.13.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.13.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.4\",\n \"Programming - Language :: Python :: 3.5\",\n \"Programming Language - :: Python :: 3.6\",\n \"License :: OSI Approved :: - MIT License\"\n ],\n \"description_content_type\": - \"text/markdown\",\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"ilidemi@microsoft.com\",\n - \ \"name\": \"Ilia Demianenko\",\n \"role\": - \"author\"\n },\n {\n - \ \"email\": \"earc@microsoft.com\",\n \"name\": - \"Azure Resource Graph\",\n \"role\": \"maintainer\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"resource-graph\",\n \"summary\": \"Support for querying - Azure resources with Resource Graph.\",\n \"version\": - \"1.1.0\"\n },\n \"sha256Digest\": \"1eaef63df8a22666f88f322829f3470efb790e36d35376c1705b40fb03464549\"\n - \ }\n ],\n \"sap-hana\": [\n {\n \"downloadUrl\": - \"https://github.com/Azure/azure-hanaonazure-cli-extension/releases/download/0.6.4/sap_hana-0.6.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"sap_hana-0.6.4-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -6295,18 +5692,17 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-hanaonazure-cli-extension\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"sap-hana\",\n \"summary\": \"Additional commands for - working with SAP HanaOnAzure instances.\",\n \"version\": - \"0.6.4\"\n },\n \"sha256Digest\": \"352266a3e0857574c25f0d1930bfb2c0d79329bee2400f6431a37c6162337b12\"\n - \ }\n ],\n \"scheduled-query\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"scheduled_query-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.13.0\"\n },\n + \ \"sha256Digest\": \"04e0761aeed15ac457c5831c89bcbaf5f669fa943ded8f71c0f54431621103b0\"\n + \ }\n ],\n \"azure-iot\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.11/azure_iot-0.10.11-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.10.11-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -6317,22 +5713,26 @@ interactions: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Scheduled_query Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"5529213e41055f70c53407498b618c7d48cea70a0ce0aca069e0dd9bb818f549\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"scheduled_query-0.2.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-iot\",\n \"requires_python\": + \">=3.6,<4\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jsonschema + (==3.2.0)\",\n \"packaging\",\n \"paho-mqtt + (==1.5.0)\"\n ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.10.11\"\n },\n \"sha256Digest\": + \"8a7892996403fd5fd6850262acc176605704990db9d0a95c743545f1c0659d83\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.15/azure_iot-0.10.15-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.10.15-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -6343,245 +5743,390 @@ interactions: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Scheduled_query Extension\",\n \"version\": \"0.2.0\"\n - \ },\n \"sha256Digest\": \"d9cba80c47b0b8b3e3ad86a257eb53598611698efab6687a11f81c2b036b1083\"\n - \ }\n ],\n \"sentinel\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"sentinel-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.11.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/sentinel\"\n + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"sentinel\",\n \"summary\": \"Microsoft Azure Command-Line - Tools SecurityInsights Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"0c0de10af8cc7c91704dc29afa2bc178f18bf4e28612d6d0c5d7c594bd05d4c9\"\n - \ }\n ],\n \"spring-cloud\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-iot\",\n \"requires_python\": + \">=3.6,<4\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jsonschema + (==3.2.0)\",\n \"packaging\",\n \"paho-mqtt + (==1.5.0)\"\n ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.10.15\"\n },\n \"sha256Digest\": + \"465b8a2688260973519c00dd48989faa015423b195d20efb423e976c49924983\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.17/azure_iot-0.10.17-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.10.17-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"1042caa1c3b6c85c2e5360bf57de4d26f71afd80ecae6b14cf45fbfe73b5cf0e\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.1.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.1.1\"\n - \ },\n \"sha256Digest\": \"f42d8c99ace9b4df29eea79ac7a588b1fcaecd381b1a80c7dbdd920756f8d209\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.2.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.10.17\"\n },\n \"sha256Digest\": \"71f449108419e66f4b8f72a0d9b544e7a38c7fc4b3fdfcab9a9088dff3190710\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.11.0/azure_iot-0.11.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.11.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.2.0\"\n - \ },\n \"sha256Digest\": \"b39aa8c49b316b1870e79db0526be2db772b179f9f517f72af898d9c3cc3310d\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.2.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"extensions\": {\n \"python.details\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.11.0\"\n },\n \"sha256Digest\": \"b599137425d8b0df615813b9cbedb02d43549acf3ae0c9a703f5d636cf05ebf9\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.12.1/azure_iot-0.12.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.12.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.2.1\"\n - \ },\n \"sha256Digest\": \"dfb974346cf9f62d8f9564756d6661cd758904d1e7035ca61c7227d6b0fc6cf1\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.2.2-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.2.2\"\n - \ },\n \"sha256Digest\": \"ab81ea74ecb86edaa1b4e5938e1136dbf6788b237b141c5905b121646edd9f5b\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.2.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.12.1\"\n },\n \"sha256Digest\": \"4cc809c496ecda0c892b664d0d1de58586b56db9211c3d12c96c640bf8d8c84f\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.13.0/azure_iot-0.13.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.13.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.24.1\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.2.3\"\n - \ },\n \"sha256Digest\": \"c4af1e193256ae2b04fc9c46a414c3203944b458b2a8959654c55450ec9ea76d\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.2.4-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.13.0\"\n },\n \"sha256Digest\": \"a8078483a23ed656cb79816dc8e7c39f3c18a04945b4366edc99a76897419bd2\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.14.0/azure_iot-0.14.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.14.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.24.1\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.2.4\"\n - \ },\n \"sha256Digest\": \"9e18d1d44c7f63c970bbc70d29f6c5719c4062c5defa5a63165db13d8623fc70\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.5-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.2.5-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.14.0\"\n },\n \"sha256Digest\": \"56e07939e0f60412c8dce20a278127be4768a4cd8c487e5201396428e1b2f86f\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.14.1/azure_iot-0.14.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.14.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.24.1\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.2.5\"\n - \ },\n \"sha256Digest\": \"281fc1babe47793e0bcccbe004ea4771802038eead1e8c3b553461b8062be912\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.6-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.2.6-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.14.1\"\n },\n \"sha256Digest\": \"9138b2610ac1ad775d4012e532cfa273a2d56dc2a649aa71d838f3c26d74b77d\"\n + \ }\n ],\n \"azurestackhci\": [\n {\n \"downloadUrl\": + \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"27fba7f0a2c2fd97e4cc0e815a7de4ec9493e7ef99816d577da5046588f7977a\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"3d6220cffd5b45383c16b9cdd43393e1d4e07bebf3b2bbca9eabed21049c197c\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.2-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"2de905d3adc714745ee92bf81c237ea3dd61cb4a6e87d2a840f4047aba352a73\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"0796a045fb8d5de1c0b12375459efd45628aec4e04419c679860aba1d2b4d361\"\n + \ }\n ],\n \"baremetal-infrastructure\": [\n {\n + \ \"downloadUrl\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension/releases/download/1.0.0/baremetal_infrastructure-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"baremetal_infrastructure-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.12.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"baremetal-infrastructure\",\n \"summary\": \"Additional + commands for working with BareMetal instances.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"9e0bd5e66debbb9a4a810dad44f710eba43f0249b2f8a630539b68e21a849d6f\"\n + \ }\n ],\n \"blockchain\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/blockchain-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"blockchain-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6595,21 +6140,19 @@ interactions: \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.2.6\"\n - \ },\n \"sha256Digest\": \"f3fdb9cd98dcd887a7f84dcc5eff38c8b6384b464fa0734965df9f379acaacd8\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.3.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.3.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"blockchain\",\n \"summary\": \"Microsoft Azure Command-Line + Tools BlockchainManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"ba0001dffaf39d133604c4281ed9c943f178a16a91d31f5889bf1587d9871049\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/blockchain-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"blockchain-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6619,25 +6162,24 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blockchain\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.3.0\"\n - \ },\n \"sha256Digest\": \"9c719fe1c6f539ba663283bd2eb8464aa9bcbf2d35617ac58408c6133f824f38\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.3.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.3.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"blockchain\",\n \"summary\": \"Microsoft Azure Command-Line + Tools BlockchainManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"95a4788ab10052f6c1b4122db6ab140705db528e5cb3db3358580d703a2a7204\"\n + \ }\n ],\n \"blueprint\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6651,21 +6193,19 @@ interactions: \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.3.1\"\n - \ },\n \"sha256Digest\": \"a720deecb978406fb081c148078ee8831780cefefe965556852c00f8e1fc36c7\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.4.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.4.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"98c1874110e2c77c62cf0d180133ea0b29ed08a86189ee292b909369597e694b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6679,21 +6219,19 @@ interactions: \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.4.0\"\n - \ },\n \"sha256Digest\": \"c09d2a188fe5e41f7fd9835c1efd0c3065b55f2b9efde39b6f2ff399be567eec\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.5.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.5.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"4508b6143f69e6ac388ad37b3e3af82f49c9b5625e12d341963cc2faf02e368f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6707,161 +6245,19 @@ interactions: \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.5.0\"\n - \ },\n \"sha256Digest\": \"b2a36656b073f9cf588755508757fcd2cd7e0f8d573b7e43fc5fa3adb315a063\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.5.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-0.5.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"0.5.1\"\n - \ },\n \"sha256Digest\": \"79fd3b7b6928ea53b63a040412420398e138097e960a3afdfa76da051f140f19\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.0.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-1.0.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"1.0.0\"\n - \ },\n \"sha256Digest\": \"698aa10606de4ec9eec580747a2d6d38c755633261241d75618badc53fe1e0f4\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.0.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-1.0.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"1.0.1\"\n - \ },\n \"sha256Digest\": \"d2b766d594c89a19abba3a7b2df6224d1af15fd9202b31fe5d57b9d9970b399c\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-1.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"1.1.0\"\n - \ },\n \"sha256Digest\": \"a4fa97d6241fab2a66d8dd80e0d6a68ea17d849bb7404349ad6203c71fb89ba9\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-1.1.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"1.1.1\"\n - \ },\n \"sha256Digest\": \"ed63f4464f80e47df33b336ede149e1bc0f3b985dd033ee3541fffbaa9ad5f59\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-1.2.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"fcbbe61db268b9b5452b0d9055c5fc8b725a63193290957c2681de5fe2e6f1ff\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6871,25 +6267,23 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"1.2.0\"\n - \ },\n \"sha256Digest\": \"241c7485bfc3792efe8cd728df2ce8aa3a52eb078b7eab43a1dd2fd6322b413a\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.0.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-2.0.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"120bd04db8b31bbc5631ce086739763cca3144c2e314b8e1347f1d633e894a09\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/blueprint-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6899,25 +6293,23 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"2.0.0\"\n - \ },\n \"sha256Digest\": \"c1e2931b439dea0bea043aec7817b454d510c944552a7bf084fd9916ab513142\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.0.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-2.0.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"843a836410e80a3a72a36ea90c72d9a1358b787c77afae20d2ae71b976c1c5a4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/blueprint-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -6927,17 +6319,18 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"2.0.1\"\n - \ },\n \"sha256Digest\": \"82e4d6c55a28dd7de155504e6836981a390e26562ca684bdf9240324bf428665\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-2.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.3.1\"\n + \ },\n \"sha256Digest\": \"ebac321b7ef9811d82a166da7ec48b2d70f234aec8d3fd597f471ba752a5d253\"\n + \ }\n ],\n \"cli-translator\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"cli_translator-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -6953,17 +6346,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"2.1.0\"\n - \ },\n \"sha256Digest\": \"4d6714f950fc8f3097d4ec1e1a6eb52f564f3fd543195cb3e5da2b47f187fa92\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"spring_cloud-2.1.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + \"cli-translator\",\n \"summary\": \"Translate ARM template + to executable Azure CLI scripts.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"8a4d19ed89cd63e1cc461715b7b0a1a989d2b480adc1b3b4f5747eef0327b85b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"cli_translator-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -6979,100 +6372,17 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line - Tools spring-cloud Extension\",\n \"version\": \"2.1.1\"\n - \ },\n \"sha256Digest\": \"a9775975158941a59479571440dcf6555c6dabfff576ed5ffaf98bd25e49fe12\"\n - \ }\n ],\n \"ssh\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/ssh-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"ssh-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.4.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"ryrossit@microsoft.com\",\n - \ \"name\": \"Ryan Rossiter\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"cryptography (==2.8.0)\",\n \"paramiko - (==2.6.0)\"\n ]\n }\n ],\n - \ \"summary\": \"SSH into VMs\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"cf39bfcf542db4a7a3acf119f4ea71f17626eaaac7fe480d058962fec3d3ff25\"\n - \ }\n ],\n \"stack-hci\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"stack_hci-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line - Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.0\"\n - \ },\n \"sha256Digest\": \"9095702d720e24173616232ffab42bdf121dd82eeda48becd52d141f73c35bb3\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.1-py3-none-any.whl\",\n - \ \"filename\": \"stack_hci-0.1.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.3.1\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line - Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.1\"\n - \ },\n \"sha256Digest\": \"dc6bc793de093c9e2be98d68379f7178ee67231058ece34bbf2f8e2d9f89f2e0\"\n - \ }\n ],\n \"storage-blob-preview\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_blob_preview-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.9.1\",\n \"classifiers\": + \"cli-translator\",\n \"summary\": \"Translate ARM template + to executable Azure CLI scripts.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"ee07cbcde217d2b1ab226ef5aeea8e44510b704fb5e3976638dcf2f978f722e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"cli_translator-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -7088,17 +6398,18 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Storage-blob-preview Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"3407bc6ea0425aab5c5a495c447b0d9ec4f4a360f08bdfd68cfd7a6504789231\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_blob_preview-0.2.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.12.0\",\n \"classifiers\": + \"cli-translator\",\n \"summary\": \"Translate ARM template + to executable Azure CLI scripts.\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"9ea6162d37fc3390be4dce64cb05c5c588070104f3e92a701ab475473565a8a9\"\n + \ }\n ],\n \"cloud-service\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"cloud_service-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -7114,17 +6425,21 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cloudservice\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Storage-blob-preview Extension\",\n \"version\": - \"0.2.0\"\n },\n \"sha256Digest\": \"fc96b22fd656fcba97b8ee3283a1bead65b941aae10c174f597703ad7d8a5114\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.3.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_blob_preview-0.3.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.12.0\",\n \"classifiers\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"cloud-service\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-compute (~=19.0.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools ComputeManagementClient Extension\",\n + \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\": + \"22c640991a5e98e42ddcb4303813cd63b75d4b3d392ad9eab955a5af1b87c45b\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"cloud_service-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -7140,17 +6455,22 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cloudservice\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Storage-blob-preview Extension\",\n \"version\": - \"0.3.0\"\n },\n \"sha256Digest\": \"daec951de77a200f3479c00ebf1015534891592cfd4bbf7873c5784bdd3f57a0\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.4.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_blob_preview-0.4.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.14.0\",\n \"classifiers\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"cloud-service\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-compute (~=20.0.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools ComputeManagementClient Extension\",\n + \ \"version\": \"0.2.0\"\n },\n \"sha256Digest\": + \"ee7ca3a5eaa801ceea9173f2ff0a429600bff9e9339d504071c0283b56facec4\"\n }\n + \ ],\n \"communication\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/communication-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -7166,26 +6486,23 @@ interactions: \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure - Command-Line Tools Storage-blob-preview Extension\",\n \"version\": - \"0.4.0\"\n },\n \"sha256Digest\": \"03ef575ccf01776e99f8adb1882c77ee41278ff18901556424c753279724c9a3\"\n - \ }\n ],\n \"storage-preview\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.8-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.2.8-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.52\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"communication\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CommunicationServiceManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"a16e8262b53791aad9e74a4f3d4804a5bafbe415df3c7651776e98b787bf6226\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -7195,25 +6512,23 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.2.8\"\n - \ },\n \"sha256Digest\": \"a3d48247051e95847ded28217433c4b98fc02d6ee21eedfcb24dd43f7360569d\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.9-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.2.9-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"communication\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CommunicationServiceManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"2ee3d4c870c0c0c0dd97fbe6510958ac8c23dca2b4814b4a0a9ea665cd17e723\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -7223,25 +6538,56 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.2.9\"\n - \ },\n \"sha256Digest\": \"880e01de0fab8893770497ef9410559ae223a1f09dbd6a23712226ab4e2d5ecb\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.10-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.2.10-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-communication-identity\",\n \"azure-communication-phonenumbers\",\n + \ \"azure-communication-sms\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"e4ac2008217ade46ca2504b31aa79ab11c1c892964fd06df911e976be6cf3dae\"\n + \ }\n ],\n \"confidentialledger\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confidentialledger-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"confidentialledger-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confidentialledger\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"confidentialledger\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConfidentialLedger Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"a8428687acab162b982153333766ec0f6888b2ce71dfd24f815cd4ee1e4b3ac3\"\n + \ }\n ],\n \"confluent\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"confluent-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.17.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -7251,25 +6597,23 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.2.10\"\n - \ },\n \"sha256Digest\": \"8c87013be456849f27ea7f76df284e998e6f3911d3de478ec19abe84bb30fbe9\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.11-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.2.11-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"confluent\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ConfluentManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"4a6ffd3d10898183b66b0933064bc6d9bbade0e9af32be3348412b75310e07cb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"confluent-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.17.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -7279,25 +6623,23 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.2.11\"\n - \ },\n \"sha256Digest\": \"b00ccc8846bbb389b95064e7e9b547cbd877b0a596b8c36d86982be435695d5c\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.12-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.2.12-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"confluent\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ConfluentManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"edf3b0d4afc36a3aaa9f68723f1db8b26bedcb5a5abcb053556146e4604cf31a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"confluent-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -7307,25 +6649,23 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.2.12\"\n - \ },\n \"sha256Digest\": \"5bd273bf4c1952f4576faf05ed80fd73b25f0f4d0be81fe0bbf471019705a6bb\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.3.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.3.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.6.0\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"confluent\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ConfluentManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"62ea75ea44aa9c2872ec0f3d396eb6e35f37e0799890afa5f82d2187f9cace58\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"confluent-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n @@ -7335,170 +6675,178 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.3.0\"\n - \ },\n \"sha256Digest\": \"7fb50e37a0e271c118124b4488474e3c2957cffe1b319660bd3df91534911008\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.4.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.4.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"confluent\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ConfluentManagementClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"7b812940a77094bc916c745a61b7732966de4e7943a7541c0a402c0d912bc6af\"\n + \ }\n ],\n \"connectedk8s\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.1.5-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"k8connect@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.4.0\"\n - \ },\n \"sha256Digest\": \"822137d0987829d27537f36923d31d69371e756f8adc686ccdd5a2e03a40ab5f\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.5.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.5.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.1.5\"\n },\n + \ \"sha256Digest\": \"1b529c1fedb5db9dee3dc877ca036f5373d307ca8a07c278d07126531b1c55b6\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"k8connect@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.5.0\"\n - \ },\n \"sha256Digest\": \"7ec8887f3f83a4f67613a22f1eea7f9c5968c9b108d74c7299eacc400e40c710\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.6.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.6.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"d306355d5568f9f5b201db9f5bda28fc0b142c6b70164a87bf56974239749ebd\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"k8connect@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.6.0\"\n - \ },\n \"sha256Digest\": \"9431e5bba2ddd8d7850c1e3b4fc2a29dd0cc38322f1b04247bf7f7a5f3aacf4a\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.6.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.6.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"e910b1a0abee28121d5c216821c5d88cefc87030eb3068e699135314ecb0f8c9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"k8connect@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.6.1\"\n - \ },\n \"sha256Digest\": \"93cf02038cb209c2baee6e2a4bf17e0c8a8f55eb2c86c7678163499f84c31a75\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storage_preview-0.7.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"9660bbd577c66af1bcebeeaaec9cabb61cd27a0b58c6fe9a9a795d6a73777ee9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"k8connect@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storage-preview\",\n \"summary\": \"Provides a preview - for upcoming storage features.\",\n \"version\": \"0.7.0\"\n - \ },\n \"sha256Digest\": \"3b2a463e7852cd1153372b3dd9522c007dee8daff53ccf26fda0c84b642e8367\"\n - \ }\n ],\n \"storagesync\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"storagesync-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.4\"\n },\n + \ \"sha256Digest\": \"4de66f7e8cecdfab8c91bf4f37347770fb17e087454159d3a5c81e0205f2da2c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.5-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"k8connect@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": @@ -7506,27 +6854,29 @@ interactions: \ },\n \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line - Tools MicrosoftStorageSync Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"a1d15edfcc18d9d301dea843cd7dce9845b8da6f6b1beb47a1bba35ff46eadde\"\n - \ }\n ],\n \"stream-analytics\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"stream_analytics-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"Programming Language - :: Python :: 3.7\",\n \"Programming Language :: Python - :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n - \ ],\n \"extensions\": {\n \"python.details\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.5\"\n },\n + \ \"sha256Digest\": \"0c23ebd04c37b26219cd224134e8af675130cc346808ae008cd5cfc4f3b1bd84\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.6-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"k8connect@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": @@ -7534,531 +6884,820 @@ interactions: \ },\n \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"stream-analytics\",\n \"summary\": \"Microsoft Azure - Command-Line Tools stream-analytics Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"e3a9048f289d1b870637e4b13c0ee1e877827834e1f71d31cb8161bacc441388\"\n - \ }\n ],\n \"subscription\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/subscription-0.1.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"subscription-0.1.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"classifiers\": [\n - \ \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.6\"\n },\n + \ \"sha256Digest\": \"165411ce6ecdda8a4705bd9e93998b1ffdf6ddc88b01ed0ce12a3c100d1b9549\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.7-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"wilcob@microsoft.com\",\n - \ \"name\": \"Wilco Bauwer\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"subscription\",\n \"summary\": \"Support for subscription - management preview.\",\n \"version\": \"0.1.3\"\n },\n - \ \"sha256Digest\": \"74388eb7d4976c620bd41ef577cdb9284cd9a3e38dc4756796d091a7c8193267\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/subscription-0.1.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"subscription-0.1.4-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.7\"\n },\n + \ \"sha256Digest\": \"115bbeb79206632301a20dc4b1d6604f5c126c82c0ba1a9a58131a66da30a7dc\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.8-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"wilcob@microsoft.com\",\n - \ \"name\": \"Wilco Bauwer\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"subscription\",\n \"summary\": \"Support for subscription - management preview.\",\n \"version\": \"0.1.4\"\n },\n - \ \"sha256Digest\": \"0f28407be656e9930d06240b95bf1ccc8ebbbc9fc961cbd9e4b0575e1867b03d\"\n - \ }\n ],\n \"support\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-0.1.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"support-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.81\",\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n + \ \"email\": \"k8connect@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"support\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Support Extension\",\n \"version\": \"0.1.1\"\n },\n - \ \"sha256Digest\": \"e74e1b769155a08226d103781dbec7a20b517c37f4b75871172b2769e37676fa\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"support-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.0.81\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.8\"\n },\n + \ \"sha256Digest\": \"a0f8d12304b097a65d2b22f4e47faa6c6899e680bab77dfb41e72d2722e7e7d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.9-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.9-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.9\"\n },\n + \ \"sha256Digest\": \"55377bea57ae6288a501ea65ff2c68b2961ac7582da9b7646960faf17583e3dd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"support\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Support Extension\",\n \"version\": \"1.0.0\"\n },\n - \ \"sha256Digest\": \"3646b584af5fb68e57a153991cdbf049cd6f8e471c36b28c7f3bb642ecc341d8\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"support-1.0.1-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.0.81\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"9eb34e10523ee5bbd9a4be03915532da7acc3be11631fb646807085c09380c59\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"support\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Support Extension\",\n \"version\": \"1.0.1\"\n },\n - \ \"sha256Digest\": \"5490c5dbe52b0457b51a327426cad741005f8afc24c13cefefb9fe8694a558f7\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"support-1.0.2-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.0.81\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"47b871998ac7c3b90689c8cfef18d1d1c9a77d04fabd64a0071504dd434af5c8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"support\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Support Extension\",\n \"version\": \"1.0.2\"\n },\n - \ \"sha256Digest\": \"815e9ed05789f4cd00eb00cbae0e6339e7519c0c6d816bf3aa302af534acef5b\"\n - \ }\n ],\n \"synapse\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/synapse-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"synapse-0.1.0-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"522d70fb956e23f2a705ea51d8227845844ec0648263a5e7504543a493c67441\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"synapse\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Synapse Extension\",\n \"version\": \"0.1.0\"\n },\n - \ \"sha256Digest\": \"bdeb2f4830fc35ff15b4ec473927619ed6a5ab46e4c797f2cb7605e59a32aa36\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/synapse-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"synapse-0.2.0-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.2\"\n },\n + \ \"sha256Digest\": \"70fd92b69c9c06d1bf22984a06d8027a2d3f192d0c59388cef2a3861dc79874f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"synapse\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Synapse Extension\",\n \"version\": \"0.2.0\"\n },\n - \ \"sha256Digest\": \"4731f2418d29ba818dd971acc71d695ff1641208e6441c719b38c4c21577c2e3\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/synapse-0.3.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"synapse-0.3.0-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.67\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.3\"\n },\n + \ \"sha256Digest\": \"f0845d6b310c645327a648fc555acc52f02fa8ed31054fc056c7adb1a37e5f40\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"synapse\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Synapse Extension\",\n \"version\": \"0.3.0\"\n },\n - \ \"sha256Digest\": \"11b7dac7ba18b63c84294e86531301d516c9ae44e9899d0344926c945b5fc9c4\"\n - \ }\n ],\n \"timeseriesinsights\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"timeseriesinsights-0.1.0-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"Programming Language :: Python :: 3.7\",\n \"Programming - Language :: Python :: 3.8\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.5\"\n },\n + \ \"sha256Digest\": \"41edf3789d85074f1159645c7257ac747709ea613c2c2c80a95cdfee92e36fa5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure - Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"a1cd9f9177ff31010638048d3737dc39fac144d9ca107fe4eafc4339386d71cd\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.1-py3-none-any.whl\",\n - \ \"filename\": \"timeseriesinsights-0.1.1-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"Programming Language :: Python :: 3.7\",\n \"Programming - Language :: Python :: 3.8\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.6\"\n },\n + \ \"sha256Digest\": \"d93e28cac3425b688581cd885d198173bf0dc5e20e91d00e3f176519e0fbddeb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure - Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": - \"0.1.1\"\n },\n \"sha256Digest\": \"3276b876cad87ef8b29e6af58294fc7ff20b9d2d0187ce84e2b15ba8917b00d9\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.2-py3-none-any.whl\",\n - \ \"filename\": \"timeseriesinsights-0.1.2-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"Programming Language :: Python :: 3.7\",\n \"Programming - Language :: Python :: 3.8\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.7\"\n },\n + \ \"sha256Digest\": \"fa8ed32f122136c0774361ffe78eea2e3189ede8bacc72ca6b972b6ab87d6393\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure - Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": - \"0.1.2\"\n },\n \"sha256Digest\": \"3caba62be85114e44cd61c8541df49c7ff67b76b8c26e53e198b00a98a907417\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.3-py3-none-any.whl\",\n - \ \"filename\": \"timeseriesinsights-0.1.3-py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isExperimental\": - true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"Programming Language :: Python :: 3.7\",\n \"Programming - Language :: Python :: 3.8\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.8\"\n },\n + \ \"sha256Digest\": \"21cca7dcd973655694fcaa927563bb6afd2463cf6e6ce450e45ad8f27ab33ed9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"azpycli@microsoft.com\",\n \"name\": + \"k8connect@microsoft.com\",\n \"name\": \"Microsoft Corporation\",\n \"role\": \"author\"\n }\n ],\n \ \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure - Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": - \"0.1.3\"\n },\n \"sha256Digest\": \"84009856e1a9e6e6b178425099c2e1eaa4753ba5e375426a504f92bd4b9a21aa\"\n - \ }\n ],\n \"virtual-network-tap\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_network_tap-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"virtual_network_tap-0.1.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.9\"\n },\n + \ \"sha256Digest\": \"26c85757eb59ec8309d19f14dfab94cb28039a21015ce70106cf618e57face59\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-network-tap\"\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"virtual-network-tap\",\n \"summary\": \"Manage virtual - network taps (VTAP).\",\n \"version\": \"0.1.0\"\n },\n - \ \"sha256Digest\": \"7e3f634f8eb701cf6fef504159785bc90e6f5bd2482e459469dd9ab30601aa35\"\n - \ }\n ],\n \"virtual-wan\": [\n {\n \"downloadUrl\": - \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.1.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"virtual_wan-0.1.2-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.10\"\n },\n + \ \"sha256Digest\": \"9cd74663e39095fd58510ccebda78586205c6b536f89c90badbd647f6b84b0a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, - VPN gateways and VPN sites.\",\n \"version\": \"0.1.2\"\n - \ },\n \"sha256Digest\": \"35d7b9f8b62167957708902b19a6c2f97ceaafa28abcba815b39a2d9040066f8\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.1.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"virtual_wan-0.1.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.11\"\n },\n + \ \"sha256Digest\": \"986924760ccd29d74a35b5fb2253a23400d6e27e48521b72fc8d06a493eb4faa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, - VPN gateways and VPN sites.\",\n \"version\": \"0.1.3\"\n - \ },\n \"sha256Digest\": \"10bc530d54677c0f24363326f28b0476a3324198417117e3effa031c20d6c2cb\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"virtual_wan-0.2.0-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"e6873b0cdcfb82cda00f00dfdc5ce9d0daf4db651e100c6c3e3ff58ca89732ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, - VPN gateways and VPN sites.\",\n \"version\": \"0.2.0\"\n - \ },\n \"sha256Digest\": \"45b52f87cd76a269d8e6151782a437692cea3725b4f64d9d4d64cc2c4b49288f\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"virtual_wan-0.2.1-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.1\"\n },\n + \ \"sha256Digest\": \"8a6a3e88952c36d7d38602953b1a3de3386ab18bc0cc79e7b74b931fe0d57f3d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, - VPN gateways and VPN sites.\",\n \"version\": \"0.2.1\"\n - \ },\n \"sha256Digest\": \"db108cf3fb9f3a49aea87f35d658b0bdc9c2321122b9a1ec1f58f4fecb0ebe90\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"virtual_wan-0.2.2-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.2\"\n },\n + \ \"sha256Digest\": \"03c7625c0e4a09da8c4ea5051bd5d2a92d9e22d085b56cc30b319bb941f254b4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, - VPN gateways and VPN sites.\",\n \"version\": \"0.2.2\"\n - \ },\n \"sha256Digest\": \"0b141457b8c3f57061f300dae18472ec9da96f4b4f9ddb9239a4a5dbda7c1ffd\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"virtual_wan-0.2.3-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.3\"\n },\n + \ \"sha256Digest\": \"3dff7553c723ef87aeb5ad5b20f3dc56a59324254ee15d880f9c1303eb5984aa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.4\"\n },\n + \ \"sha256Digest\": \"2106bdef362215013f5b55141e878ba54db63359fb57a7751ea1841c6ba9a915\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.5\"\n },\n + \ \"sha256Digest\": \"fd0bc6f534e5a9e72fe6585031eeb29655d05f2cac4f505804bc6052a52c5fcd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.6\"\n },\n + \ \"sha256Digest\": \"473e31ada7636316304b2a39a76654722a0f5409bf8a2ffddf196ccc42df10a4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.7\"\n },\n + \ \"sha256Digest\": \"3f13d1b95c89865a8bdc0d40323956d599305892a54085e1115866b429ab2fa1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.8\"\n },\n + \ \"sha256Digest\": \"df97793b98a0f8e2e70f8a7942c6d65b9e581c54cf3f7632d4c48f01b2426a09\"\n + \ }\n ],\n \"connectedmachine\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Connectedmachine Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"0f4d009da4e091aece74cd53833fe63e5af18d68fcf6308a08155ee5284f12fb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"b9a2f3ea3fb7a4c981fad30ff670ff3ca1f8fbef0aede36a8e8a20050b1a245d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"591bed0d6a6251028471bac6a9ebf0f641d7765bf04b13271aae29c37491ba55\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n @@ -8067,21034 +7706,13365 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, - VPN gateways and VPN sites.\",\n \"version\": \"0.2.3\"\n - \ },\n \"sha256Digest\": \"21e1333af42c80c094099212db57b5e7171afee8690f0de211fdf359e3f1da16\"\n - \ }\n ],\n \"vm-repair\": [\n {\n \"downloadUrl\": - \"https://azurecomputeaidrepair.blob.core.windows.net/prod/vm_repair-0.2.6-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-0.2.6-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"classifiers\": [\n - \ \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"2183f183dac5e88820b8f69d8e56936a94b6b2bd16c7619c41f7ceac52951abf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.4.1-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"caiddev@microsoft.com\",\n + \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"0.2.6\"\n },\n - \ \"sha256Digest\": \"3556adeb1053262aa1aa0203b53423252afbd89b3e455255c2a2964a3be9a78e\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.2.7-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-0.2.7-py2.py3-none-any.whl\",\n - \ \"metadata\": {\n \"classifiers\": [\n - \ \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.4.1\"\n },\n \"sha256Digest\": \"44d84d979b15f9bdc0b5e873e308a03ad66edecf9bcf8dc1bbd31d81734cee0d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"caiddev@microsoft.com\",\n + \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"0.2.7\"\n },\n - \ \"sha256Digest\": \"4949871a99d5ef62ffdad72d35bfa75a483f1a714bf8d7ca84f134f86a5e9578\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-0.3.1-py2.py3-none-any.whl\",\n + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"c83822da39abbd0d12672816ab36eb1f1f2def74008464a1d5cea859c54d615f\"\n + \ }\n ],\n \"connectedvmware\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.2-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"caiddev@microsoft.com\",\n + \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"0.3.1\"\n },\n - \ \"sha256Digest\": \"4c893d48469b70772318c989ecac03e1ac494dc0c97652d1827a8ad55d8e8b51\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-0.3.2-py2.py3-none-any.whl\",\n + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"5bbabea61360ad74e987a33b155e267c2f940678d9220210999e9e723541d123\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.3-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"caiddev@microsoft.com\",\n + \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"0.3.2\"\n },\n - \ \"sha256Digest\": \"b7837a3129ff2614d27c2acbd254e97d83ac1540745225d2b156c897bb065125\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-0.3.3-py2.py3-none-any.whl\",\n + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"481fd314b1681185d2d64d1ea21d5591d0bf8411786e521e5bc9dae8eb862415\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.4-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"caiddev@microsoft.com\",\n + \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"0.3.3\"\n },\n - \ \"sha256Digest\": \"04ddc34a525af5b313f9dd1b5b446e5aa2a79d242451cf09f7670147c7aadd42\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-0.3.4-py2.py3-none-any.whl\",\n + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"a39af3a33da02598ec45f4b6167c2f5a25030e8fefd8d2aff186d604cb46e3db\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.5-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": - [\n \"Development Status :: 4 - Beta\",\n \"Intended - Audience :: Developers\",\n \"Intended Audience :: - System Administrators\",\n \"Programming Language :: - Python\",\n \"Programming Language :: Python :: 2\",\n - \ \"Programming Language :: Python :: 2.7\",\n \"Programming + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.4\",\n \"Programming Language :: Python - :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n \ \"License :: OSI Approved :: MIT License\"\n ],\n \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n - \ \"email\": \"caiddev@microsoft.com\",\n + \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n \ \"role\": \"author\"\n }\n \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"0.3.4\"\n },\n - \ \"sha256Digest\": \"b5964a8ed60193dc73e9109763af7cbb0162c029dbd81ed9ec5a7f20fa48ee7d\"\n - \ }\n ],\n \"vmware\": [\n {\n \"downloadUrl\": - \"https://github.com/virtustream/az-vmware-cli/releases/download/0.7.2/vmware-0.7.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"vmware-0.7.2-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.0.66\",\n \"extensions\": {\n \"python.details\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.5\"\n + \ },\n \"sha256Digest\": \"9b9ecb66734d8c31410b652d417deef9e35e2624873b36c0f3d6f90634d807e8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n - \ \"version\": \"0.7.2\"\n },\n \"sha256Digest\": - \"b84b027fe8d836f8969893480cef63b05b85db1a59f6ef11063e52be530fd9ff\"\n },\n - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vmware-1.0.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"vmware-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.0.66\",\n \"extensions\": {\n \"python.details\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.6\"\n + \ },\n \"sha256Digest\": \"3e13df39d8993cfe5ab0bf0821f335dc44bf2919c57d73ec88156671041ad239\"\n + \ }\n ],\n \"connection-monitor-preview\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connection_monitor_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connection_monitor_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.0.82\",\n \"azext.minCliCoreVersion\": + \"2.0.80\",\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connection-monitor-preview\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n - \ \"version\": \"1.0.0\"\n },\n \"sha256Digest\": - \"e1775b05e22e3afb70ad395bc3cff1cb7fdfc9a90836b61e13d4c54843577ddb\"\n }\n - \ ],\n \"webapp\": [\n {\n \"downloadUrl\": - \"https://github.com/Nking92/azure-cli-extensions/raw/whl-files/dist/webapp-0.2.24-py2.py3-none-any.whl\",\n - \ \"filename\": \"webapp-0.2.24-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.46\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved - :: MIT License\"\n ],\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"sisirap@microsoft.com\",\n \"name\": - \"Sisira Panchagnula\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": + \"connection-monitor-preview\",\n \"summary\": \"Microsoft + Azure Command-Line Connection Monitor V2 Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"9a796d5187571990d27feb9efeedde38c194f13ea21cbf9ec06131196bfd821d\"\n + \ }\n ],\n \"containerapp\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"webapp\",\n \"summary\": \"Additional commands for Azure - AppService.\",\n \"version\": \"0.2.24\"\n },\n - \ \"sha256Digest\": \"797abb3d8b41547ed3c2bcc8e01e30cbb5d487262cd2f285e755419bd1c03bed\"\n - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/webapp-0.3.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"webapp-0.3.1-py2.py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.0.46\",\n \"classifiers\": [\n \"Development + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"3731c1d2222805059ca37e31cf85e9bc4af7981295e478d22a925d9ff4ce3a68\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"0ec557558700384ee58636bd759c7047a124971e7b92c03d835d0d03614da22a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.1\"\n },\n \"sha256Digest\": \"79b636f16c37152c2e3b23e24f421aed3fa159897afd2b61d80da73751d61645\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.36.0\",\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 2\",\n \"Programming Language - :: Python :: 2.7\",\n \"Programming Language :: Python - :: 3\",\n \"Programming Language :: Python :: 3.4\",\n - \ \"Programming Language :: Python :: 3.5\",\n \"Programming - Language :: Python :: 3.6\",\n \"License :: OSI Approved + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \"email\": - \"sisirap@microsoft.com\",\n \"name\": - \"Sisira Panchagnula\",\n \"role\": \"author\"\n - \ }\n ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.2\"\n },\n \"sha256Digest\": \"581e704f223937b0e7fb99c0323768a04c956ade8b06cb7140454c06b85f254b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.36.0\",\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.3\"\n },\n \"sha256Digest\": \"63eb3289319ee4151d916329b368354085074b7b3ea21ed1d16d83a29cbe16b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.36.0\",\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.4\"\n },\n \"sha256Digest\": \"e247b0bec42db5b95c37c879ea939ec1860b8e14b0d8aa54a5a5187fc52bec64\"\n + \ }\n ],\n \"cosmosdb-preview\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"webapp\",\n \"summary\": \"Additional commands for Azure - AppService.\",\n \"version\": \"0.3.1\"\n },\n - \ \"sha256Digest\": \"1cd5bb1a8ad02a5f7c8c72a01692637fed434b24ea359d21caf919ed5323941a\"\n - \ }\n ]\n },\n \"formatVersion\": \"1\"\n}" - headers: - content-length: - - '699377' - content-md5: - - y6m2TqoUbm7ZPGHgK8zTlA== - content-type: - - application/octet-stream - date: - - Fri, 22 Jan 2021 02:33:36 GMT - etag: - - '0x8D8BE7D9E31D125' - last-modified: - - Fri, 22 Jan 2021 02:30:00 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-meta-azurewebjobsparentid: - - 8a9ea1f4-385a-4ebe-bd8f-662494b9c441 - x-ms-version: - - '2009-09-19' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.25.1 - method: GET - uri: https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.8.0-py2.py3-none-any.whl - response: - body: - string: !!binary | - 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 - d2FsbC9wcm9maWxlcy5webVQTWvDMAy951cIekgLm8l62WmHEjYoJBu0GTsGYyutV8cKspJ+/PqZ - lu20a3UQek9PnzN4vKNlMyhpOLPb7QXmZgG1M0yROkk8D8RaHAUFK+/hKorAGJEntCrVVs5giGhh - DBYZZI9Qr5tfWsEW8Q/IScCFq2Zg+kYjwEQCHTH4myblE+pvM1P7u16edUw96MvIqIx3ylAK0mad - 8xjB9en49IQxCvUbjDSyweY8YJaVn9vmo27f1pvXr1VVwcs/qnmuL3iStnOMR+29mjDYNMC20R6i - mpbFsmiL57Z4yh8gf0c5Eh9qHfQOewxSepd8vsh+AFBLAwQUAAAACAAqPJhRs4SyxX8AAAA9AQAA - IAAAAGF6ZXh0X2ZpcmV3YWxsL3Rlc3RzL19faW5pdF9fLnB5rY8xDsIwDEV3TvGlLjCQOyAmJDrB - BVDiUqMQR46L4PZYreAE9fafnm39Dvs1Z9PhKPWjfB8N27hDz1GlyWDOtYrejKUEHHLGLDUoNdIX - peC7Z45UGiVMJZHCRkJ/uv5wwIXoH+xt4DI7VeVB0aAihkHUL+XFcsPzc/nqeN2yX1BLAwQUAAAA - CAAqPJhRRH/IZuAAAAAJAgAAJwAAAGF6ZXh0X2ZpcmV3YWxsL3Rlc3RzL2xhdGVzdC9fX2luaXRf - Xy5webVPQWvCYAy991cEPFTBFrvbjiIOhBZBHTuW8jWfZnxtSr500/36BcUdtl3NKS95L3lvAtkD - K5nAioeL0PGkMHUzqMgJR/ZqcxlYGiXuc1iGAFdSBMGI8oFtbtqSHPYRWxj7FgX0hFBtDvdxDnvE - H6BnBeqvnEH4HZ2CMCt4Fgg3ju0Ndbefdv6hyRMv3EHzNQrmLlDu2Bpz5ilgBOosvDnEI0VFqS01 - j+Kw1suAdymetfYk+NmE8Ee6et0ftlX9stmt35Zlmfx/apqGRjFqOv8tmEP6tCies6LIFkU6S74B - UEsDBBQAAAAIACo8mFEwHwySqxMAAHO3AAA7AAAAYXpleHRfZmlyZXdhbGwvdGVzdHMvbGF0ZXN0 - L3Rlc3RfYXp1cmVfZmlyZXdhbGxfc2NlbmFyaW8ucHntHWtv2zjye34F4X5wsrC0kezk2gIFmmu2 - uzlss7kmewtcLjBUmXa0lSWtJMfNBvnvx4cepERKlCU5j8YFGkskh5wnh8Mh/QpoPX52XoEPfnAb - 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 - YmNtBcErwxkuqlBtxacUhTZ5QGwyVYmjpLh7ajGavldFkcnJQpkUYHgxD7Wu6n3NK9MXd/n5yzzp - fyCL57Mxjv8bJHhpdff699WvllZ9IfP4jHkstfVYeNOwc52sz5UT/QNQSwMEFAAAAAgAKjyYUaoi - DGKJZgAAgSIIAEYAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL19u - ZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50LnB57b1fcxtXlu35Xp+CUf1QrjsujakW/8Bxa2LUssvt - uC63wnZXRcwLGqIgGWOK5AVBqdQd/d0nEwAlMs8+5+y91jpARgz64d6CTOb+AcyzcfZaKzP/6eji - +vXi6u2f71Zv/nT+u386+pPs/7qDvbi++bhcvP11dfTFxR+P/rq4WF7fXr9Zdf++vLlezlaL66sn - R88vL4/WP3R7tJzfzpfv56+fdL/7w+JifnU7f310d/V6vjxa/To/+uv3v9z/85Ojn+fzTy9W/1gd - La7WP3OzvP5/5xero+X19erozfWyO9Ll5qe6n+hev9tU/d0/rfFez4/ezq/mHUpX6NXHB4hf/PTH - o+d3q+uf5rerzQ9+t/nB62VP9+LX2dXb+e3Ru9nHo4vZ3froF9fLZV/61fzX2fvF9fJodvX66MOi - e3uv5keX191xFm/WjBf94Ra33WGW80/ln2g//N+9WV6/O3p3232kqyf9p9p9CNOLy8X8qsN41336 - q6Ofv/lfL9b/8PBnP/3H+XIxu1z853z55dE3/Z9l+2p74Nl/3i3nT7oP+83isvsYtr/0v66uP1y9 - 3P7jl0fb//XN/M3iatF/7NbvPnl3d7lazG4Wj+H+2v/r85vFhvCvi38str/9ZHpxffVm8fZuc/7c - //yP89WH6+Vvf51dzd7O33W/svnFFw9/9v4A1zfzzT/cTt/1B64c498+/fgG43e/u7ic3d7mfvwL - 32G+tN7il5//KH/8+ndH3f/9/ve/3x7vaPvHWv/zL78u+uUye92dftdXq9niqjsX++PdXM6Pnr/8 - /uj9fHnb1/ryaHV99Ov88ubo4/Xd0ev57LI7JVe/Hs260/J5/4c4uri8vnt9uz7qF5t/+Xk1u/jt - y+1//u66O9RV/zbu/+XFr4ur2ZdH89XFkz8+Wf/ev3zsjvxm1tX/8qhbC7dHl90Z3Z1LD0COZu9n - i8vZqw6ve3Fz96pblZvjbQ7xl269dKfE67uL/iP6ck17++v13eXro9vV4uK3o9nRzWzZ/a+7y1m3 - sm4Wf/p04KvX/+fml/vz6cn245nf/8PR7bzrLLNupd7cdI2uW4urD/P5pll8OhGO3i6v727WC3Z2 - 9RD78+EeluxIZu/mq64trQ/eH2r7/h+95e1y/1RlfaxNpe6vd9U1qNfz24vl4lXXfD63r827WP/s - 14v33ZvdnO9fHz06l/vedrRZMhvGr7sfXX28mX/6cdeK2Pzq+v0cXSznr7sf6Bb6bVfs84ujq3n3 - v1+vK67b12ahdudVV+qq73jd/3zwp/x6g/HwaF+/u3799X883/aY2eY0+vwD6187un7Vd+7/+eBn - nqz/3+msOyfez6evF317vV5+/L/+4yH27d2r/kO86d/PdPH666OfH/zDQ4yjD78uLn7tvk8W//tu - fvnxaLH+D28+bqp/bv2bs/zhYZ+sz4CH/3L0/Tf95/Hudn1WHl1v/tL//tP3m4P1H9W8Ow0+Hm1b - b/clcXn58ONJqG9Xy0fvarU+y6fbc+nrRydW93mvv3LedCfRp/O8O6W6//m+e1evvzzq6i/ebFje - LW5v+xO/O8MerZEHhV7NbufTu+Xl133bX+P++08/PPyh7S92FJ/Kvf7U1b88WvfVR82/R3y9uFg9 - fMufDjL4Anj0i/dNb3NmfvPtX57/+w+/TLs3P/3btz/9/P2//Xj056M/PP3q6Vd/+urkT18d/2H9 - Y9OXP/3bX77/4dvpL8+/6/777zcF3r19t3pytVkFTzKr4ffr3//h+S/f/vzL/VG6IyTfXF/81+bD - HBT7+ujzv/f/9+P1Vff+DOovH/3YH950p/KH7oyY3lx3ffDjdHl3OZ+uO8PtH76+f3/P+vc3+MXF - Vdd13sy67/L51eub6+7l9heOJ3/66qnxCzdPb6fvb66m643V8vF354NfPTN+9f1iubqbXU4/zKaf - fvQ8+dH//u8vzY/m6P84+v32e2DzIf9x8yftzpuj6bT/WKfTL27nl2++fLhGvxwujC8froI/95/v - l59O1+3L7Yn050fn0ZNtQ95+jfb/1xd7svkAuj+xpz1+USa75/jj5xJ3Xa/PbQC+XBP88cmnd//o - 435Y6tF/eID9+D88/GAe/O/HP3T/4Wz//0//bfvX+L/XW5nuu+zX69ef/zxdt55f3k77BfzFRf/W - Hxz+wQe6nK/ulldH//Xb10fv1y2v2zS87/tM9ztPNsf44uFvdu+8P+R0+mSxmr+7/eKPfQdbdM2p - a/dXF/Mv3nebla5R/PG/C2zbww6p/mysuQekXUP5a7e3WLetm27l3PabkL5jP+iqX//u4Qf3P466 - s73rMKd/Oj65//563//T9KvT6fHJ9u39T6PTpD+1/b56eOTTP33Vrbrjh0c+nX41mX51XDny458y - j3z8NDny8VPPkR/+lHHkbuH/8+DIZ9Ov/rl+5Mc/ZR/5ND3yqevIp7Ujn6dHPncd+bx25OFf8Mz1 - Fzyr/QXP/nT8VXLk4688R374U/aRj9MjH7uOfFw8cv8hD47cf3z1Iz/+KfvIw/O5+x3H+fz4p+wj - P0uP/Mx15Ge1Iw/P53PX+XxeO5+337+DI5+5jnxWO/JwpZy7Vsp5baWcp+fzuet8Pq+dz+fp+Xzu - Op/P6+dz0kXPXV30vNZFJ+n5PHGdz5Pa+TxJz+eJ63ye1M7nSXo+T1zn86R2Pk/S83niOp8ntfN5 - kp7PE9f5PKmdz5O0809cnX9S6/yT9HyeuM7nSe18nqTn88R1Pk8q53M/qAx2BU+/8uwKBj9lH/lZ - euT6+Tz4KfvIJ+mRT1xHPjGP3E+s9/+729Q+2Jke/Xk9sN7vJf/w9UOazeT8cMt4r0VuKjz62e12 - e/Bf5pd2ve0OM1tvu5EU1lufYYV66xNJVm+7G83W2246lfVOK/VOxfXOK/XOxfWK58uZ+HzZ7nIL - 9dZf/sp6x5V6x8p62x1xtt5246usV1x/2+2wst6zSr1n4nrF9XcuXn/3Sleh3pm4XnG9n4vX+3ll - /Z2L1995Zf2dy9df+fvoXPx9NKmsv4l4/U0q628iXn+TyvqbiNffpLL+JuL1N6msv4l4/U0q37cT - 8fftpLL+JuL1N6msv4l2/d3PIbl69+OGsl5p/d0PIcp6J5V6J0i95WxxOz/68Xr1/buby7VbMX/9 - 7XJ5vfzi989ffv+3LcR//fe9Zf3Jx//9k02c5pHEf28r3Cx713v18ZNuP7u5uVxcrF2V6dvZav5h - 9vF2bf88Vum/33oBqE6/tgy+/o/nn6t9ty32OX5RE+0/x0OeFI9TlPUZkHuNnwK5n/c5kM3wT4B8 - Ng0YkHsHgQM5lYCc8iDnEpBzHkRwsp7xJ+tnw4MD2ajFHMixBOSYBPlspzAg994KByLoI/dWDAfy - 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 - FsM4GLf9q6FxuxvPlvZrca+W9mlxj5b2Z3FvlvZlcU+W9mNxL5b2YXEPlvZfce+V9l1xz5X2W3Gv - lfZZcY+V9ldxb5X2VXFPlfZTcS+V9lFxD5X2T3HvlPZNcc+U9ktxr5T2SXGPlPZHcW+U9kVxT5T2 - Q3EvlPZBcQ+U9j9x75P2PXHPk/Y7ca+T9jlxj5P2Nxt4mzuyNUdgaY7AzhyBlTkCG3MEFuYI7MsR - WJcjsC1HYFmOwK4cgVU5AptyBBblCOzJEViTI7AlR2BJjsCOHIEVOQIbcgQW5AjsxxFYjyOwHUdg - OY7AbjxYjZjVuOrfS8NnU6//RL+si9S1FeOp1Obve55HHSpsPInaX9iSk/yFbTXJUdh2Vr2Fc8aq - r7Ch0wYKmzKtr7AhlQYKm0qprzBxcuUsVVdhy3nxF7aNF19hQ58NFDblWUdh2031Fs6Zqb7CxDrO - Wam+woYyGyhsCrO+wsQ6ztmovsKG2xIobJotvsJEA8lZqK7CzDrOGai+wtRyItYx87WYM08dhW3v - 1Fs4Z536ChPrOGec+goT6zhnm/oKE+s4Z5r6ChPrOGeZ+goTG4GcYeoqzKzjnF3qK0wtJ3QdZ7xS - Z+GsVeorjK/jrFHqK2z4pIHCpk1aKAy6pJuRseGDk03unT4yWUdAGcUCAtIn1hAwNrGGgHGJNQSM - SSwhoDxiDQFjEQsISIdYQ8AYxBoCxh/WEDD2sIaAcYc1BIw5LCGgvGENAWMNawgYZ1hAQBrDGgLG - F9YQMLawhoBxhTUEjCmsIWA8YQkBZQlrCBhHmCdgDWENAeMHawgYOzhEcHCD+1ef3ODWPjBhASPu - L2H8Ip4vYfciTi9h8iL+LmHtIq4uYegiXi5h4yIOLmHeIr4tYdkibi1h1CIeLWHPIs4sYcoifixh - xSIuLGHAIt4rYbsijithtiI+K2GxIu4qYawiniphpyJOKmGiIv4pYZ0irilhmCJeKWGTIg4pYY4i - vihhiSJuKGGEIh4oYX8izidheiJ+J2F1Kl3O5v7mXq3NvbqaezU09+pl7tXG3KuDuVfzcq++5V4t - y726lXs1KvfqUe7VntyrM7lXU3KvfuRerci9upB7NSD36j3u1Xbcq+O4V7Nxrz7jXi3GvbqLezUW - 9+opHuzEqJ14O7+4Wy5WH6c3s+Xqar6cdj/xfvF6rrupbSqO/Lyt+XJT8uV9RUguqR/MI6BQSENJ - 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 - QSiR9ORN3v0JjmIij2P0JNA9Yf29vY0NNkT3Rv8UIV5MJ3wgpxBmRc2Sk5qryiL37fXqez+thVuY - vrTForLzyhamZU9NQmjzn4rxP7GsbPlSPM8obWWnL8XskTgDUEsDBBQAAAAIACo8mFFWns2cngAA - AFoBAAAzAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92ZXJzaW9u - LnB5rY+9CsJAEIT7PMWgjRYe0comhYhFwB8wYi+XjTmJt2FvI/r2Hgn6BJluhm9n2Cksl87fs06r - xTqZYjGaYtmW24+4e62Y2TkOzgoHrjTm0rLc1LE32DQNeihAKJC8qDTxdu8s+UAlOl+SQGvCIb/8 - YoOC6G/0rXC+Z1rhB1mFMCsqltjUDFQkon8Oq+N+mlx35yI/HZFhskzNyqST5AtQSwMEFAAAAAgA - KjyYUcB8kXY6AQAA3wIAAEAAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1 - XzAxL3YyMDIwXzA1XzAxL19faW5pdF9fLnB5rZBBawIxEIXv+ysGPKhQ99yLB5FShGpBSy+lhJid - 3U2bzchkVuu/bzZbF3sovZhDIDNf3nszIzBUWF/NWyln99kIZjc7UWxJhzPbqhaYmCmsrWEKVEqs - 84FYiyWfw8I5SFAAxoB8xCKPf5+sQR+wgNYXyCA1wnr1cinnsEMcHvIlYH1iDkwfaASYSKAkjkqu - pyIR303vmo1SvAKhQo8xSjTan68iTrZTWLRCWwzSg489SNylW9baVxig0Wcwuk3qhpg76z3W+miJ - QfsCTjaOt0dwFHVsmTKaTs6GKMM42Oe3XX5WMjWQK0O+tFXbLxtsE/cusEE5EX+utdcVNuhl6Wx3 - X7MXAd+zqhlgZRL9j1imlHZOKZjD2/gPZnwHf7V+ZRm/X+Y5IoerQV4ftrvV8yaLZj+dZDiUvwFQ - SwMEFAAAAAgAKjyYUWPBFAwrAwAAywcAAEYAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz - L3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL19jb25maWd1cmF0aW9uLnB5rVVNb9tGEL3zVwzkg0RA - onsIioKoChhKWhiN3UB2cmVW5FDamtxlZ4d2mSD/vbNLUyJltA2C8EBwl8P35uO95QXkttBmv265 - XP0UXcDqu10CtrFNR3p/YFjkMdzonKyzJcs+NZYUa2sSuKoqCEEOCB3SIxaJfPtW52gcFtCaAgn4 - gHBzfT9sJ3CHeFzw3wzahJiG7J+YM5C1DKUlQar6KImQdd2zRhchvQJhjwYlFSHadaMUF9sYrlq2 - W3TcB/7WB1ry2W0OyuzRQa06yFUb0HNL5Kl3eFCP2hIoU8CTlvJ2CJUVHF2GHHMPp53AEB7pk+/b - /JJsDbWTjrL61JLw1dJyhiu/2FhT6n3bTyDqY5NHJCfLIfDDm+3d9R+3URTllXIObpGfLD3cKKP2 - WKPhTaX9fQy1eIkepxHINZvNJtt+NP8GGT64tYzSLMWgpIGNIlUjS4bQek2whZxQhRDtpPdSpckR - lBTqlCgI1Gk34Clm0ruW0SVR2EgDpocphFOryqWwOS3AoDwXIc8ws5BaILbG+DHLYyg36eG4a3CK - lta2SD9eTaYwYgifgd15uf48iknCPVM560fMCu01Zan75eM4bdfuXE668b3MdJHCveQ43hynAk8H - nR/ESPqvFquuJ9bhbdn1zjrqPpQ0QUpeYl+/9n2pnZ8LP9fRS/v99jq0DEVNHXg3i/nEIVU1btOL - 7B3TpDom2CmHWUtVKk7vUd5v3w5a6kdYYAlZpo3mLFv0aTxfDqtyOW7B8pxzeSRY31qDItMjgLh0 - 3DzRl49IJwSktHj+g6pafENkaTF7N0gU5qOv51C3Ynxj/bEQcJJZPGY6S+sb2M4Q/pcxvBmaO6EZ - dmEN8wNz49LLy/pozl6XSW7r+alXrm2QFl9zNizDUOLkOLCBLT6hXcAdi6LkfxTOXm+J5F3HB5Hc - q+SH5MdXSzlwH3CwoJdiY20FwSvDGS6qUG3FpxSFNnlAbDJViaOkuHtqMZq+V0WRyclCmRRgeDEP - ta7qfc0r0xd3+fnLPOl/IIvnszGO/xskeGl19/r31a+WVn0h8/iMeSy19Vh407BznazPlRP9A1BL - AwQUAAAACAAqPJhR5xl8lZ0RAAAbngAAUgAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv - djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvX25ldHdvcmtfbWFuYWdlbWVudF9jbGllbnQucHnFXdtu - 3MgRfddXEN4XCdAOHAMBAiIOYMvrjRB7V7C9ayAvXA7ZIzHmkFxeJMtB/j3dvPW1uqs5JuUnzZhV - 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 - +6NT5e8r7e47rOCHTB8p9vEDxHua1U6z2jFcTrPaaVY7zWptjdOsdprVfmBWG7hi/Mj01ur6uN67 - BfwLA94/UEsDBBQAAAAIACo8mFFInlEgLQYAAPMSAABzAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9y - ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19hdmFpbGFibGVfcmVz - b3VyY2VfZ3JvdXBfZGVsZWdhdGlvbnNfb3BlcmF0aW9ucy5wea1YW2/bNhR+968gnAfbhU27BQoM - QlMgaLeiQG/IuochCBRaOpbZSqJGUk7SIvvtO7xIoiTH64YKSCKR5375DpkzkoiUl9l5rXerXyZn - ZPXTHhT2SlT3kmd7TebJgrzniRRK7DSuy0pIprkoKbnIc2KJFJGgQB4gpcj7jidQKkhJXaYgid4D - ef/2c7NMye8A7Ye+04SXlqaS4gskmkghNNkJiZJyR4UU+F04rZMza14KJIMS0BRUtL0PTJxfLshF - rcUlKO0I3zhCIY11r/aszECRgt2ThNVWeiKkNKq3sGcHLiRhZUpuObq3BZILlMN31sbEiOMKxUho - 1dOfG/wJLzDEmtQ1Tyc7KQpSKAyvphWvIOclGuAIXuUcSn3JbtHTSmCcQmr2rZZA7e8Y7hKoTPBU - xyrq9FcpMcqOidJmq0AXczWZTJKcKUUuDoznbJsDKhG1TOCNFHX1GnLIbD7UxwpcPai52JoELqIJ - wWc6nf4HXiLaVzqx/H+Kmqi9qPOUlMIUCfpUao4BJyk32crvMSVcEWvnkmxrTRIJZp/50HimBJCQ - aZdQT8JtiZF7VGJyzbRmyd6sMmU+JEdx4C2JKiZZgXqMzKiRbdhNzWOJYjH8VWPM0fSQXpQ7niG9 - /Vs774jYtVxOYI8HtzjL+TeQEblAYhtQl5Jgr8eSwimmcNez8QPDAq94fACp0KTWo4tPb4lfo8Zq - G3ByYHkNEZk+2zzbrDbPV5unU9ok2MXHVQw5b0vHLKawI3HMS67jeK4g3y29v0sfmGXg0LJnJxaQ - FWEew0ljx4ka3Mtgt+VEgk7KgChQgGShuj5hEBikC70eGOW8MDbZl87rnCs9b2kb+iXiSGJLYGnA - 0rZDnJl+iEtWAEalVloU8R4YgqY6/yBKXJTs9vw3lit8ffKkbZHYqfSN5nPxBhCGGVa4cFDFmuYj - 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 - zph2Us2ztXhoVc+isdmpPvvYfMTov76s0xfCIeOhjh67vLZLmA6rJh0QeFVmBp+VLjhxvhd1eZX0 - 8ovRQH70xJQeLNS00QiMRmD0QwOjjoGghJDo5j3kSt3D/4WiK8xzIvTbXyPM+iZg1iWL69K9/CHj - sdCvozRVkd2eDay6jvQdwTlZqt0WzvmO4vu/In36+BHefiDeVkKf/mi4sgJrTRyyX4x2v+vmF0r3 - XJbdtPI5wmNBt1uLck3m6KycVfmoybgm7eAjF9PiIX82x2sSWUE+BwYq2F20jDJefu/r8ntDMbl9 - Fd4eMHwx3ipM3+d2+6EF8drDvvz9+sOV3NOl/HYJ+X6u59sptdNdpdffyqX+7rCDbJ/7isA2GEKv - /WYcYdG1sYRayvFdgkf+LkFv1ekR1xXLfWhCl4wFuwCpu6ocQuj9XWnWgz0NRPrhAegjB47jiwmG - yXf3YkJXaf89eNo7hbG9B9bvrWg0lu7H0v1Yuh9L92PpflPpvg67OyvZYxFdfZNF+8dfr980mR/3 - jYyuw/8byKASmne+mL2TF60xoO6u/Ee+gg2pkW2CdjY0ovqNqF4Wd4X+7ztgIT8Sp9Tb3lQDRdmH - QvtTOB3iXVRovxzWl16ecQKLREqg4KXkE5xuNP2oHLv9T3BkTK5o2pW2vlygbBbAlPurNxko23ZJ - Qdm+OnIu293QRB+OpLus2oGoyzaMrPuovizClk2V8XosVPnSlrNxyIbgu2wbIHwnybYwXrYHgu8e - uQ8C4EaNIRDeKW4TEO+Y3tZgvGd+ewLkTUfpBc2y7fTVZc1QgaJSlhN7KQBrnuIEBq9k4Xsw9taa - 9YbsWfP2Ycc43fjEPbG6bFvidUP6+ZhdTb+N250FacLXJ+il9V/0tLCMWWeFvTogfxN8u+RW0Glg - /mH84DVcxG/nCEFMMlhQkkaU1O4o5c42Q3PnDL4PJr8n4G7i6vDyNnQrcVtfUuwMfndU8G0I3rxN - 2OeVxIj3R7z/XeD99r7fdQbwta4HKoFjyjGmHFYbU45ecWPKMaYcY8oxphyDMGC/FwOQp/wfUEsD - BBQAAAAIACo8mFGATglgMQcAAH0gAABlAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 - MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19kZWZhdWx0X3NlY3VyaXR5X3J1bGVz - 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 - NL1cK3x3QLhNhNsLM7dD3YeCjxVGUpBvEyB0cOMuyLAZOlMJ2ubTzxadmN66uTtxwM4V4RxkFi81 - bpkyvS0BGdb3SK8+OxaswGAN89rnQgXqRAemuyWw74JjG8DVk8JKO1wHQJo53AAcbgAONwD7uAE4 - 9Oz71vMEeva3batLALZrW/3bNtIftYe+Ta/9tdCffGNbvnfPz++nyLBVhqwHyUP9rOGhf8qgdT/A - lwN8OcAXR9EDCulbz3eIQnSO+z6AyAt5o/+vB0Mj94EB5uy50/Evz0njhkc9Hm93Sf2T0rBoXEZ3 - tKIOXbon36U7XPJuveSVu2XLDa8k2Xy9e4frVcn04uGvaJWYJ3/xuql4eJLXrU/3LvW+F6GbDjjt - ju017uF+86nfbzYq3u+n4VDtipQW973WvO895jtQoYCDMW0jgKLj53zGAOj3Co3sAT/JyzCBaeaG - TFuQlfMAGKshrBcD7Qy2DheWWy8sJbAR+p8vwj74QjyY0/oZYesHaLe6tTyDQjS580/QngLckNki - 5wS8RaqWxSgjXyFZ0uyL2vXtE1SWopamfZb2tRSrx+kxyTzV21isnt0ajNXzaI1GK/ARG45W5mN3 - CKvnZpM3794x7Aqdjs5h9WzuIPZRPWwnUT4KtvRYyG6YHVfjkW1qU8pnS6uyk2TX21b53LHX2SP3 - Tv1Oo8amnmenuG19z47l7dz77FnfN+p/NgOltwcqn73exmqGCotXsrwDhmZAn+EUJi8k0N94wNSa - 9Z5L4+avSffcgzUxccsLYaXK3tqwnk2bJeQz9JPzr7Nb4Mu4SoHFjvvkZgHskzt5o3Gh3IF9Rg3X - Bu1b5zAhOTiCZDEldRhJYePt974eQHiqdRhUXv8HUEsDBBQAAAAIACo8mFE3Z/zjQQoAAC5FAABf - AAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9v - cGVyYXRpb25zL19odWJfcm91dGVfdGFibGVzX29wZXJhdGlvbnMucHntW22P27gR/u5fQWw+2D7I - 2k3QAwr3HGCRa68BklywTQsUQaDQFm3zIosuRe1m77D97Z0hJYqkJNvZl2SDWsDt2eJw3jgzfDh0 - npCFSHm+mpVqOfnz4AmZ3NsDzF6I7bXkq7Uio8WYvOYLKQqxVPBeboWkios8JudZRjRRQSQrmLxk - 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 - 21cDuvku0M05i+tuvPwgo6XQXw1pqiKHPTsIu5l0R/hJdmG3xU++o/K3v8N8+fQh1WNjqq3EvXw+ - EK7CSE2E8WjQ6Ha3vm+Umrlskmk9c4SfYYu2NvAUfa7zbV7ILFj3UM13IStjKfb1xp5X3cDqrrCh - ji3nDm3Gx2oFD3fVG++qe7u/7Ttrm3T93XWrh3ybC+jbu1Nd5jz85fdd1PtGd+XbVbePdWteh4yZ - lQbcxPdkL9Z3kerlc98L+m1Svt7UzWnfomunfrXJw03+E7/J723/PLGOW3nqTBwSeJHfC0dKBju6 - 2f+tGy0qEc8CMsqFTtFxqbNet8tJk0iQdgoMVEV61mQz3OYPt/mbUYrTAzQan4B3fVII11PnWv7o - adL0dMGtsDI0wB0pQwN8aIAPDfBn3wCvQ+zO2t9YRMvvsgH+9HvfmxbzHL9O0JXin2iRk1DwEZx0 - folgJ99DBt5t9J9L/8bIXne7fBlA+kaQLrumQv+fE7CTX4nbQ+3sYbd6nrdH6p8hAcT3a30+HGiX - Tp1xAltCShTgpeQKUhdNvyofbv8zFBlwK5p2v6sP1JePhR7L49SL7MtnO4RfPo8OjcvnZt1i7w6V - uyzbAZnLZz107qN6WAgtH9VQ67FQ5U9brsYhW4fP5bMBo3eSbIvT5XNHdN0j904I26ixDmV3ituE - tDuWtzXa7lnfN0LcTUfpRcXy2ekXazVDhX1KWU78pYCceYoTmLyQLei18bfWrDdsT5r3ADsG4sYn - bgnG5bMlIDek9wflavltYO5sSBOlvkC/WP+rTAu9mH1WaKsD0zcxtktuBZ0GqO/DDV7DOfw2/A9i - ksFWkjSipHZEKXGyGXu3MvBtgPfWqLoJobe+IHhwTN3s53/DS4EBwA8A/nsE8LsG74/Vpq8EDtXC - UC1Yz1At9IobqoWhWhiqheddLXzzFj0UE/8DUEsDBBQAAAAIACo8mFEaXH5hiAoAAP5PAABlAAAA - YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVy - YXRpb25zL19sb2NhbF9uZXR3b3JrX2dhdGV3YXlzX29wZXJhdGlvbnMucHntXOtv2zgS/+6/gkg/ - 2F7ISlLcAgffukDQvSsK9IVc9sMhCFTGom1uZVFHUXnsIve33wxJSdTTTuI06cIC6trScF6cIX8z - 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 - PzraPh0Ndiek9L31SkTfW+97631v/Sn21r12ehVfd9ZNp2p+/l320x9/K33TYp7g+wpt6f1RljYx - Bwc5uw59FLB1lbOTN6Mp/vkIpyTITAP9EbXN+zphY52AfVxl/roGONUX5nV1W5vqjTbsrYuFj5CG - oq9qxt5f2YCHK5UM9oMVUGSUsCvInzz5og9K83+9wahf0jR7bV1lRXE5ELb9WHdWGsW1XcVRXA9W - eZQCH7o8KK6bdba+e7nQtrEtZUNxrS8fuqjut4zAS/cSOyxUuvOWq/HI1tUoeG2oU1pJtq1V8Lpj - hdEh905VhlVjXaXRKm5TtdGyvK0rjo71faOqo+4onZUBXjt9e9kw1ACwkOWFfw7Vg0xoDJOX2H1f - G/4rzTqzxrj+CGTHxYj1iVsWJHhtWZRY0q8vTPTym8WJtyF1qP6M/Oz89Z4GcrL7rJFeS11TLzR8 - cifo1AqbDtAyqvnGpFkBBRFLYSdZMues8kMUON5cf2zI/9+oFKkXHm1lxn1WFO7SmvVED/J7kP/d - gfxdQ/oeYfcI27l6hN0prkfYPcLuEfaTRth3wtO3AMv/B1BLAwQUAAAACAAqPJhRycPlrcEKAADj - WAAAWwAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVf - MDEvb3BlcmF0aW9ucy9fcm91dGVfdGFibGVzX29wZXJhdGlvbnMucHntXP9v27YS/91/BZE+wPbg - KGmxAYPfXCDo9ooC/Ya87IchCFRGoh2tsqhHUkmzIfvb3x1JSaQkf0njpGkrAUtj8Xh3PB7vPnf0 - 8oREPE6yxaxQ8/2fB0/I/s4eYPaC59ciWVwoMorG5E0SCS75XMF7kXNBVcKzgBylKdFEkggmmbhk - cQBzXycRyySLSZHFTBB1wcibVyfl64D8l7Hqg/qkSJJpmlzwP1mkiOBckTkXwCk1VEABn5dG6uCJ - Vi9mZMEyBqqAoPNrR8XR8ZgcFYofM6kM4UtDyAVq9+KCZgsmyZJek4gWmnvEhUDR5+yCXiZcEJrF - 5CqB5Z0zknLgk8y1jhGySySwEawSH+zW+INkCSZWpCiSeDAXfEmWEsyrgjzJWZpkoIAheJEmLFPH - 9ApWmnOwk0tN/yoEC/TPkH2KWI7Gk/VUXsS/CQFW9iTwFAQsSqrXx+/ewxsmJuQtf2/G2jLspICK - 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 - X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9u - cy9fdmlydHVhbF9odWJfYmdwX2Nvbm5lY3Rpb25fb3BlcmF0aW9ucy5wee0abW/bNvq7fwXhfrA9 - yEpS3ICDri6Qy93tCrRdkfUOOASBSku0zZ0sahTlNBuy376HL6JIWnbSNGlTzAbqWuLzxuedD/MM - ZSyn5XLWiMX0r4NnaPpgHyB2xqprTpcrgcbZBL2hGWc1Wwh4zyvGsaCsjNFpUSAFVCNOasI3JI8B - 9zXNSFmTHDVlTjgSK4LevHrfvo7RT4TYB/FRIFoqmIqzn0kmEGdMoAXjQKnQUAABz2vNdfBMiZcT - tCQlAVGA0fzaEXF8PkGnjWDnpBYa8AcNyLiU7myFyyWp0Rpfoww3inrGOJes52SFN5RxhMscXVHY - 3pygggEdulAyZpIcrYEMJ5Z9/LDKH9A1qFigpqH5YMHZGq1rUK+IK1qRgpYggAY4KygpxTm+gp1W - DPTkQuNfG05i9Z2SjxmppPLqDpU1+T85By17HFgBDJYt1OvzH9/BG8Ij9Ja902vbPAxSjPk6DQic - nr9p0TReHLdLa9BkUQ8Gg6zAdY3+S7locPHvZv73ZXXGyhLMAQL/WBHtbPWYzaV3TJIBgs9wOLwV - AzH7Mx4orP+xBtUr1hQ5Kpn0O9hCKSjYEOVUOkBxDVamNVIyRWjeCJRxItex0bZByggAYqF9xIBQ - 5bXoGphI98FC4Gwl3+JaPnAK5IiRJKkwx2vgI2kmLW2JLsMIvB7865cGVAyiu/CsXNAlwKv/G707 - xBYWSxP0cGCJ4oL+SniCTgFYqVGr31nzUHKyD8ldNWh0gyFmKppuCK9BJLuj03evkHkXS6mVwtEG - Fw1J0PD58fPj6fH30+OTYdyaVetHeweaWTeRL3OyQGlKSyrSdFyTYhGZ/UZGMZGzociTE9xGkZAf - iRmnGhM46B/BqsUEgI5KAOQwADCXnQ/oKAbg3F0HQuldSJnUj27XSyLGFrQFj2TSZQ3PSLrkrKnS - Eq9JhDY6LtJVMzdvMhsc7YumFmydrgiG/FzP3rISXnJ8NfsXLmr4+d13NnRSLYoJO2OjcwLeTDaQ - RGVOzInAFIwFbojbOEYQlgjiEnWBGXebNW7WI36C3q+IXUBqAckFSV0y66I+7siJ64r0U6sFD7mG - +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 - PtQG9/4GwMYbABv3srs3Avq6rL8h0NkZ/5pj/ruHWVPXffurBvdR88ndUNiu/n9ydxWaNDV1FkAf - ATzZ6wy7xD7que/1iG0wkImCzTjIoetiIfXs71E89XsUK7fQvpfdzWpaZlTc80rFfS9RvAUNBCCK - bAUeFKpIbF8xrfX7uyDp/aWHjZceFMKT5t88Qlh/Ih7eW4+7O7js7vDlFM9JuhuY9hjwR+WEghNw - Iql2GYOcfIbUSPNPenJ37x2qjZyaprvErjqRqB5nd1plo5WnEdWz3alE9TzY6UQt8KFOKWqBD32w - UD2361x594OGvrjpOXConvUHD6uovu0BhHo0QllhoXq2bDkaj2zd6YZ6Npxw9JJse8qhnjueTayQ - e6fzCavGujOKXnGbzil6hrf1WcWK8T3SeUU7UFaeJKhnpxc8DEMNuytZ3upCc6DPIcEVeK4w/drV - pdFs5aI0ahdWOz6+sDHxlXdMtCr3PsHwbNkuIw/Rz84/4u4AMesiDRx7rqi0i2Gf3MkXrUp8E/QJ - Wv4Nu7V7lJICvEHyhJImlpTk0earJB5EeJrVFtRXfwFQSwMEFAAAAAgAKjyYUUBYunYjCgAA9ksA - AF4AAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx - L29wZXJhdGlvbnMvX3ZpcnR1YWxfcm91dGVyc19vcGVyYXRpb25zLnB57Vttb9s4Ev7uX0E4B9he - yEpa3AILX10g6PaKAm03yPYOOASByki0za0s6igqiXeR/e03fJFE6sV2HDdJ9yygSSwOZ4bD4cwz - Q/cIhSyiyXyai9n4p94RGu/tAWZvWLridL4QaBiO0EcacpaxmYD3PGUcC8oSH53GMVJEGeIkI/ya - RD7M/UBDkmQkQnkSEY7EgqCP7z8Xr330KyHlB3ErEE0UTcrZbyQUiDMm0Ixx4BRrKqCAz0sttXek - 1IsImpOEgCog6GplqTg8H6HTXLBzkglN+E4TMi61e7PAyZxkaIlXKMS54h4yzqXoK7LA15RxhJMI - 3VBY3hVBMQM+dKZ0DCU7mgEbTkrx/n6N36NLMLFAeU6j3oyzJVpmYF7hpzQlMU1AAU3wJqYkEef4 - BlaaMrCTS81iIJ4XxB/OfzmDN4R76BM702M2Pf4956SY5GO+DGoMTs8/FtP0PN8vhpZglTjr9Xph - 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 - lCcNboYe58YeJ4IBqf/RG/DBL6wGDTa9Atl6Pe4+jc6PcOuLdvW+3MPlczysmWCwYawsAkxS9hWC - VJx+UQevnbnwcmdp2jmsr85WPk7VpjtM9Nbfyme7Olz5PE49znJ/uLpci9/tOlvfvULWtbEdlbLy - WV8x66N62MoZPiqZ91jIuvOW2tTI1pXl8NlQmusk2bZtis8da3s9fO9U3zNirKvxdbLbVOfrUG/r - Wl+Pfo9U72s6Sm/ND5+d/s/9ekGFUEtetfAfp0APd22YvED4uzb8V5L1Zo1p8/3SHdccjU98YwsU - ny0rjob0/lVHpX678ljbkOat7AX5yfn3tVrQyuyzgoIdndTmnbJO7gSdRit1M5SZNNzEa7df/Yhl - sKksncWscknkPd3c8dwABR7/7tO83nRdZnZ7b+n5p/70vcVVun1rGa4Kw1Xhr3dVeKYXgwGnDzgd - nwGnDzh9wOkDTn/2OP1OqPxukPt/UEsDBBQAAAAIACo8mFGjhOM1GgYAABoTAABoAAAAYXpleHRf - ZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25z - L192cG5fc2l0ZV9saW5rX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHmtWG2L2zgQ/u5fMWQ/JCmJ - khYKh2kKy3JXCm2vbHsHx1K8WltJ1NqWT5Kzmy7pb7/RS2zZ8aYcNLBZ2/PyzIxGz1i5gFRkvNys - ar2e/xZdwPyXfdDZlaj2km+2GibpFN7zVAol1hqfy0pIqrkoCVzmOVglBZIpJncsI2j7jqesVCyD - usyYBL1l8P7t5+NjAp8Ya270gwZeWp1Kiq8s1SCF0LAWEj3lTgs18L5wqNGFDS9jsGElw1AQ6G4f - hDi5nsJlrcU1U9opvnGKQprorra03DAFBd1DSmvrPRVSGug7tqU7LiTQMoN7jundMcgF+uFrG2Nq - 3HGFbiRr4MmvLX7ECyyxhrrmWbSWooBCYXk1qXjFcl5iAE7hKues1Nf0HjOtBNYp1Kbfa8mI/U7Y - Q8oqUzzVmoo6+11KrLIzIuQoKjDFXEVRlOZUKfi7Kj9xzd7x8tuVKEuskvHzZ8VcE6iJuDOrNo0j - wM9oNPqZAYjmkkTW6B9Rg9qKOs+gFKYdMPpScywtZNysS77H4nMFNqIZ3NUaUsmMnPoieKOUoSLV - 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 - 0ZePSCcEpLR4/oOqWnxDZGkxezdIFOajr+dQt2J8Y/2xEHCSWTxmOkvrG9jOEP6XMbwZmjuhGXZh - DfMDc+PSy8v6aM5el0lu6/mpV65tkBZfczYsw1Di5DiwgS0+oV3AHYui5H8Uzl5vieRdxweR3Kvk - h+THV0s5cB9wsKCXYmNtBcErwxkuqlBtxacUhTZ5QGwyVYmjpLh7ajGavldFkcnJQpkUYHgxD7Wu - 6n3NK9MXd/n5yzzpfyCL57Mxjv8bJHhpdff699WvllZ9IfP4jHkstfVYeNOwc52sz5UT/QNQSwME - FAAAAAgAKjyYUV4/ugVmcQAAzhUJAEYAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy - MDIwXzA3XzAxL19uZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50LnB57b1fkxtHku353p+irOeh1btq - roqX9U92e23ZlFoju2oNTdJ0m+0LBiyCFFbFqrooFNmcsfnumwmg/mV4RLifcwLIB/TDjCAV039Z - zHCEn3My818Ozq/ezi/f//l2+e5Pp7/7l4M/yf7XHezV1fXnxfz9r8uDL87/ePC3+fni6ubq3bL7 - 94vrq8V0Ob+6fHbw8uLiYPVDNweL2c1s8XH29ln3Z3+Yn88ub2ZvD24v384WB8tfZwd/+/6Xu3/9 - 7ODn2ez+w/Kfy4P55epnrhdX/9/sfHmwuLpaHry7WnRHulj/VPcT3ecP66q/+5cV3tvZwfvZ5axD - 6Qq9+fwI8Yuf/njw8nZ59dPsZrn+we/WP3i16Ole/Tq9fD+7Ofgw/XxwPr1dHf38arHoS7+Z/Tr9 - OL9aHEwv3x58mnen92Z2cHHVHWf+bsV43h9uftMdZjG7L/9M+8v/3bvF1YeDDzfdr3T5rP+tdr+E - yfnFfHbZYXzofvvLg5+/+V+vVv/i8c/e/8fZYj69mP/nbPHlwTf9X8vm0+bA0/+8Xcyedb/sd/OL - 7tew+UP/6/Lq0+Xrzb/88mDzT9/M3s0v5/2v3fqzzz7cXizn0+v5U7i/9f/25fV8Tfi3+T/nmz/9 - bHJ+dflu/v52ff3c/fyPs+Wnq8Vvf5teTt/PPnR/ZP0HXz3+2bsDXF3P1v/iZvKhP3DlGP92/+Nr - jN/97vxienOT+/EvfIf50jrFLx/+Uv749e8Ouv/9/ve/3xzvYPOXtfrXv/w675fL9G13+V1dLqfz - y+5a7I93fTE7ePn6+4OPs8VNX+vLg+XVwa+zi+uDz1e3B29n04vuklz+ejDtLsuX/V/EwfnF1e3b - m9VRv1j/m5+X0/Pfvtz85++uukNd9qdx929e/Tq/nH55MFueP/vjs9Wf+8vn7sjvpl39Lw+6tXBz - cNFd0d219AjkYPpxOr+Yvunwug/Xt2+6Vbk+3voQf+3WS3dJvL09739FX65ob369ur14e3CznJ// - djA9uJ4uun+6vZh2K+t6/qf7A1++/b/Wf7i/np5tfj2zu39xcDPrOsu0W6nX112j69bi8tNstm4W - 9xfCwfvF1e31asFOLx9jPxzuccmOZPphtuza0urg/aE25//klDfL/b7K6ljrSt3f3mXXoN7Obs4X - 8zdd83loX+uzWP3s1/OP3cmur/evD55cy31vO1gvmTXj192PLj9fz+5/3LUi1n90dT4H54vZ2+4H - uoV+0xV7+HBwOev++e2q4qp9rRdqd111pS77jtf946O/yq/XGI+P9vWHq7df/8fLTY+Zri+jhx9Y - /bGDqzd95/6fj37m2er/TqbdNfFxNnk779vr1eLz//0fj7Fvbt/0v8Tr/nwm87dfH/z86F88xjj4 - 9Ov8/Nfu+2T+v29nF58P5qv/8O7zuvpD619f5Y8P+2x1BTz+Nwfff9P/Pj7crK7Kg6v13/S///T9 - +mD9r2rWXQafDzatt/uSuLh4/OtJqG+WiydntVxd5ZPNtfT1kwur+32vvnLedRfR/XXeXVLdP37s - zurtlwdd/fm7NcuH+c1Nf+F3V9iTNfKo0JvpzWxyu7j4um/7K9x//+mHxz+0+YMdxX25t/dd/cuD - VV990vx7xLfz8+XjU74/yOAL4MkfvGt66yvzm2//+vLff/hl0p385O/f/vTz9//248GfD/7w/Kvn - X/3pq5M/fXX4h9WPTV7/9G9//f6Hbye/vPyu+++/Xxf48P7D8tnlehU8y6yG36/+/A8vf/n251/u - jtIdIfnm+uK/1r/MQbGvDx7+ff+/H68uu/MzqL988mN/eNddyp+6K2JyfdX1wc+Txe3FbLLqDDd/ - +Pru/F705zf4g/PLruu8m3bf5bPLt9dX3cfNHzg8+9NXz40/cP38ZvLx+nKy2lgtnn53PvqjJ8Yf - /ThfLG+nF5NP08n9j54mP/rf//2l+as5+D8Pfr/5Hlj/kv+4/ivtrpuDyaT/tU4mX9zMLt59+XiN - fjlcGF8+XgV/7n+/X95frpuPmwvpz0+uo2ebhrz5Gu3/1xd7tv4FdH/Fnvb4RZnsjuOPDyVuu16f - 2wB8uSL447P7s3/y635c6sl/eIT99D88/sU8+uenP3T3y9n8//v/tvnb+H9WW5nuu+zXq7cPfz1d - t55d3Ez6BfzFeX/qjw7/6Be6mC1vF5cH//Xb1wcfVy2v2zR87PtM92eerY/xxeM/2Z15f8jJ5Nl8 - Oftw88Uf+w4275pT1+4vz2dffOw2K12j+ON/F9g2hx1S/dlYc49Iu4byt25vsWpb193Kuek3IX3H - ftRVv/7d41/c/3HQXe1Hf/rq+E+HR3ffXx/7fzX56nhyeLQ5vf9pdJr0pzbfV4+PfPynr7pVd/j4 - yMeTr84mXx1Wjvz0p8wjHz5Pjnz43HPkxz9lHLlb+P9jcOSTyVf/o37kpz9lH/k4PfKx68jHtSOf - pkc+dR35tHbk4d/gietv8KT2N3jyp8OvkiMffuU58uOfso98mB750HXkw+KR+1/y4Mj9r69+5Kc/ - ZR95eD13f8ZxPT/9KfvIL9Ijv3Ad+UXtyMPr+dR1PZ/WrufN9+/gyCeuI5/UjjxcKaeulXJaWymn - 6fV86rqeT2vX82l6PZ+6rufT+vWcdNFTVxc9rXXRs/R6PnNdz2e16/ksvZ7PXNfzWe16Pkuv5zPX - 9XxWu57P0uv5zHU9n9Wu57P0ej5zXc9ntev5LO38Z67Of1br/Gfp9Xzmup7PatfzWXo9n7mu57PK - 9dwPKoNdwfOvPLuCwU/ZR36RHrl+PQ9+yj7yUXrkI9eRj2pHPk6PXF8pg5+yj3ySHrm+UgY/9ejI - /ZR998/dRvzRbvrgz6sh+27/+4evH9Osp/3H29w7/XRd4cnPbkaEwX+ZXdj1NrvibL3N5ldYb7Uq - CvVWF7+s3mYHna232Sgr6x1X6h2L651W6p2K6xWvlxPx9bLZmRfqrTYsynqHlXqHynqbXXy23maz - rqxXXH+bLbyy3otKvRfiesX1dypef3fqXKHeibhecb2fitf7aWX9nYrX32ll/Z3K11/5++hU/H10 - Vll/Z+L1d1ZZf2fi9XdWWX9n4vV3Vll/Z+L1d1ZZf2fi9XdW+b49E3/fnlXW35l4/Z1V1t+Zdv3d - zU65encjkrJeaf3dDU7KekeVekfieqX1fjdkKeuV1vvd6BWut5jOb2YHP14tv/9wfbFykGZvv10s - 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 - N8Dbb4C33wBvvwF+E0h2S8JuSdgtCbslYbckSlvaLYkttiQq9wO22gmokG7/B1BLAwQUAAAACAAq - PJhRyR3R7bsAAADwAQAAMgAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf - MDEvbW9kZWxzLnB5rY8xa8NADIX3/ooHWdJCjrMp1B06hEyBekp3E+7k5Ip9MjrZNP++h0NDh9Is - 1vbEp0+8FRz7EE9vo7ab6mGFzWKTZTseLhJOZ8XaPaIOTjhxq3kvA8tRA0eDbddhhhKEEslE3uTb - 9+AoJvIYoyeBngn1/uNnbXAgugX9UoQ4M4PwJzmFMCtalmzqrlQmcu6vX5dt2gr3MFNpi6qxL40t - TM+euoTQ556Kp1/Ea2PLu8T/jtI29vku8afjG1BLAwQUAAAACAAqPJhRq9fl154AAABaAQAAMwAA - AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdmVyc2lvbi5wea2PvQrC - QBCE+zzFoI0WHhEbmxQiFgF/wIi9XDbmJN6GvY3o23sk6BNkuhm+nWGnsFw6f886rRbrZIrFaIpl - W24/4u61YmbnODgrHLjSmEvLclPH3mDTNOihAKFA8qLSxNu9s+QDleh8SQKtCYf88osNCqK/0bfC - +Z5phR9kFcKsqFhiUzNQkYj+OayO+2ly3Z2L/HREhslyZVKTTpIvUEsDBBQAAAAIACo8mFHAfJF2 - OgEAAN8CAABAAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAy - MF8wN18wMS9fX2luaXRfXy5wea2QQWsCMRCF7/srBjyoUPfciweRUoRqQUsvpYSYnd1Nm83IZFbr - v282Wxd7KL2YQyAzX957MyMwVFhfzVspZ/fZCGY3O1FsSYcz26oWmJgprK1hClRKrPOBWIsln8PC - OUhQAMaAfMQij3+frEEfsIDWF8ggNcJ69XIp57BDHB7yJWB9Yg5MH2gEmEigJI5KrqciEd9N75qN - UrwCoUKPMUo02p+vIk62U1i0QlsM0oOPPUjcpVvW2lcYoNFnMLpN6oaYO+s91vpoiUH7Ak42jrdH - cBR1bJkymk7OhijDONjnt11+VjI1kCtDvrRV2y8bbBP3LrBBORF/rrXXFTboZelsd1+zFwHfs6oZ - YGUS/Y9YppR2TimYw9v4D2Z8B3+1fmUZv1/mOSKHq0FeH7a71fMmi2Y/nWQ4lL8BUEsDBBQAAAAI - ACo8mFFjwRQMKwMAAMsHAABGAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w - N18wMS92MjAyMF8wN18wMS9fY29uZmlndXJhdGlvbi5wea1VTW/bRhC981cM5INEQKJ7CIqCqAoY - SloYjd1AdnJlVuRQ2prcZWeHdpkg/72zS1MiZbQNgvBAcJfD9+bjveUF5LbQZr9uuVz9FF3A6rtd - AraxTUd6f2BY5DHc6JyssyXLPjWWFGtrEriqKghBDggd0iMWiXz7VudoHBbQmgIJ+IBwc30/bCdw - h3hc8N8M2oSYhuyfmDOQtQylJUGq+iiJkHXds0YXIb0CYY8GJRUh2nWjFBfbGK5atlt03Af+1gda - 8tltDsrs0UGtOshVG9BzS+Spd3hQj9oSKFPAk5bydgiVFRxdhhxzD6edwBAe6ZPv2/ySbA21k46y - +tSS8NXScoYrv9hYU+p9208g6mOTRyQnyyHww5vt3fUft1EU5ZVyDm6Rnyw93Cij9lij4U2l/X0M - tXiJHqcRyDWbzSbbfjT/Bhk+uLWM0izFoKSBjSJVI0uG0HpNsIWcUIUQ7aT3UqXJEZQU6pQoCNRp - N+ApZtK7ltElUdhIA6aHKYRTq8qlsDktwKA8FyHPMLOQWiC2xvgxy2MoN+nhuGtwipbWtkg/Xk2m - MGIIn4Hdebn+PIpJwj1TOetHzArtNWWp++XjOG3X7lxOuvG9zHSRwr3kON4cpwJPB50fxEj6rxar - rifW4W3Z9c466j6UNEFKXmJfv/Z9qZ2fCz/X0Uv7/fY6tAxFTR14N4v5xCFVNW7Ti+wd06Q6Jtgp - h1lLVSpO71Heb98OWupHWGAJWaaN5ixb9Gk8Xw6rcjluwfKcc3kkWN9agyLTI4C4dNw80ZePSCcE - pLR4/oOqWnxDZGkxezdIFOajr+dQt2J8Y/2xEHCSWTxmOkvrG9jOEP6XMbwZmjuhGXZhDfMDc+PS - y8v6aM5el0lu6/mpV65tkBZfczYsw1Di5DiwgS0+oV3AHYui5H8Uzl5vieRdxweR3Kvkh+THV0s5 - cB9wsKCXYmNtBcErwxkuqlBtxacUhTZ5QGwyVYmjpLh7ajGavldFkcnJQpkUYHgxD7Wu6n3NK9MX - d/n5yzzpfyCL57Mxjv8bJHhpdff699WvllZ9IfP4jHkstfVYeNOwc52sz5UT/QNQSwMEFAAAAAgA - KjyYUemUnJs1EgAAjKMAAFIAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 - XzAxL3YyMDIwXzA3XzAxL19uZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50LnB5xV1Lb9w4Er77VwiZ - iw14GtlcdiFMFkjsyYyxScZIMhNgLxq1xG5ro5Y0ktqOs9j/vqRefBZZVEdyTu6OquqrIkVRrKqv - fwiSMs2K/ctju/vxH2c/BD9+t39U2VVZPdbZ/q4NzpOL4F2W1GVT7lr6fV2VddxmZbEJXuV50F3U - BDVpSH1P0g2VfZslpGhIGhyLlNRBe0eCdzefxq83wUdCpg/t1zbIiu6aqi7/Q5I2qMuyDXZlTTXl - /VX0Cvr50Fs9+6GDl5JgTwpCoVBD20cB4vmHi+DVsS0/kKbtL/ylv7CsGbqru7jYkyY4xI9BEh87 - 7UlZ18z0ltzF91lZB3GRBg8ZdW9LgrykerJdhzFh6rKGqqnJZH7zfYN/tqvLQ3BoaEjbDYsqDUKU - 5BkpKIwDjX4bfLz+11X3hXjt9J+kzuI8+0bqy+CaDcvwaVC8iZKy2GX7Yz+Ko9R70j6U9Zd3cRHv - yYGq7g1cidcOCsqK9J8bh/Bv04Xvsq8ZLP6qquhId9/9QgP6ED82XNRD6rbO7ulfb7PiCx388lgn - 5CRFPxdpVWZdEAo6PZiMn7qPJDnWWfv4S10eK5TsfZzl8TYn1yQn+xhtchQb3e4MztTxsZ9yr/Is - bnDx+3asyZusppHLc2+BN3+lxad4j5H7TLZXdFj2ZZ2hgL2OG/b5V3oDYy6/OjZtebi5va3JLvuK - snCdlk0vdlvSQcfBYkK3ddn2U+o2j1Hjc90klXQ3+ozpOJOHscXY+/lrRVeV5kN5bMlVVifHrKWr - 6h2N/Tf0nDLouCV0QSpQw22Q9rsTma2TlRgU+IoNUadjfp/RJ6K3Vfpga04ALYvPHIBb+kXztkxm - jX0n7CnDVnGMzLiOeNyAksjjh2NOrso878ODXqpvKrr98YjHTYVW/baM09cxXRcS3GQRr38dJ19I - kb5KUxbJ27JErciihjd1WbRUxc2ttNygfCy2Jd30vY9bFlRfw/xvOj/nKPjt2Hb258gOW5gb6nq9 - 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 - Ph9hlovVJoqYOnZRWKwHSjh7dfFTrA5KqQzA80wseXZuYpzoTs9tRBLrhY7RSmixktkilgczkEhw - HBo3xFoYDDcdRP2wPKSHWJzHn1eqNZyIDphpjehhebvTUmxmdljBca3S0kHcsDAkU1vxAMrKybD8 - BGWEDXyCyjwMy1l3EDBQQDhehWWHTXxQmnrXl7WuPAkB5oSVbmYdjZUVYVlUZkBPAEYlRGDHPgDP - wRMsMDbeAnjxcdMRrLIoqYQE0hoF8AysVUcoDLedSGC1klW4nHbluxNss5fGD+j+fwpcDQxs9Yip - 5R8SNLBXf9mntHKSCjXmL9veZe3G7zu+UE323xXl/wFQSwMEFAAAAAgAKjyYUZQFrzHnAAAA6AEA - AD8AAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAx - L3ZlcnNpb24ucHmtkEFuwjAQRfc5xRfZwIKs2bBAqKqQSiuFqnvHniSugicaT6C5fZ1ERT0A3s3o - +f1v57DsfGj2g9bbXZZj+7STZEfuR/FNq1jbDc7eCkeuNe2lZzHqORQ4dB1mKEIoktzIFenum7cU - IjkMwZFAW8L59Pm3LnAhegz6o/BhZnrhb7IKYVbULMnULVQi0nxdUrN8rucIDQVKVVJQNf6ruC43 - OAzKJUVdwNcFZJnaHVsTGoq4mhHWDLPdssgUXVFrbp4FJjjcfXpeReg4eXw9d7STzsekEXrEF8/9 - /OzrpbycPt6xx2qVZb9QSwMEFAAAAAgAKjyYUXEYUXsVJAAAfToBAEcAAABhemV4dF9maXJld2Fs - bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL21vZGVscy9fX2luaXRfXy5w - ea1d2W7cSJZ991ckUA9dBVTXQzemMRigH2TJVRbGi1pS2cAMBgaVSUkcp5LZZKZs9dd3BJdY73KC - WX6oUkacc0kGg7HeOPeH1brdNLuHvx8P93/+z1c/rP78h/0zxs7b/UvXPDweVj+uf1q9b9Zd27f3 - B5Pe7duuOjTt7pfV2Xa7GkD9qqv7unuuN78Y7rtmXe/6erM67jZ1tzo81qv3l7dz8i+rm7p2Pw7f - D6tmN2D2Xfv/9fqw6tr2sLpvO2NpO6IMwvx+Gq/66ofh9jb16qHe1eZWzIXuXoJb/PH6p9XZ8dBe - 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 - BBQAAAAIACo8mFFufCFDwhAAAH7tAABjAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 - MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19hcHBsaWNhdGlvbl9nYXRld2F5c19v - cGVyYXRpb25zLnB57V1tb9s4Ev6eX0GkB9heOEq6OGAPvs0CuXavu0C3DZLuHQ5FoSoW7egqSzq9 - JM0W2d9+M3yRSImSHUfxS0sC240tkjMkhzPPM5LoZ2Qa+0E0Py3y2dHfDp6Ro94KdPYiTu7SYH6d - k+F0RH4LpmmcxbMcvk+TOPXyII4cchaGhFXKSEozmt5Q34G2r4MpjTLqkyLyaUrya0p++/Wd/Noh - l5SWH/LPOQkiVidJ4//SaU7SOM7JLE6hp5DXghrwecGlHjxj6vmUzGlEQRUQdHWnqDi8GJGzIo8v - aJbziq94xThF7V5ce9GcZmTh3ZGpV7Dep3Gaougreu3dBHFKvMgntwEM74qSMIZ+ghnTcYrdBRl0 - k9JSvNPv5B8EC5jinBRF4B/M0nhBFhlMb+4kQULDIAIFeIUXYUCj/MK7hZEmMcyTWtv7o0ipw/51 - 6ecpTXDysqppXPg/pynMsiYhDkHAXNZ6ffH2HL6h6Zi8ic/5taYM0cjx0oVb6+Ds4jfZjLdzHHlp - ATMZZgcHB9PQyzJyliSw2GyFX8Gc3np32duEckPLhvEVWsZockCgHB4edtYmcfmnc8Ba/CcuSHYd - F6FPohjtDVSP8gBaEj/AhQ/vYHWDjDBdxuSqyMk0pXjdE7MsGk0pVPRybhuiSsCsldyBEDQbL8+9 - 6TV+62X4IQ2gOyo0mSRe6i1ADvY5kX1jc9w+YO1gV/8rYGpBdbV+HM2COdRn/y/46Eg8K1vxDrU2 - cCnwwuAPmk7IGVRmU8inXbmmNfFpVyP1qmgW3HiwV5LAvaFpBiqVIzo7/5WI7xzUmk04ufHCgk7I - 4fcn358cnfxwdPL80JFLyueHWwU5Lc0Dv/TpjLhuEAW56w4zGs7GYrxjMTFjZUBjTU8wGdYFFmzp - uLwlSOB/1K6WLaFC1UutkiIAqqni9IrKxEA9ddQ1pfgoUCf2x4EybJgFmlM2eJAxLNvJtmP0vHGR - Tqk7T+MicSNvQcewJuUGced8h4gr0yLL44V7TT3wzdnpmziCL1Pv9vSfXpjBn999V24fl6sjth2W - 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 - tgfkBQAAvhEAAGQAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3Yy - MDIwXzA3XzAxL29wZXJhdGlvbnMvX2F2YWlsYWJsZV9kZWxlZ2F0aW9uc19vcGVyYXRpb25zLnB5 - rVhtb9s2EP7uX0E4HywXNu32SwehKRC0W1Gg7Yqs+zAEgUJLZ5utJGok5cQtst++44skSnK9YqiA - JJJ4b3zuuTsqFyQVGS93l7XeLn+ZXJDlT7vQ2CtRHSXf7TWJ0jl5z1MplNhqfC8rIZnmoqTkKs+J - FVJEggJ5gIyi7jueQqkgI3WZgSR6D+T920/Na0r+AGgf9IMmvLQylRSfIdVECqHJVki0lDsplMDn - wnmdXNjwMiA7KAFDQUebYxBidD0nV7UW16C0E3zjBIU00b3as3IHihTsSFJWW+upkNK43sCeHbiQ - hJUZuee4vQ2QXKAdvrUxpsYcV2hGQuue/lzwJ7xAiDWpa55NtlIUpFAIr6YVryDnJQbgBF7lHEp9 - ze5xp5VAnEJp9rWWQO3vBB5SqAx4qlMVdfarlIiyU6K0WSpwi7maTCZpzpQiVwfGc7bJ4TXksLMp - UL9X4CigIrExOZvHE4LXdDo9L05Ee0snVuUvURO1F3WekVIYKmDkpeYIK8m4yUl+ROC5IjaaBdnU - mqQSzDrzAHilFFCQaZc2L8ItkcgRnZiMMq1ZujdvmTIPkqM58JHEFZOsQD/GZtzYNuqG2UhETPnf - NSKLoYfyotzyHcrbv7XbHRHbVssZ7OngEmc5/woyJlcobDF0wAdrPZUMzimFq16NHxjSuOLJAaTC - kNodXX18S/w7aqK2gJMDy2uIyfTZ+tl6uX6+XD+d0ianDh/HC3LZEsS8zGBLkoSXXCdJpCDfLvx+ - Fx6YRbChRS9O5Iw1YS6jSROniR7czWC11USBzspAKHCAYqG7vmAADMqFux4E5XZhYrI33a5zrnTU - yjbyC+wWqaUAAlArLYpkDwy7oLr8IEpYEMnuL39jucLbJ0/aakicdV9GHvY3gH2VIZmF6z2sKS2i - 6k0JGsNoS8zy1NYJrqlUclvuWBmtQbuITcu20PatZ1cTdEw+7aF9ahw7d7RT0scKAh2l5dBgxpGb - fQBi4m+CMsXuyrIMG7gW1pOvsKG1jRC5QS5GAV3LUllh1x/M5LHND6ES5U7xzPQB6DITkCBrhYce - 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 - wW8CzMSj8o8Nzid1IB41hkXAonWA9DB80Gd8sDNsl5O9p57mKX33M7z9DO87n+Hth2dd9ryC4dlj - p1rqVNp4sPXyo6wT/Pjxdc2zvmWSk9eZrSY4WAfzDXzy8ve4ccxbqdX/+wxmP7l4sckFxu+aYQWS - 9M8ntpgKINOrp58sSDEvNCXoA97PPxt4vY3/t/bqfZVB+Xp9j75vwV97C15rC19t460lwQv32nA8 - vWPpHls8DbYoCqjEA31oQQMVm8CG+oZOsaLPp1/K4mf+rUmb0kMPK0BmkleyKVf5ALChemXxzRfN - lwVSaPvrRfOcLRBA2goAtpzgtyGAnnr+DIV8gwkVpPZ+PLUfT33n46mtXzHbz7W67PkO51oIU76P - odbrGmW1vZq1zpineDNrJ7O1p3xLCu/rBfPVA/cwSDZH7n9TgL7HzOswM07XUvVfviBivjJj1tbz - qlbjhZ4tgfM5VAJ/By/3PB2QxlyKBYMdYgUmsCJ2B4UsiL7KTGnOgfC4L2maE6EubF5cGvrDLO4E - 6cW1GVgvrmcD7aXA58bRxfXQ59ntcXXbNrbg6+Lqx9ldVE+Lt/GSg7AOD5XBu6E1BlkfmMdrDaBv - JdkU1OO1JbDvkLsVuM/V6AP4reLWgfwW8zYG+h32vRDYrwdKJ+DHa6egXzGUCK+QZRz2QQT0EQ1h - 8QJHx72HfaVZZ40Y1V+h23HPkcfEI/sOvDbsPXLSb+8/pPnNHsTYkDoWPyRvtf9I2kBO+T5LpNfS - vtQ7CZNcO3Rq/UsvXLFqEWI32x3HZzHsJ4u8gFXRiGJH69sMo+a/aJ9R7ydcGra+ebeb9gGgOKpg - gtwE45cS3dRmT7EH+nug/zcA+pheuwb7e+y9x97atcfeneL22HuPvffYe4+9zTL8GPz9aHD9P1BL - AwQUAAAACAAqPJhRr9pDGkAKAAAaRwAAcwAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv - djIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jaXJjdWl0 - X2F1dGhvcml6YXRpb25zX29wZXJhdGlvbnMucHntW1tv2zgWfvevIJwH2wNZSYoFZuEdFwgys0WB - thNkuw+LIFAZibY5lUUtSeXSQea37+FFEinJl2ScS2ctYDKWeHhuPDz8DskeoJglNJtPCzkb/713 - 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 - dyvmMXrDLikWaV3Zhs4cPUE/68uTzVTeF6az/kzamOgH4KyRYpv8m+m2+TNoFZ9Lm3UbT7sZuBre - bbY4oL5FGFKRLLIMtYEslRe6rpedRnqnsBmNN1Dc7HYMFzj8pFLgltJrkNBepqnXzSNEc3UVveZL - BmsdNw3nw6zhiQ28WL1CoEySmZYPIgBJ5wKBRZ1yJpX+/finZAuR1GBsElUP5+oth4k/t5fUPWh3 - GaqMNPGBW+CFUrDKT4KWkF0HQxoH5R+jT7H/zTvB3oxvakTV8aknbVSU19cr0JOQW/D01wJPf6Fr - 8du7qIi8OmUDUmwtHeNE92AfD8Bs6i7bW7Ikt4OcR0A3a3QpIVttW5TbFuW2Rekreu9b5G1vc9V6 - fsDe5v1uiZ+isfm82pmtK9HO3WrfYmYzAutoLqPFp3M1OhnfXpPH/vFxIw1XX6v7Nl49ms6drV+Q - f9SjUHUWiuwL4pGQkU01D3OVW/7yQ/Shr3fbK9uiqC2K2qKojaConomghEYo9AnObv3T/0HicyoV - 0/avxbaY7IfAZGciqe9A8AdmFW3/PKWtCg5P+lL9OjhgQ5gQm93rYsKgsaCnv/p++fxh4vPAiWsp - 8fL/HaxWIK+NhJ4e293tBYMjo7/Crp1dgCK06pC7v9ytWufVxG3L/NFb5l1XmJLjGnyoAiFB3Sp3 - f5xabetaa642vr7EXqGmp8VDNpO371o88bsWa7lNfR9Rk3dfybidwfALG56f3f2ti83/yd7Dvwey - OaWf6GWS9fofz/K1km6em/XU4qZKz/ZNlIeDZ/j5s++5rAPTrJ/cDtU8ui5cw8/2hZjn/kLMytbi - D9oP/h9QSwMEFAAAAAgAKjyYUQ95o+h2DAAAEYsAAG4AAABhemV4dF9maXJld2FsbC92ZW5kb3Jl - ZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVf - Y3Jvc3NfY29ubmVjdGlvbnNfb3BlcmF0aW9ucy5wee1c32/bOBJ+z19BpA92FraS9mUPvrpA0Nsr - CnTbIJt9OASFyki0w60s6kgpibfI/e03/CGJlGTFTt3ESSlgu7ZEDmfImeE3n6m8QBGLaTqfFvls - /I+9F2i8tQuEvWXZktP5ZY6G0QH6nUacCTbL4T7PGMc5ZWmAjpMEqUYCcSIIvyJxAH0/0IikgsSo - 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 - OcWxISqSlz/QYa4HPtAhP5ofUqffBjMKmX8sMTIZX1Es+bfyJfzB7bM9/bGC8tppFvLQ5Bp4bHFR - t4fYxBzcr+mkLs5SwVxhEqkoFgsMReczoS+7bPNMpmcyPZPpmUzPZHom0zOZd/2OrG8KBSX+0Bvo - 8+A2u6DB06M5NUepOU1jRB+3aXOalTzPbXpu03ObP/51st5Uev93zXrFvqmF7hIRuoEFu06NbmLK - Y5Kl65f5njd9dN70uzGYvDyTai7PpD4Ok9rLvj1JUlVZpGlVE4gbsavPkFX1bKpnUz2b6tlUz6Z6 - NtWzqStPQFgI/vnRp0+PNu08HapN8gdEPYnqSdQdIlH7Mug9zoh2ypHHRGtBO0OT9qm867xor+47 - Q4R6AnQ3CdDNYZO8PONpLs94Pj7j+WyYzibF+X9QSwMEFAAAAAgAKjyYUUqyqMGMCQAANEwAAGUA - AABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29w - ZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfZ2F0ZXdheXNfb3BlcmF0aW9ucy5wee1cbW/bOBL+7l9B - pB9sLxQlKQ7Yha4uEPR2iwJtN8hmPxyCQGUk2uaeLOpIKom3yP72G76IomTZ8ealca4ysKktDmeG - w3l5NCT2FUpYSvPZpJTT/Z8Gr9D+o32A2TtWLDmdzSUaJWP0iSacCTaV8JwXjGNJWR6i4yxDmkgg - TgThVyQNYe5HmpBckBSVeUo4knOCPn04qx6H6DdC3A95IxHNNU3B2R8kkYgzJtGUceCUGSqggN8L - I3XwSquXEjQjOQFVQNDl0lNxdDpGx6Vkp0RIQ/jeEDKutHs3x/mMCLTAS5TgUnNPGOdK9CWZ4yvK - OMJ5iq4pLO+SoIwBHzrVOiaKHRXAhhMnPnxc4w/oAkwsUVnSdDDlbIEWAswrw4IWJKM5KGAI3mWU - 5PIUX8NKCwZ28qnxnyUnof4bk5uEFMp4op7KyvRnzsHKDQksAwGziurj6a8n8ITwAH1mJ2ZsVYad - FGK+iFsMjk8/VdPMvDCshhZgyUwMBoMkw0Kgn28K4ChOWSnJezDqNV6KXwtiPE2M2KVyjXE0QPDZ - 29vbTI6Y+xoO9JR/sxKJOSuzFOVMeRwon0sKM1FK1dZnS9hfKpDWJkCXpUQJJ2ocWzvbSQkBQiyN - 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 - Zun005+Sl55lakUXN6i+2IP0bUEJ+Tz0UH4TSKGXeD2ssOjq0EI+/en9Sz+9by08vdDCX74DjXcS - eJ4+HK9KLgaZPvRo/0+lVz1iShE9BF2qeZig03xIelpcdppEwr0zYKCy5PMqm/6KQH9FYHOc49Qo - jdafwco+Kcw8Uttf/mgpILXU7C0X1Jfr+3J9X67vy/V9ub69XF863K0V6rEIFztZqn/5Vfp1g/lR - 70Y0Bf0XnirFFOzl4iZw4/XGWdNDM6JjEA/YOW5MLgqRaf6VEmUpP28qmJn85xmTqD7tWJt2yIqy - 0F/dAZb3lTj15fYaf60WfL/c4wSCWPTwsvDjpSJyQ4JUWB6So5lRQq4hBNPkq9pc9T/CkYGjoKlX - /tpSlfyxUHCzK2jNXvJnsywmf54nmymkP15WU5N32zXX9884mha2IfPIn+4MpI3qcTMR+ajKZssM - Fea84Wgcsq40Rz5rUp1Gkk3THfncM0lpkXuvRMWo0ZWsNIpbl7A0DG/jpKVlfM+UuFQNpTW5kM9W - L1trhgo+5rIc908hAeEJjqHzXJ4FdLr/UrPWqDGuHshsOZ8xNnHHnEY+G+Y1hvThuY0afj2/cRak - CvRfod+s7weqASmzzgr4NaRG1TTFJbecTiU36oIvo4qBePVMyo/ICpaTJCElpTFKqeP1KcwaEPCc - 2Uw1bWlKUp4tH7EHX89C+tSgTw12PTXY0USgx+U9LpdPj8t7XN7j8h6X7zAuvxcKvzfELjxkzPC2 - vhUFxrudcwPzDdDyO31jImDmJUrEmVgwTr9phCovO3d/g4p9yrcjfwawzW9ScZZEi8lfKXlV3hX6 - /gTkPmlObri1rXf86ehU37ZuuYpVSm+7k3XnLGi9MtaQ+cu4rlXG1o0GocOuY7pT59PdrnXZTrG/ - 19Xf6+rvdfX3uvp7Xc69riJbGW7gmbd224ulu/l32T/qZa/10GP3rn81goMnPDGpRty2+18HuaLH - DEPG9z9QSwMEFAAAAAgAKjyYUeXQCm+pBQAAEREAAG4AAABhemV4dF9maXJld2FsbC92ZW5kb3Jl - ZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVf - c2VydmljZV9wcm92aWRlcnNfb3BlcmF0aW9ucy5wea1XW2/bNhR+968gnAfLhU07fekgNAWCrisC - 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 - hLqiQoDM7LVGQxOuFzvgzep06s1Xy4YFxKzAY3O3KaCibEGKtywX2kDeBsj2pBCY0zg1DL5A9H1W - mH6k8gv+6GhvdZxLWPmuP5LojyT6I4n+SKI/kni0I4kqf+/tVAJT2rM8l3jUI4lteu3vROLJnxPg - /TYU8Pxqt0Yv4L41230LtXcUcJJ1alEWV5drVaH0NVq9Rus8ItherPVVVl9l3b/K2qFkgjTTl0p9 - qdSXSvsolfripms+T6C4uW3xgQBs19KjLzb+X4sNe/98PkVGWWXgWR59qFfSH/o1dK17D196+NLD - F0vRHoV0zecZohCd454HEHmFb2P/48HQyH1ggNl77rT94z5p3PCo2+PtXjD+SWmYdbxAYbWi+i7d - k+/S9S/obn1BF1fLlrdzkWTzq7l3eDUWmV48/Ou1SsyTf2l2U/HwJF+Vfbrvwd73JdZNG5x2x/Ya - t3839am/m1qreJ9Pw6FYFTHL7nused9zzA+gQgYbY9xEAFnLr2IZA5DfCjSyB/yEh2EyZIkdMk1B - pZwHwFg1YZ0YaGew1R9Ybj2wRGAj9Z+egXXwjTowp/ErYI1fHrrVqeUpFKLRnX996CnADcwWqaDg - LVq0LEYJ/Q7JkiXf1Kpv7qBYipY0zb20q6VYXFaPCfNUZ2OxuHZrMBbXozUaS4GP2HAsZT52h7C4 - bjZ58+4dw7bQaekcFtfmDmIX1cN2EvFSsKXDQuWC2XE2DtmmNiVeW1qVrSS7nrbidcdeZ4fcO/U7 - jRqbep6t4rb1PVumt3Pvs2N+f1P/sx4onT1QvPZ6GqsZKixeyHI2GJYAfRLGMHiBQH/jBlNp1rkv - 1Sa99x6siYlbHggrVfbWhnVsWi8hX5CfrL+s1QBfxlUKLLacJ9cLYJfcyhu1A+UW7DOqudZrnjr7 - EU3BETSZMVqFEQo73H7u6wCEp1qHQeX1P1BLAwQUAAAACAAqPJhR2IQ4+EEKAAAuRQAAXwAAAGF6 - ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0 - aW9ucy9faHViX3JvdXRlX3RhYmxlc19vcGVyYXRpb25zLnB57Vttj9u4Ef7uX0FsPtg+yNpNUOAK - 9xxgkWuvAZJcsE0LFEGg0BZt8yKLLkXtZu+w/e2dISWKpCTb2Zdkg1rA7dnicN44M3w4dJ6QhUh5 - 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 - Qmn57PUKtGaogJKV5cVfCnCbZziFzktZJ++Nv5VmnWF7Wj+s2DN6Nz5xSwQvnx1RvCH9ciSvht9E - 896E1CHtE/Sz818bNVCNmWeFwloSgTog98mdoFPLBLbhiEnNSYJm7hAmZANTSrKYksohpeTpdsDe - 2Ilvg9ZvDcXreHvnU4z7AeD1c4YHPKwY0P6A9v9OaH/fSP++jghKgUNqMaQWzjOkFp3ihtRiSC2G - 1GJILbxt/6EPASDz+D9QSwMEFAAAAAgAKjyYUdrm4R/8CgAAOV0AAGkAAABhemV4dF9maXJld2Fs - bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX25ldHdv - cmtfdmlydHVhbF9hcHBsaWFuY2VzX29wZXJhdGlvbnMucHntXHtv2zgS/9+fgkgPsL1QlLQ4YA++ - dYGgu1cU6Au57gGHIFAZiXa4lUUdSSXNLrKf/YYPSaQethu7SbqVgKa2OJwXh8PfTJk+QTFLaLac - F3Jx+I/RE3S4tweYvWD5DafLS4km8RS9oTFngi0kvOc541hSloXoJE2RJhKIE0H4FUlCmPuaxiQT - JEFFlhCO5CVBb159KF+H6N+EVF/kZ4lopmlyzn4jsUScMYkWjAOn1FABBXxfGamjJ1q9hKAlyQio - AoIubhwVJ6dTdFJIdkqENIQvDSHjSrsXlzhbEoFW+AbFuNDcY8a5En1BLvEVZRzhLEHXFMy7IChl - wIcutI6xYkcFsOGkEh/u1/kjugIXS1QUNBktOFuhlQD3yjCnOUlpBgoYghcpJZk8xddgac7ATy41 - /r3gJNQ/I/I5JrlynqinsiL5hXPwsieBpSBgWVK9Pn33Ht4QHqC37L0Za8uwk0LMV1GDwcnpm3Ka - mReG5dAKPJmK0WgUp1gI9JbIa8Y//YdyWeD0JM9TirOYiHc5MdEmJuxChcd0NkLwHBwcbJ6CWPUx - HOlp/2UFEpesSBOUMRV5YEQmKawiSqgKgfQG1pkKpLUK0EUhUcyJGsfW33ZSTIAQSxMlloTquEU3 - IEQFEJYSx5fqLRbqC6fAjlhNZjnmeAVyFM9ZyVtNVxsJ4h4i7H8FOBlUd+lZtqBLoNd/F8Y6xBbV - LMPQmwNDFKf0d8Jn6ASItR/NAjhj3pSErJvkjtpp9ArDrslpdEW4AJUqi07ev0L2Xai01g5HVzgt - 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 - nchyW6YUCqOLm8hPTFtD411vhLwG8QLwQtqPZIWqAnELmT4gvB1uSGy8IaHglDT/bQyE2CfigauN - OLeFgHZCCe/xkiR7w0RfD2io7ZhzAmtGyibeJCOfISXR7JPeWu1f5lJNkoqmfbT19e7Lx2n+dieC - 3k5++WzX0S+fe+vsVwLvu7FePrfrfH33RnvXwnY03MtnfeO9j+rrNuDVo4/uHg9V4bylNR7Zuu6+ - ejZ0+DtJtu3yq+eOvfkeuXfqz1s11vXoO8Vt6tN3mLd1r77Hvgfq1zcDpbeNrp693kY3DDUeLWV5 - 6Z9mQJ9BXZfjpQK7a9N/rVnvqTFtVhx77t3bmPjCCxfq2bJ9b0l3b+Fr89ttfG9BmkXaE/Sz819U - tdCVXWeNBjvubTRLTZ/cSTqNUncLMDNpxEnQro/DhOSwqiSLKaljUgmfbr5fsQELPIICp1nCdBUs - e/mF3W1KE9fmdmEyVAtDtfCXrBb2XRsMUH2A6s4zQPVecQNUH6D6ANUHqI4MVL8TML8j6v4/UEsD - BBQAAAAIACo8mFHEfLYO5BMAADBFAQBfAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 - MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19uZXR3b3JrX3dhdGNoZXJzX29wZXJh - dGlvbnMucHntnW1v2zi2gL/nVxDphzgLx02LBXbhOxkgSGdnA7SdbCbbi0VRaBSZtrmVRS8lOZMd - 5P72ew5JSaRebCVxbDmmgOnYFl8O3w7PeXRCvSEBH7FocpYm45O/HrwhJ2u7oLALPr8XbDJNSC84 - Jp9YIHjMxwn8LuZc+Anj0YCchyGRiWIiaEzFgo4GkPcjC2gU0xFJoxEVJJlS8unyJvt5QH6lNP+S - /J4QFsk0c8H/TYOECM4TMuYCSgpVKkgB32eq1oM3UrwRJRMaURAFKrq9N0TsXR+T8zTh1zROVMKf - VUIuULqLqR9NaExm/j0J/FSWHnAhsOpbOvUXjAviRyNyx6B5t5SEHMphYyljgMWxGIoRNK9+sN7O - P2Az6OKEpCkbHYwFn5FZDN2bDOZsTkMWgQAqwUXIaJRc+3fQ0jmHfrJT8xAST7LEH69/uYJfqOiT - z/xK3TPT+/9NBc0yDXwx80oFnF9/yrKpfINBdmsGvRLGBwcHQejHMflMkzsuvv+vnwRTKuJf5lRN - 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 - VTLcageuo/V0rJtEWiGwVp7SWEevw9+gDhvuWnd/xdadAmrfR99u6906DxZM9Qqv1Wc6RaCKr0mD - T0v4aNhIwMOtNw9dFe7bRHRoXHb6mZtjn2XdUZ/kmdPiiPHI7Pttnem5O+Ohz/eac9jhmx2++W5P - +u6NMzoGghJSgYXPUP50D/8nii8xF0Sat652qOW7QC0XLKm7+uqLCpvSvEDSVEU9HrnRuJVetwSN - VMN2U2gUeFo//QHni0dBS08AlzaS+OKHAmgW+zRhw2NCnrsdDL/RmgrV8TKqCtid7Y5s+d5p3bP9 - kfuz9WpM0Emda0WhMmDdQC3flrSWrSTUvmDNWx85NpWqRTmdwns1Gx+rLbw7/l57/L2qDdw+CW9Q - rz4Ub/WT73KyfS+/qmughz9Yv6eGz+4ofrPS+HEP5etQM3XSjZ9jn+25/ZaAhbq+9RWATQCGWd31 - IMOhawMNde3eFXju7wr0dpCeZfeu2n4pFZu/NrCVVwIwYI0mRBMKd+LnhDV3Z+lrz9IVBJLmf8jA - jb4SDxD1YtIWerlXpj/Bc5J8M455CpCgNl3OCawaqTpgo4zcQKCh2Ve9pdpvqqlOg6VpJ6y+9nZ1 - OZ1Ttd17W9vVtVmLu7oerdVtBT52D7q6bldZ9v496a5l7OhNV9fqHnUf1cP2qtWl02+Phazzbjgb - j2xVI1xda5rhnSSbNsTVdc82do/ce7WySzVWtbM7xa1raXdMb+O2ds/8nqi13XSU3s6zurZ6MG8Y - akxZyfKCPWQcwjOcwuC5Aqwrg32tWW+OGDerhi23u0ufuOO7AVqVb+54e7Zs1kj76Bfn31NbQKhc - Ig3cOl4taFZ6PrkTLxoV5gr8MWosbdAuR8OE5LAQJIspqd1ICR2vfwXAS9ZPWEU064XoYhm5Irvq - h4cuFVz57UJhh9536P0vit6bm2/baH4Hrnfg2rl24LpX3A5c78D1Dlx/z+C6N5feBWzfEUn/H1BL - AwQUAAAACAAqPJhR/cs0rQUPAAB5zAAAZAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv - djIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fcHJpdmF0ZV9saW5rX3NlcnZpY2Vz - X29wZXJhdGlvbnMucHntXW1v2zgS/u5fQaQH2Fk4Sro4YA++eoGg21ss0HaLbO+AQ1GoikTb2sqS - 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 - FGokPBvP4cSqD2s2cH5/ClPPzpFHzIRAH8NiDwI5G50soB1LJFDUQMzw0TFpBUxJhpH1pa4mROkL - T+mT6ybqFjSr4WEL6L/GKnjUANTxSvODw650CDVt+43ZdMRCXDyHdtbds5OIDESuJhepmVaLBEFT - 0mnZ9uTyoyJ8+qMXdkt9dPUFr8eXGmeY/QN+7xZ7tXCqC6+64JmriJZTc3CNzNfj6WzWD6O3o/y3 - u6gqacRx2lUc2A3TYxaXJKeDfuV3QEM8hpK+KT+nv6j1H2w1p9Yd0Z7f3oj2Vh/uwLBRzHFWYZEN - 9lRz+Wf90d2idjPbb8r5MNFZz6DZ1BpfHZrnheE2lpPyll45T9N8G9lXd4de0s3+30vGJD/1ynPT - Wsj2J05Wo35P1HYj2uR0pRL79uZeQeDqyWp1PewGvCspinbvm9Y2hlRKolE7OKTVuPM9aovhhiWY - kqEhu0Mbc31UfEH8eadZPIOfgyPw4Dzk62zPb+e26ZslgwmdwR7iFS8ekE7n1FW/EgQHkmmvK+bD - 83mUYUk1xCLl2HagcRUUy+cZurNrnR3ehGY3+Rgmy3CzU8sv3b30fllKceCmAMvmnwLRG3dgWtb7 - NqnVt/dLd/Ce3I/+BVBLAwQUAAAACAAqPJhR4O8Or0QKAAA+RwAAZgAAAGF6ZXh0X2ZpcmV3YWxs - L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fdmlydHVh - bF9hcHBsaWFuY2Vfc2l0ZXNfb3BlcmF0aW9ucy5wee1cbW/bOBL+7l9BpB9sLxQlKRbYg29dIOje - FQXabpF2FzgUgcpItMOtLOpIKml2kf3tN3wRRUqy7KZ5a88C6tricGY4HA6fGbJ9glKW0WI5r+Ri - /x+jJ2j/1h5g9pyVV5wuzyWapFP0mqacCbaQ8J6XjGNJWRGj4zxHmkggTgThFySLoe8rmpJCkAxV - RUY4kucEvX75vn4do3eEuB/ys0S00DQlZ3+QVCLOmEQLxoFTbqiAAn6vjNTRE61eRtCSFARUAUFn - V56Kk5MpOq4kOyFCGsIXhpBxpd3zc1wsiUArfIVSXGnuKeNciT4j5/iCMo5wkaFLCsM7IyhnwIcu - tI6pYkcFsOHEiY9v1/gjugITS1RVNBstOFuhlQDzyrikJclpAQoYguc5JYU8wZcw0pKBnXxq/GfF - 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 - dXhe8ocfZjWq1/OsXwFQSwMEFAAAAAgAKjyYUVwHonk/CgAAVEUAAGsAAABhemV4dF9maXJld2Fs - bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1 - YWxfaHViX2lwX2NvbmZpZ3VyYXRpb25fb3BlcmF0aW9ucy5wee1bW2/bOBZ+968g0gfbA0VJigVm - oa0LZDO7swHaTpHtLrAoCpWxaJtTWdRQVNLMIPPb9/AiiqRkxc2lSVELaGGL50by3PgxfobmLKPF - claLxf5fR8/Q/r09IOyElVecLlcCTeZT9JrOOavYQsB7XjKOBWVFjI7zHCmiCnFSEX5Bshh4X9E5 - KSqSobrICEdiRdDr03fN6xj9mxD7RXwWiBaKpuTsVzIXiDMm0IJxkJRrKqCA72utdfRMmZcRtCQF - AVNA0fmVY+LkbIqOa8HOSCU04c+akHFp3ckKF0tSoTW+QnNcK+lzxrlUfU5W+IIyjnCRoUsK0zsn - KGcghy6UjXMpjlYghhOrPr7fxR/RNSyxQHVNs9GCszVaV7C8Ii5pSXJagAGa4CSnpBBn+BJmWjJY - J5ca/15zEqv/U/J5Tkq5eFXLyursH5zDKnsaWA4Klg3Vq7Nf3sIbwiP0hr3VY10dhinGfJ0GAo7P - Xjdsmi+Om6E1rGRejUajeY6rCv2XclHj/F/1+Wl5wooFXdbay34pif5QTdi59I9pMkLw7O3tbcGD - mP0YjxTf/1iNqhWr8wwVTPoeTKMQFPYRZVQ6QX4FO00rpOyK0Hkt0JwTOY7NihumOQFCLLSfGBKq - PBddgRLpQlgIPF/Jt7iSXzgFccRYkpSY4zXokTKTRrZkl6EEng8+9lsNywymu/RqpkDvzhixheXS - Aj0eGKI4p78TnqBjIFYLqbfAGfNYMjLE5I4aNnqBIW5Kml4QXoFJdkbHb0+ReRdLq9WCowuc1yRB - e88Pnx/uH/64f3i0Fzcbq9dHewiaWVeRLzOyQGlKCyrSdFKRfBGZ+UZmYSJnQpFnJziOEiEfyRmn - mhM06A/BqOUEglZKQOQoADJXnU/oLAzQubMOjNKzkDapD+2sl0RMLGlDHsnEy2o+J+mSs7pMC7wm - EbrQkZGu6nPzhpapFmi+z+tKsHW6IhhSdDV7wwp4yfHl7J84r+DjDz/YyDGMJu7MFp0RcGZyAXlU - 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 - hNsKAAD6WAAAWwAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIw - MjBfMDdfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF93YW5zX29wZXJhdGlvbnMucHntXG1v2zgS/u5f - QaQfbC8cJS0W2IOuLhB07xYF2rTIde9wCAKVsRhbW1n0UVRetsj+9pshKYmk5JfESePsSsBmY3E4 - MxzOy8Oh0xdkwuMkm44LebH/t94Lsv9gDzB7yxc3IpnOJBlMhuRDMhE85xcS3osFF1QmPAvIUZoS - RZQTwXImLlkcwNz3yYRlOYtJkcVMEDlj5MO7z+XrgPyLseqDvJYkyRTNQvDf2EQSwbkkF1wAp1RT - AQV8nmupvRdKvZiRKcsYqAKCzm8sFQcnQ3JUSH7CcqkJf9GEXKB2b2c0m7KczOkNmdBCcZ9wIVD0 - OZvRy4QLQrOYXCWwvHNGUg58kgul4wTZJTmwEawSHzys8XvJHEwsSVEkce9C8DmZ52BeGSySBUuT - DBTQBG/ThGXyhF7BShcc7GRT098LwQL1M2LXE7ZA4+X1VF7E/xACrOxI4CkImJZU708+foI3TIzI - Mf+kx5oyzKSAinnkMTg6+VBO0/OCoByagyXTvNfrTVKa5+TfiZAFTf9Ds/zjgmkHywf8HD1iGPYI - PHt7e61UhFe/Bj1F+V9ekHzGizQmGUf/AlUzmcBekTjBjU5vYDeTnCjZI3JeSDIRDMepsaqZNGFA - SKX2BUOSKO8kNyAE3YRKSSczfEtz/CASYMeMJuGCCjoHOcgzLHnjdAwX8G7wo/8VYEpQ3abn2UUy - BXr1/0KvjvCLapZm6MyBoYSmye9MhOQIiJXptJmtMWdKzFZNskfNtOSSQmwskuiSiRxUqlZ09Okd - Me8C1FoZnFzStGAh2Xt1+Opw//Cn/cOXe0G5ldo+2gvIuHIHfBmzCxJFSZbIKBrkLL0YmfWOjGFG - 1oJGjp7gKooFPjgziPRMkKB/8UarmUBQc/GILAFAZotzCS3DAJ29ak8pvQrUSf1Sr3rK5KAiLclH - mFx5ISYsmgpeLKKMztmIXOpYiK5oZt5MilzyeTRjFNJuPj7mGbwU9Gr8T5rm8OsPP1SREmnJJrLM - lpwwcF52CbkRU13MJE1gb8DraBWeR8dBvRbjRS3aheTzjFUDRA0QHEBuyLwO5KBmJ28WrJ1bLoUv - 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 - eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRp - b25zL192cG5fc2l0ZV9saW5rX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHmtWG1v2zYQ/q5fcXA+ - 2C5s2u2XDkJdIAi2okDbFWk3YAgKhZFom60kaiTlxA3c377jiyVKVlwMqIE4ku7luTsenxN9AanI - eLlZ1Xo9/y26gPkv+6CzK1HtJd9sNUzSKbznqRRKrDU+l5WQVHNRErjMc7BKCiRTTO5YRtD2HU9Z - qVgGdZkxCXrL4P3bz8fHBD4x1tzoBw28tDqVFF9ZqkEKoWEtJHrKnRZq4H3hUKMLG17GYMNKhqEg - 0N0+CHFyPYXLWotrprRTfOMUhTTRXW1puWEKCrqHlNbWeyqkNNB3bEt3XEigZQb3HNO7Y5AL9MPX - NsbUuOMK3UjWwJNfW/yIF1hiDXXNs2gtRQGFwvJqUvGK5bzEAJzCVc5Zqa/pPWZaCaxTqE2/15IR - +52wh5RVpniqNRV19ruUWGVnRMhRVGCKuYqiKM2pUvB3VX7imr3j5bcrUZZYJePnz4q5JlATcWdW - bRpHgJ/RaPQzAxDNJYms0T+iBrUVdZ5BKUw7YPSl5lhayLhZl3yPxecKbEQzuKs1pJIZOfVF8EYp - Q0Wq3dJ5FW6bCfYIYlaVak3TrXlKlbmRHN0xH0lcUUkLxDE+46NvY266G5sRl/3fGquLoYf6olzz - Derb/7XLDsS6sXIOOzYo4jTn35mM4RKVbRVd8QNZxyRj54xCqTfjO4qtXPFkx6TCkJqMLj++Bf+M - mKhtwWFH85rFMHqxfLGcL1/Ol89H5Liqrj6uN2DVNIl5mLE1JAkvuU6SiWL5eubznfnCzIKEZp04 - sWusC/MxliRxlojgLnrSxhIVWi89pQAA1UK4rmJQGNQLs+4F5bIwMdmLNusN05NG9ag+M1woapmy - ZCNFXSUlLdgMNtiL93Tv79JmZ/gHuK+/JSdP01ppUSRbRpFI1eqDKPGhpPerP2iu8PLZs2YzJS44 - vw/9ql0z7G+2Q7Yz5JUxTTkuHzYmhV1VgsJ9apGDeEibvG+7gXRi+LxljQCsAIzA+DZQSAJvXMKk - daf3FRv2prTso4b1cnCh/82w867RgNdehU8dm7KExej6PzEfgBhayf+LM+xjACzjuP+7XRKDvwio - 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 - ex+4LuOrdd18Huuv+fb9mq9xoNuLQ3Hl8GkCAOjqJnSjdWsMcd/bvLcgHkACVEMsRJW6CPKiBgzY - C/zQX5ttvDbDOi3Uf+0AzvWZOlW79XWx1heN7nR3dgZnoHjnrxo9XvXEwMo5hT2g1Rl4lNGvkDKS - 7LMMknYdwbONoWlXlFV9o+qxmhbdIb2yn1Q92/WVquf79JeM9MfrM7Xk3a5b690bRF0b29Eoqp71 - DaNVVI/bOMJHltYVK2TceUtrHLJ1XSl8NnSmOkm2vbnDZ8fW1gq5O7W3tBrrWlyd4ja1uTrM27rV - tcK+79TuajrKypYXPg/6z20VQ4kXK1lO+k8yoIeTLUyeIxhdm/5rzVZWjXHzi38P3HLTPnHHWzl8 - tmy4adL7N92k+e3Gm7MhzTPSM/Kz9d/GtNCS3meJ7jou95onPJfcSjqN270OsDJq+IXXvgL0Y5rD - LtJsmtDaB1HYePMl3Iba/x2OHs3DRtfR4mFPER+dU4RtVvsM0QP6HtA/CUD/ROF7j6Z7NI1Pj6Z7 - NN2j6R5NPz00vRN23hIY/w9QSwMEFAAAAAgAKjyYUXwWkvzlCQAAc0cAAHAAAABhemV4dF9maXJl - d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3dl - Yl9hcHBsaWNhdGlvbl9maXJld2FsbF9wb2xpY2llc19vcGVyYXRpb25zLnB57Vxtb9s4Ev7uX0Ek - H2wvZOUFB+zCWxcIuteiQNstcjksDkGgMhZtcyuLOpJK4i1yv/2GL5IoSlac1GmTrgVs1haHM8Ph - vD2U3H00ZTFN55Nczka/9PbRaGsXMHvFshWn84VEg+kQvadTzgSbSbjPM8axpCwN0UmSIE0kECeC - 8CsShzD3HZ2SVJAY5WlMOJILgt6/PStuh+hfhJRf5I1ENNU0GWd/kqlEnDGJZowDp8RQAQV8Xxqp - vX2tXkzQnKQEVAFBlytHxcHpEJ3kkp0SIQ3hG0PIuNLu1QKncyLQEq/QFOea+5RxrkRfkgW+oowj - nMbomsLyLglKGPChM63jVLGjAthwUooPt2v8Hl2CiSXKcxr3Zpwt0VKAeWWY0YwkNAUFDMGrhJJU - nuJrWGnGwE4uNf4r5yTUfyNyMyWZMp6oprI8/ifnYOWaBJaAgHlB9e70949wh/AAfWAfzVhThp0U - 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 - AAAIACo8mFH9ynv2bQcAAFpBAAAXAAAAAAAAAAAAAACkgbIFAABhemV4dF9maXJld2FsbC9faGVs - cC5weVBLAQIUAxQAAAAIACo8mFEMfSNIfg4AANJSAAAZAAAAAAAAAAAAAACkgVQNAABhemV4dF9m - aXJld2FsbC9fcGFyYW1zLnB5UEsBAhQDFAAAAAgAKjyYUYeeG/4xAwAAtQwAABcAAAAAAAAAAAAA - AKSBCRwAAGF6ZXh0X2ZpcmV3YWxsL191dGlsLnB5UEsBAhQDFAAAAAgAKjyYUU1xj2igBgAAQygA - AB0AAAAAAAAAAAAAAKSBbx8AAGF6ZXh0X2ZpcmV3YWxsL192YWxpZGF0b3JzLnB5UEsBAhQDFAAA - AAgAKjyYUW7PRlo+AAAASQAAACIAAAAAAAAAAAAAAKSBSiYAAGF6ZXh0X2ZpcmV3YWxsL2F6ZXh0 - X21ldGFkYXRhLmpzb25QSwECFAMUAAAACAAqPJhRJbdT1P0FAADIIAAAGgAAAAAAAAAAAAAApIHI - JgAAYXpleHRfZmlyZXdhbGwvY29tbWFuZHMucHlQSwECFAMUAAAACAAqPJhRducxdOUZAAD6xgAA - GAAAAAAAAAAAAAAApIH9LAAAYXpleHRfZmlyZXdhbGwvY3VzdG9tLnB5UEsBAhQDFAAAAAgAKjyY - UWTW3YnzAAAA/gEAABoAAAAAAAAAAAAAAKSBGEcAAGF6ZXh0X2ZpcmV3YWxsL3Byb2ZpbGVzLnB5 - UEsBAhQDFAAAAAgAKjyYUbOEssV/AAAAPQEAACAAAAAAAAAAAAAAAKSBQ0gAAGF6ZXh0X2ZpcmV3 - YWxsL3Rlc3RzL19faW5pdF9fLnB5UEsBAhQDFAAAAAgAKjyYUUR/yGbgAAAACQIAACcAAAAAAAAA - AAAAAKSBAEkAAGF6ZXh0X2ZpcmV3YWxsL3Rlc3RzL2xhdGVzdC9fX2luaXRfXy5weVBLAQIUAxQA - AAAIACo8mFEwHwySqxMAAHO3AAA7AAAAAAAAAAAAAACkgSVKAABhemV4dF9maXJld2FsbC90ZXN0 - cy9sYXRlc3QvdGVzdF9henVyZV9maXJld2FsbF9zY2VuYXJpby5weVBLAQIUAxQAAAAIACo8mFGJ - an9EpAAAAJIBAAAoAAAAAAAAAAAAAACkgSleAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz - L19faW5pdF9fLnB5UEsBAhQDFAAAAAgAKjyYUcB8kXY6AQAA3wIAADQAAAAAAAAAAAAAAKSBE18A - AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvX19pbml0X18ucHlQSwEC - FAMUAAAACAAqPJhRY8EUDCsDAADLBwAAOgAAAAAAAAAAAAAApIGfYAAAYXpleHRfZmlyZXdhbGwv - dmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS9fY29uZmlndXJhdGlvbi5weVBLAQIUAxQAAAAIACo8 - mFGqIgxiiWYAAIEiCABGAAAAAAAAAAAAAACkgSJkAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z - ZGtzL3YyMDIwXzA1XzAxL19uZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50LnB5UEsBAhQDFAAAAAgA - KjyYUXAkwymoCQAA0m8AAD0AAAAAAAAAAAAAAKSBD8sAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk - X3Nka3MvdjIwMjBfMDVfMDEvX29wZXJhdGlvbnNfbWl4aW4ucHlQSwECFAMUAAAACAAqPJhRtBwV - CbsAAADwAQAAMgAAAAAAAAAAAAAApIES1QAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 - MjAyMF8wNV8wMS9tb2RlbHMucHlQSwECFAMUAAAACAAqPJhRVp7NnJ4AAABaAQAAMwAAAAAAAAAA - AAAApIEd1gAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92ZXJzaW9u - LnB5UEsBAhQDFAAAAAgAKjyYUcB8kXY6AQAA3wIAAEAAAAAAAAAAAAAAAKSBDNcAAGF6ZXh0X2Zp - cmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvX19pbml0X18ucHlQ - SwECFAMUAAAACAAqPJhRY8EUDCsDAADLBwAARgAAAAAAAAAAAAAApIGk2AAAYXpleHRfZmlyZXdh - bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9fY29uZmlndXJhdGlvbi5w - eVBLAQIUAxQAAAAIACo8mFHnGXyVnREAABueAABSAAAAAAAAAAAAAACkgTPcAABhemV4dF9maXJl - d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL19uZXR3b3JrX21hbmFn - ZW1lbnRfY2xpZW50LnB5UEsBAhQDFAAAAAgAKjyYUZQFrzHnAAAA6AEAAD8AAAAAAAAAAAAAAKSB - QO4AAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEv - dmVyc2lvbi5weVBLAQIUAxQAAAAIACo8mFG8kLfl6CEAAPMlAQBHAAAAAAAAAAAAAACkgYTvAABh - emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL21vZGVs - cy9fX2luaXRfXy5weVBLAQIUAxQAAAAIACo8mFGD877J7H0BAFI7DABGAAAAAAAAAAAAAACkgdER - AQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL21v - ZGVscy9fbW9kZWxzLnB5UEsBAhQDFAAAAAgAKjyYUUSk0541kQEACHcMAEoAAAAAAAAAAAAAAKSB - IZACAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEv - bW9kZWxzL19tb2RlbHNfcHkzLnB5UEsBAhQDFAAAAAgAKjyYUW4b+KKSEQAA6U8AAF8AAAAAAAAA - AAAAAKSBviEEAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf - MDVfMDEvbW9kZWxzL19uZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50X2VudW1zLnB5UEsBAhQDFAAA - AAgAKjyYUUIT+JUnCwAAYLIAAEwAAAAAAAAAAAAAAKSBzTMEAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv - cmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvbW9kZWxzL19wYWdlZF9tb2RlbHMucHlQ - SwECFAMUAAAACAAqPJhRgt3BtP4HAACcMQAASwAAAAAAAAAAAAAApIFePwQAYXpleHRfZmlyZXdh - bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19faW5p - dF9fLnB5UEsBAhQDFAAAAAgAKjyYUUJPJNwlCgAAu0gAAH8AAAAAAAAAAAAAAKSBxUcEAGF6ZXh0 - X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9u - cy9fYXBwbGljYXRpb25fZ2F0ZXdheV9wcml2YXRlX2VuZHBvaW50X2Nvbm5lY3Rpb25zX29wZXJh - dGlvbnMucHlQSwECFAMUAAAACAAqPJhRo6b1ySkGAACnEwAAeQAAAAAAAAAAAAAApIGHUgQAYXpl - eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRp - b25zL19hcHBsaWNhdGlvbl9nYXRld2F5X3ByaXZhdGVfbGlua19yZXNvdXJjZXNfb3BlcmF0aW9u - cy5weVBLAQIUAxQAAAAIACo8mFFSPGbbwhAAAH7tAABjAAAAAAAAAAAAAACkgUdZBABhemV4dF9m - aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMv - X2FwcGxpY2F0aW9uX2dhdGV3YXlzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRM1ZeeKgK - AACfXAAAagAAAAAAAAAAAAAApIGKagQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy - MF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19hcHBsaWNhdGlvbl9zZWN1cml0eV9ncm91 - cHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFHUYzib5QUAAL4RAABkAAAAAAAAAAAAAACk - gbp1BABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx - L29wZXJhdGlvbnMvX2F2YWlsYWJsZV9kZWxlZ2F0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAA - AAgAKjyYUTojh8HyBQAA3BEAAGoAAAAAAAAAAAAAAKSBIXwEAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv - cmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fYXZhaWxhYmxlX2Vu - ZHBvaW50X3NlcnZpY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRyWft7HcGAAAAIAAA - bwAAAAAAAAAAAAAApIGbggQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8w - MS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19hdmFpbGFibGVfcHJpdmF0ZV9lbmRwb2ludF90eXBl - c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUUieUSAtBgAA8xIAAHMAAAAAAAAAAAAAAKSB - n4kEAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEv - b3BlcmF0aW9ucy9fYXZhaWxhYmxlX3Jlc291cmNlX2dyb3VwX2RlbGVnYXRpb25zX29wZXJhdGlv - bnMucHlQSwECFAMUAAAACAAqPJhRRl8H32YGAAA+HwAAaAAAAAAAAAAAAAAApIFdkAQAYXpleHRf - ZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25z - L19hdmFpbGFibGVfc2VydmljZV9hbGlhc2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR - DIDopK0FAADtEAAAZwAAAAAAAAAAAAAApIFJlwQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr - cy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19henVyZV9maXJld2FsbF9mcWRu - X3RhZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFG44I64zQoAAMteAABeAAAAAAAAAAAA - AACkgXudBABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1 - XzAxL29wZXJhdGlvbnMvX2F6dXJlX2ZpcmV3YWxsc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA - KjyYUWGXHlMTCgAAnksAAFwAAAAAAAAAAAAAAKSBxKgEAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk - X3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fYmFzdGlvbl9ob3N0c19v - cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUXuPwOalBQAA1BAAAGYAAAAAAAAAAAAAAKSBUbME - AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3Bl - cmF0aW9ucy9fYmdwX3NlcnZpY2VfY29tbXVuaXRpZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAI - ACo8mFE0yNn3IAwAAPaLAABiAAAAAAAAAAAAAACkgXq5BABhemV4dF9maXJld2FsbC92ZW5kb3Jl - ZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2Nvbm5lY3Rpb25fbW9u - aXRvcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFF49VEfGgkAADJCAABjAAAAAAAAAAAA - AACkgRrGBABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1 - XzAxL29wZXJhdGlvbnMvX2Rkb3NfY3VzdG9tX3BvbGljaWVzX29wZXJhdGlvbnMucHlQSwECFAMU - AAAACAAqPJhRhHiasqQKAAAiWwAAZAAAAAAAAAAAAAAApIG1zwQAYXpleHRfZmlyZXdhbGwvdmVu - ZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19kZG9zX3Byb3Rl - Y3Rpb25fcGxhbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFGATglgMQcAAH0gAABlAAAA - AAAAAAAAAACkgdvaBABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3Yy - MDIwXzA1XzAxL29wZXJhdGlvbnMvX2RlZmF1bHRfc2VjdXJpdHlfcnVsZXNfb3BlcmF0aW9ucy5w - eVBLAQIUAxQAAAAIACo8mFHOX+fuQAoAABpHAABzAAAAAAAAAAAAAACkgY/iBABhemV4dF9maXJl - d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2V4 - cHJlc3Nfcm91dGVfY2lyY3VpdF9hdXRob3JpemF0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAA - AAgAKjyYUSN63XetCgAAhUsAAHAAAAAAAAAAAAAAAKSBYO0EAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv - cmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0 - ZV9jaXJjdWl0X2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRzyeg+i8K - AACFRQAAbQAAAAAAAAAAAAAApIGb+AQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy - MF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19leHByZXNzX3JvdXRlX2NpcmN1aXRfcGVl - cmluZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFE93vjebw0AAA+vAABlAAAAAAAAAAAA - AACkgVUDBQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1 - XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdHNfb3BlcmF0aW9ucy5weVBLAQIU - AxQAAAAIACo8mFGbMmooeQkAAIVGAABoAAAAAAAAAAAAAACkgUcRBQBhemV4dF9maXJld2FsbC92 - ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nf - cm91dGVfY29ubmVjdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFFZ+3MwMwoAAMhH - AAB2AAAAAAAAAAAAAACkgUYbBQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1 - XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY3Jvc3NfY29ubmVjdGlv - bl9wZWVyaW5nc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUdlB4nl3DAAAEYsAAG4AAAAA - AAAAAAAAAKSBDSYFAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIw - MjBfMDVfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jcm9zc19jb25uZWN0aW9uc19vcGVy - YXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUYC6Ib2MCQAANEwAAGUAAAAAAAAAAAAAAKSBEDMFAGF6 - ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0 - aW9ucy9fZXhwcmVzc19yb3V0ZV9nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyY - UTQ38UpLBwAA6B8AAGIAAAAAAAAAAAAAAKSBHz0FAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nk - a3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9saW5r - c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUUNlQFITBwAAyBwAAGwAAAAAAAAAAAAAAKSB - 6kQFAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEv - b3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9wb3J0c19sb2NhdGlvbnNfb3BlcmF0aW9ucy5weVBL - AQIUAxQAAAAIACo8mFEcSKQqowoAAIdaAABiAAAAAAAAAAAAAACkgYdMBQBhemV4dF9maXJld2Fs - bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2V4cHJl - c3Nfcm91dGVfcG9ydHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFGQ//GXqQUAABERAABu - AAAAAAAAAAAAAACkgapXBQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx - L3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfc2VydmljZV9wcm92aWRlcnNf - b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFEMWs+pWgoAABpNAABgAAAAAAAAAAAAAACkgd9d - BQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29w - ZXJhdGlvbnMvX2ZpcmV3YWxsX3BvbGljaWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR - 6VfJNjwKAADOSAAAdQAAAAAAAAAAAAAApIG3aAUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr - cy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19maXJld2FsbF9wb2xpY3lfcnVs - ZV9jb2xsZWN0aW9uX2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUWiv2Es1CgAA - XUQAAFgAAAAAAAAAAAAAAKSBhnMFAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf - MDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fZmxvd19sb2dzX29wZXJhdGlvbnMucHlQSwEC - FAMUAAAACAAqPJhRN2f840EKAAAuRQAAXwAAAAAAAAAAAAAApIExfgUAYXpleHRfZmlyZXdhbGwv - dmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19odWJfcm91 - dGVfdGFibGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRb3UwFWMKAABxRwAAbgAAAAAA - AAAAAAAApIHviAUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAy - MF8wNV8wMS9vcGVyYXRpb25zL19odWJfdmlydHVhbF9uZXR3b3JrX2Nvbm5lY3Rpb25zX29wZXJh - dGlvbnMucHlQSwECFAMUAAAACAAqPJhRSdmciFoKAAAYRwAAYAAAAAAAAAAAAAAApIHekwUAYXpl - eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRp - b25zL19pbmJvdW5kX25hdF9ydWxlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUXOG7crR - CgAAs1kAAF0AAAAAAAAAAAAAAKSBtp4FAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw - MjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9faXBfYWxsb2NhdGlvbnNfb3BlcmF0aW9u - cy5weVBLAQIUAxQAAAAIACo8mFGljStEtQoAAJ1XAABYAAAAAAAAAAAAAACkgQKqBQBhemV4dF9m - aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMv - X2lwX2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUaAmmLweCgAA3kYAAHIAAAAA - AAAAAAAAAKSBLbUFAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIw - MjBfMDVfMDEvb3BlcmF0aW9ucy9fbG9hZF9iYWxhbmNlcl9iYWNrZW5kX2FkZHJlc3NfcG9vbHNf - b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFErNR84JgcAAFsgAAB3AAAAAAAAAAAAAACkgdu/ - BQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29w - ZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJfZnJvbnRlbmRfaXBfY29uZmlndXJhdGlvbnNfb3BlcmF0 - aW9ucy5weVBLAQIUAxQAAAAIACo8mFFfP0pYJwcAAOcfAABxAAAAAAAAAAAAAACkgZbHBQBhemV4 - dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlv - bnMvX2xvYWRfYmFsYW5jZXJfbG9hZF9iYWxhbmNpbmdfcnVsZXNfb3BlcmF0aW9ucy5weVBLAQIU - AxQAAAAIACo8mFFdciRrHgYAAPUSAABvAAAAAAAAAAAAAACkgUzPBQBhemV4dF9maXJld2FsbC92 - ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2xvYWRfYmFs - YW5jZXJfbmV0d29ya19pbnRlcmZhY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRg9/L - 2ScHAAB2HwAAawAAAAAAAAAAAAAApIH31QUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 - MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX291dGJvdW5k - X3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRtFSqMgkHAADIHgAAYwAAAAAAAAAA - AAAApIGn3QUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8w - NV8wMS9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX3Byb2Jlc19vcGVyYXRpb25zLnB5UEsBAhQD - FAAAAAgAKjyYUZbJGsu7CgAAZlkAAF0AAAAAAAAAAAAAAKSBMeUFAGF6ZXh0X2ZpcmV3YWxsL3Zl - bmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fbG9hZF9iYWxh - bmNlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFEaXH5hiAoAAP5PAABlAAAAAAAAAAAA - AACkgWfwBQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1 - XzAxL29wZXJhdGlvbnMvX2xvY2FsX25ldHdvcmtfZ2F0ZXdheXNfb3BlcmF0aW9ucy5weVBLAQIU - AxQAAAAIACo8mFFr3BqGzwoAAFhZAABbAAAAAAAAAAAAAACkgXL7BQBhemV4dF9maXJld2FsbC92 - ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX25hdF9nYXRl - d2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUZfr43sjBwAAjyAAAHIAAAAAAAAAAAAA - AKSBugYGAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVf - MDEvb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZhY2VfaXBfY29uZmlndXJhdGlvbnNfb3BlcmF0 - aW9ucy5weVBLAQIUAxQAAAAIACo8mFEMTaibHwYAAAMTAABvAAAAAAAAAAAAAACkgW0OBgBhemV4 - dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlv - bnMvX25ldHdvcmtfaW50ZXJmYWNlX2xvYWRfYmFsYW5jZXJzX29wZXJhdGlvbnMucHlQSwECFAMU - AAAACAAqPJhRVZuM8kQKAACySAAAcwAAAAAAAAAAAAAApIEZFQYAYXpleHRfZmlyZXdhbGwvdmVu - ZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19uZXR3b3JrX2lu - dGVyZmFjZV90YXBfY29uZmlndXJhdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFH/ - UeuloQ4AAPTRAABhAAAAAAAAAAAAAACkge4fBgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz - L3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX25ldHdvcmtfaW50ZXJmYWNlc19v - cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUcddECwJDgAA/4oAAGgAAAAAAAAAAAAAAKSBDi8G - AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3Bl - cmF0aW9ucy9fbmV0d29ya19tYW5hZ2VtZW50X2NsaWVudF9vcGVyYXRpb25zLnB5UEsBAhQDFAAA - AAgAKjyYUSfEYTHdCgAAH1oAAF8AAAAAAAAAAAAAAKSBnT0GAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv - cmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fbmV0d29ya19wcm9m - aWxlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUeAu5yLdCgAAOFwAAGYAAAAAAAAAAAAA - AKSB90gGAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVf - MDEvb3BlcmF0aW9ucy9fbmV0d29ya19zZWN1cml0eV9ncm91cHNfb3BlcmF0aW9ucy5weVBLAQIU - AxQAAAAIACo8mFF7VduM/AoAADldAABpAAAAAAAAAAAAAACkgVhUBgBhemV4dF9maXJld2FsbC92 - ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX25ldHdvcmtf - dmlydHVhbF9hcHBsaWFuY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR/WcuCeQTAAAw - RQEAXwAAAAAAAAAAAAAApIHbXwYAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w - NV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19uZXR3b3JrX3dhdGNoZXJzX29wZXJhdGlvbnMu - cHlQSwECFAMUAAAACAAqPJhROpnBKEMFAABbDwAATgAAAAAAAAAAAAAApIE8dAYAYXpleHRfZmly - ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19v - cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUWcY8yy3DgAAHagAAF8AAAAAAAAAAAAAAKSB63kG - AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3Bl - cmF0aW9ucy9fcDJzX3Zwbl9nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUcgZ - yV9BCwAA9mkAAF4AAAAAAAAAAAAAAKSBH4kGAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv - djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fcGFja2V0X2NhcHR1cmVzX29wZXJh - dGlvbnMucHlQSwECFAMUAAAACAAqPJhROLXPi6sHAAApIgAAdQAAAAAAAAAAAAAApIHclAYAYXpl - eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRp - b25zL19wZWVyX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5 - UEsBAhQDFAAAAAgAKjyYUTtLjFdoCgAApEcAAGYAAAAAAAAAAAAAAKSBGp0GAGF6ZXh0X2ZpcmV3 - YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fcHJp - dmF0ZV9kbnNfem9uZV9ncm91cHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFEGpCDPNAoA - AKNMAABgAAAAAAAAAAAAAACkgQaoBgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw - XzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3ByaXZhdGVfZW5kcG9pbnRzX29wZXJhdGlv - bnMucHlQSwECFAMUAAAACAAqPJhRe2lWLoQOAADNvwAAZAAAAAAAAAAAAAAApIG4sgYAYXpleHRf - ZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25z - L19wcml2YXRlX2xpbmtfc2VydmljZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFGPQ9EA - zAwAAK2NAABiAAAAAAAAAAAAAACkgb7BBgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy - MDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3B1YmxpY19pcF9hZGRyZXNzZXNfb3Bl - cmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFEAyMSz7goAAF5aAABhAAAAAAAAAAAAAACkgQrPBgBh - emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJh - dGlvbnMvX3B1YmxpY19pcF9wcmVmaXhlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUSpv - HYXsBQAAZBIAAGgAAAAAAAAAAAAAAKSBd9oGAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv - djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fcmVzb3VyY2VfbmF2aWdhdGlvbl9s - aW5rc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUfXAUDIwCgAADEUAAGEAAAAAAAAAAAAA - AKSB6eAGAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVf - MDEvb3BlcmF0aW9ucy9fcm91dGVfZmlsdGVyX3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA - CAAqPJhRsMpXZ98KAADbWQAAXAAAAAAAAAAAAAAApIGY6wYAYXpleHRfZmlyZXdhbGwvdmVuZG9y - ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19yb3V0ZV9maWx0ZXJz - X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRycPlrcEKAADjWAAAWwAAAAAAAAAAAAAApIHx - 9gYAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9v - cGVyYXRpb25zL19yb3V0ZV90YWJsZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFFFmMFN - /gkAAHJDAABVAAAAAAAAAAAAAACkgSsCBwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy - MDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3JvdXRlc19vcGVyYXRpb25zLnB5UEsB - AhQDFAAAAAgAKjyYUX1LjP+xCgAAZ1wAAGkAAAAAAAAAAAAAAKSBnAwHAGF6ZXh0X2ZpcmV3YWxs - L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fc2VjdXJp - dHlfcGFydG5lcl9wcm92aWRlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFGN6bERNgoA - AFRHAABdAAAAAAAAAAAAAACkgdQXBwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw - XzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3NlY3VyaXR5X3J1bGVzX29wZXJhdGlvbnMu - cHlQSwECFAMUAAAACAAqPJhRrFbEHuoFAABkEgAAaAAAAAAAAAAAAAAApIGFIgcAYXpleHRfZmly - ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19z - ZXJ2aWNlX2Fzc29jaWF0aW9uX2xpbmtzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR8yp6 - 7wcLAADBXAAAaAAAAAAAAAAAAAAApIH1KAcAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 - MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19zZXJ2aWNlX2VuZHBvaW50X3BvbGlj - aWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRetYofX4KAADSTAAAcgAAAAAAAAAAAAAA - pIGCNAcAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8w - MS9vcGVyYXRpb25zL19zZXJ2aWNlX2VuZHBvaW50X3BvbGljeV9kZWZpbml0aW9uc19vcGVyYXRp - b25zLnB5UEsBAhQDFAAAAAgAKjyYUZ1KfXXSBQAAvhAAAFsAAAAAAAAAAAAAAKSBkD8HAGF6ZXh0 - X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9u - cy9fc2VydmljZV90YWdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRfmDpfAEMAAC/bQAA - VgAAAAAAAAAAAAAApIHbRQcAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8w - MS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19zdWJuZXRzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA - CAAqPJhRuwDiyuQFAABUEQAAVQAAAAAAAAAAAAAApIFQUgcAYXpleHRfZmlyZXdhbGwvdmVuZG9y - ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL191c2FnZXNfb3BlcmF0 - aW9ucy5weVBLAQIUAxQAAAAIACo8mFEBr8YcRAoAAD5HAABmAAAAAAAAAAAAAACkgadYBwBhemV4 - dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlv - bnMvX3ZpcnR1YWxfYXBwbGlhbmNlX3NpdGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR - W+PxCLsGAACEGwAAZQAAAAAAAAAAAAAApIFvYwcAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr - cy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL192aXJ0dWFsX2FwcGxpYW5jZV9z - a3VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR5WgKS+wIAACuNwAAaQAAAAAAAAAAAAAA - pIGtagcAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8w - MS9vcGVyYXRpb25zL192aXJ0dWFsX2h1Yl9iZ3BfY29ubmVjdGlvbl9vcGVyYXRpb25zLnB5UEsB - AhQDFAAAAAgAKjyYUbrHMy8eBgAA2RIAAGoAAAAAAAAAAAAAAKSBIHQHAGF6ZXh0X2ZpcmV3YWxs - L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fdmlydHVh - bF9odWJfYmdwX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR49jqSD8K - AABURQAAawAAAAAAAAAAAAAApIHGegcAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy - MF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL192aXJ0dWFsX2h1Yl9pcF9jb25maWd1cmF0 - aW9uX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR5RV1xV4KAABaRgAAagAAAAAAAAAAAAAA - pIGOhQcAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8w - MS9vcGVyYXRpb25zL192aXJ0dWFsX2h1Yl9yb3V0ZV90YWJsZV92MnNfb3BlcmF0aW9ucy5weVBL - AQIUAxQAAAAIACo8mFHSFMjnOQwAAOVtAABbAAAAAAAAAAAAAACkgXSQBwBhemV4dF9maXJld2Fs - bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3ZpcnR1 - YWxfaHVic19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUawfUPTkDgAA9bkAAHIAAAAAAAAA - AAAAAKSBJp0HAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf - MDVfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3JrX2dhdGV3YXlfY29ubmVjdGlvbnNfb3Bl - cmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFHaBK0DWxYAAG+OAQBnAAAAAAAAAAAAAACkgZqsBwBh - emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJh - dGlvbnMvX3ZpcnR1YWxfbmV0d29ya19nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA - KjyYUZeScXs0CgAAP0gAAGcAAAAAAAAAAAAAAKSBesMHAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk - X3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3Jr - X3BlZXJpbmdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRjy6u76UKAABhWAAAYwAAAAAA - AAAAAAAApIEzzgcAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAy - MF8wNV8wMS9vcGVyYXRpb25zL192aXJ0dWFsX25ldHdvcmtfdGFwc19vcGVyYXRpb25zLnB5UEsB - AhQDFAAAAAgAKjyYURR1gZbqCwAAxnQAAF8AAAAAAAAAAAAAAKSBWdkHAGF6ZXh0X2ZpcmV3YWxs - L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fdmlydHVh - bF9uZXR3b3Jrc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUYPzpvcLCgAAqUQAAGYAAAAA - AAAAAAAAAKSBwOUHAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIw - MjBfMDVfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF9yb3V0ZXJfcGVlcmluZ3Nfb3BlcmF0aW9ucy5w - eVBLAQIUAxQAAAAIACo8mFFAWLp2IwoAAPZLAABeAAAAAAAAAAAAAACkgU/wBwBhemV4dF9maXJl - d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3Zp - cnR1YWxfcm91dGVyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUUs9KvfbCgAA+lgAAFsA - AAAAAAAAAAAAAKSB7voHAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEv - djIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF93YW5zX29wZXJhdGlvbnMucHlQSwECFAMU - AAAACAAqPJhRCpAL2m0KAAAURQAAXgAAAAAAAAAAAAAApIFCBggAYXpleHRfZmlyZXdhbGwvdmVu - ZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL192cG5fY29ubmVj - dGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFEvdZuZXwsAAM1pAABbAAAAAAAAAAAA - AACkgSsRCABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1 - XzAxL29wZXJhdGlvbnMvX3Zwbl9nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyY - UZTaHv9yBgAANhQAAGMAAAAAAAAAAAAAAKSBAx0IAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nk - a3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fdnBuX2xpbmtfY29ubmVjdGlv - bnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFHWhIDlQQcAAEYYAACEAAAAAAAAAAAAAACk - gfYjCABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx - L29wZXJhdGlvbnMvX3Zwbl9zZXJ2ZXJfY29uZmlndXJhdGlvbnNfYXNzb2NpYXRlZF93aXRoX3Zp - cnR1YWxfd2FuX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRJMM7eOwKAADvXQAAaAAAAAAA - AAAAAAAApIHZKwgAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAy - MF8wNV8wMS9vcGVyYXRpb25zL192cG5fc2VydmVyX2NvbmZpZ3VyYXRpb25zX29wZXJhdGlvbnMu - cHlQSwECFAMUAAAACAAqPJhRo4TjNRoGAAAaEwAAaAAAAAAAAAAAAAAApIFLNwgAYXpleHRfZmly - ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL192 - cG5fc2l0ZV9saW5rX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRx22m - wVoHAABJHwAAXQAAAAAAAAAAAAAApIHrPQgAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 - MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL192cG5fc2l0ZV9saW5rc19vcGVyYXRp - b25zLnB5UEsBAhQDFAAAAAgAKjyYUWASmJqOBwAAxxgAAGYAAAAAAAAAAAAAAKSBwEUIAGF6ZXh0 - X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9u - cy9fdnBuX3NpdGVzX2NvbmZpZ3VyYXRpb25fb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFFG - Z8/z1goAADBYAABYAAAAAAAAAAAAAACkgdJNCABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz - L3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3Zwbl9zaXRlc19vcGVyYXRpb25z - LnB5UEsBAhQDFAAAAAgAKjyYUXBDy7PlCQAAc0cAAHAAAAAAAAAAAAAAAKSBHlkIAGF6ZXh0X2Zp - cmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9f - d2ViX2FwcGxpY2F0aW9uX2ZpcmV3YWxsX3BvbGljaWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA - CAAqPJhRwHyRdjoBAADfAgAANAAAAAAAAAAAAAAApIGRYwgAYXpleHRfZmlyZXdhbGwvdmVuZG9y - ZWRfc2Rrcy92MjAyMF8wN18wMS9fX2luaXRfXy5weVBLAQIUAxQAAAAIACo8mFFjwRQMKwMAAMsH - AAA6AAAAAAAAAAAAAACkgR1lCABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 - XzAxL19jb25maWd1cmF0aW9uLnB5UEsBAhQDFAAAAAgAKjyYUV4/ugVmcQAAzhUJAEYAAAAAAAAA - AAAAAKSBoGgIAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvX25ldHdv - cmtfbWFuYWdlbWVudF9jbGllbnQucHlQSwECFAMUAAAACAAqPJhRfDG1itkJAAACeQAAPQAAAAAA - AAAAAAAApIFq2ggAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS9fb3Bl - cmF0aW9uc19taXhpbi5weVBLAQIUAxQAAAAIACo8mFHJHdHtuwAAAPABAAAyAAAAAAAAAAAAAACk - gZ7kCABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL21vZGVscy5weVBL - AQIUAxQAAAAIACo8mFGr1+XXngAAAFoBAAAzAAAAAAAAAAAAAACkganlCABhemV4dF9maXJld2Fs - bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3ZlcnNpb24ucHlQSwECFAMUAAAACAAqPJhRwHyR - djoBAADfAgAAQAAAAAAAAAAAAAAApIGY5ggAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 - MjAyMF8wN18wMS92MjAyMF8wN18wMS9fX2luaXRfXy5weVBLAQIUAxQAAAAIACo8mFFjwRQMKwMA - AMsHAABGAAAAAAAAAAAAAACkgTDoCABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw - XzA3XzAxL3YyMDIwXzA3XzAxL19jb25maWd1cmF0aW9uLnB5UEsBAhQDFAAAAAgAKjyYUemUnJs1 - EgAAjKMAAFIAAAAAAAAAAAAAAKSBv+sIAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw - MjBfMDdfMDEvdjIwMjBfMDdfMDEvX25ldHdvcmtfbWFuYWdlbWVudF9jbGllbnQucHlQSwECFAMU - AAAACAAqPJhRlAWvMecAAADoAQAAPwAAAAAAAAAAAAAApIFk/ggAYXpleHRfZmlyZXdhbGwvdmVu - ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS92ZXJzaW9uLnB5UEsBAhQDFAAAAAgA - KjyYUXEYUXsVJAAAfToBAEcAAAAAAAAAAAAAAKSBqP8IAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk - X3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvbW9kZWxzL19faW5pdF9fLnB5UEsBAhQDFAAA - AAgAKjyYUU5ZbRgdmgEAW/kMAEYAAAAAAAAAAAAAAKSBIiQJAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv - cmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvbW9kZWxzL19tb2RlbHMucHlQSwECFAMU - AAAACAAqPJhRPH/LaWGtAQAbOA0ASgAAAAAAAAAAAAAApIGjvgoAYXpleHRfZmlyZXdhbGwvdmVu - ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9tb2RlbHMvX21vZGVsc19weTMucHlQ - SwECFAMUAAAACAAqPJhRLNNHv1cTAACyWAAAXwAAAAAAAAAAAAAApIFsbAwAYXpleHRfZmlyZXdh - bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9tb2RlbHMvX25ldHdvcmtf - bWFuYWdlbWVudF9jbGllbnRfZW51bXMucHlQSwECFAMUAAAACAAqPJhR1dA5NHQLAADLtwAATAAA - AAAAAAAAAAAApIFAgAwAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92 - MjAyMF8wN18wMS9tb2RlbHMvX3BhZ2VkX21vZGVscy5weVBLAQIUAxQAAAAIACo8mFFqTxmkRQgA - AEEzAABLAAAAAAAAAAAAAACkgR6MDABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw - XzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX19pbml0X18ucHlQSwECFAMUAAAACAAqPJhR - 4xW/1yUKAAC7SAAAfwAAAAAAAAAAAAAApIHMlAwAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr - cy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19hcHBsaWNhdGlvbl9nYXRld2F5 - X3ByaXZhdGVfZW5kcG9pbnRfY29ubmVjdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8 - mFEkZZ0CKAYAAKcTAAB5AAAAAAAAAAAAAACkgY6fDABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z - ZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3 - YXlfcHJpdmF0ZV9saW5rX3Jlc291cmNlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUW58 - IUPCEAAAfu0AAGMAAAAAAAAAAAAAAKSBTaYMAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv - djIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fYXBwbGljYXRpb25fZ2F0ZXdheXNf - b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFHDhKbmqAoAAJ9cAABqAAAAAAAAAAAAAACkgZC3 - DABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29w - ZXJhdGlvbnMvX2FwcGxpY2F0aW9uX3NlY3VyaXR5X2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQD - FAAAAAgAKjyYUaOJtgfkBQAAvhEAAGQAAAAAAAAAAAAAAKSBwMIMAGF6ZXh0X2ZpcmV3YWxsL3Zl - bmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fYXZhaWxhYmxl - X2RlbGVnYXRpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRqnGRzfIFAADcEQAAagAA - AAAAAAAAAAAApIEmyQwAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92 - MjAyMF8wN18wMS9vcGVyYXRpb25zL19hdmFpbGFibGVfZW5kcG9pbnRfc2VydmljZXNfb3BlcmF0 - aW9ucy5weVBLAQIUAxQAAAAIACo8mFEQaJ82dwYAAAAgAABvAAAAAAAAAAAAAACkgaDPDABhemV4 - dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlv - bnMvX2F2YWlsYWJsZV9wcml2YXRlX2VuZHBvaW50X3R5cGVzX29wZXJhdGlvbnMucHlQSwECFAMU - AAAACAAqPJhRwlLrTy0GAADzEgAAcwAAAAAAAAAAAAAApIGk1gwAYXpleHRfZmlyZXdhbGwvdmVu - ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19hdmFpbGFibGVf - cmVzb3VyY2VfZ3JvdXBfZGVsZWdhdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFGC - +QiuZgYAAD4fAABoAAAAAAAAAAAAAACkgWLdDABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz - L3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2F2YWlsYWJsZV9zZXJ2aWNlX2Fs - aWFzZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFEMIK40rAUAAO0QAABnAAAAAAAAAAAA - AACkgU7kDABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3 - XzAxL29wZXJhdGlvbnMvX2F6dXJlX2ZpcmV3YWxsX2ZxZG5fdGFnc19vcGVyYXRpb25zLnB5UEsB - AhQDFAAAAAgAKjyYUSPwWLrNCgAAy14AAF4AAAAAAAAAAAAAAKSBf+oMAGF6ZXh0X2ZpcmV3YWxs - L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fYXp1cmVf - ZmlyZXdhbGxzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRJ85xMRMKAACeSwAAXAAAAAAA - AAAAAAAApIHI9QwAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAy - MF8wN18wMS9vcGVyYXRpb25zL19iYXN0aW9uX2hvc3RzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA - CAAqPJhRo2aXIaUFAADUEAAAZgAAAAAAAAAAAAAApIFVAA0AYXpleHRfZmlyZXdhbGwvdmVuZG9y - ZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19iZ3Bfc2VydmljZV9j - b21tdW5pdGllc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYURWc2ixyDAAANo0AAGIAAAAA - AAAAAAAAAKSBfgYNAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIw - MjBfMDdfMDEvb3BlcmF0aW9ucy9fY29ubmVjdGlvbl9tb25pdG9yc19vcGVyYXRpb25zLnB5UEsB - AhQDFAAAAAgAKjyYUXqvoUbdCgAATFoAAGEAAAAAAAAAAAAAAKSBcBMNAGF6ZXh0X2ZpcmV3YWxs - L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fY3VzdG9t - X2lwX3ByZWZpeGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRH7Z1sBoJAAAyQgAAYwAA - AAAAAAAAAAAApIHMHg0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92 - MjAyMF8wN18wMS9vcGVyYXRpb25zL19kZG9zX2N1c3RvbV9wb2xpY2llc19vcGVyYXRpb25zLnB5 - UEsBAhQDFAAAAAgAKjyYUWGPR9mkCgAAIlsAAGQAAAAAAAAAAAAAAKSBZygNAGF6ZXh0X2ZpcmV3 - YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZGRv - c19wcm90ZWN0aW9uX3BsYW5zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRna6MmzEHAAB9 - IAAAZQAAAAAAAAAAAAAApIGNMw0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w - N18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19kZWZhdWx0X3NlY3VyaXR5X3J1bGVzX29wZXJh - dGlvbnMucHlQSwECFAMUAAAACAAqPJhRV1RsWPoJAACaTAAAYQAAAAAAAAAAAAAApIFBOw0AYXpl - eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRp - b25zL19kc2NwX2NvbmZpZ3VyYXRpb25fb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFGv2kMa - QAoAABpHAABzAAAAAAAAAAAAAACkgbpFDQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy - MDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9h - dXRob3JpemF0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUf3NMgmtCgAAhUsAAHAA - AAAAAAAAAAAAAKSBi1ANAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEv - djIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jaXJjdWl0X2Nvbm5lY3Rpb25z - X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRTx1kJS8KAACFRQAAbQAAAAAAAAAAAAAApIHG - Ww0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9v - cGVyYXRpb25zL19leHByZXNzX3JvdXRlX2NpcmN1aXRfcGVlcmluZ3Nfb3BlcmF0aW9ucy5weVBL - AQIUAxQAAAAIACo8mFHMkurybw0AAA+vAABlAAAAAAAAAAAAAACkgYBmDQBhemV4dF9maXJld2Fs - bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJl - c3Nfcm91dGVfY2lyY3VpdHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFERysIWeQkAAIVG - AABoAAAAAAAAAAAAAACkgXJ0DQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 - XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY29ubmVjdGlvbnNfb3Bl - cmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFGnmAk/MwoAAMhHAAB2AAAAAAAAAAAAAACkgXF+DQBh - emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJh - dGlvbnMvX2V4cHJlc3Nfcm91dGVfY3Jvc3NfY29ubmVjdGlvbl9wZWVyaW5nc19vcGVyYXRpb25z - LnB5UEsBAhQDFAAAAAgAKjyYUQ95o+h2DAAAEYsAAG4AAAAAAAAAAAAAAKSBOIkNAGF6ZXh0X2Zp - cmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9f - ZXhwcmVzc19yb3V0ZV9jcm9zc19jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA - KjyYUUqyqMGMCQAANEwAAGUAAAAAAAAAAAAAAKSBOpYNAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk - X3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9n - YXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYURC2goFKBwAA6B8AAGIAAAAAAAAA - AAAAAKSBSaANAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBf - MDdfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9saW5rc19vcGVyYXRpb25zLnB5UEsBAhQD - FAAAAAgAKjyYUYoZM1ITBwAAyBwAAGwAAAAAAAAAAAAAAKSBE6gNAGF6ZXh0X2ZpcmV3YWxsL3Zl - bmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19y - b3V0ZV9wb3J0c19sb2NhdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFFzJneaWgsA - AHloAABiAAAAAAAAAAAAAACkgbCvDQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw - XzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfcG9ydHNfb3BlcmF0 - aW9ucy5weVBLAQIUAxQAAAAIACo8mFHl0ApvqQUAABERAABuAAAAAAAAAAAAAACkgYq7DQBhemV4 - dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlv - bnMvX2V4cHJlc3Nfcm91dGVfc2VydmljZV9wcm92aWRlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQA - AAAIACo8mFGqXctjWgoAABpNAABgAAAAAAAAAAAAAACkgb/BDQBhemV4dF9maXJld2FsbC92ZW5k - b3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2ZpcmV3YWxsX3Bv - bGljaWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRRok3fjwKAADOSAAAdQAAAAAAAAAA - AAAApIGXzA0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8w - N18wMS9vcGVyYXRpb25zL19maXJld2FsbF9wb2xpY3lfcnVsZV9jb2xsZWN0aW9uX2dyb3Vwc19v - cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUUjHV/65CgAAGVIAAFgAAAAAAAAAAAAAAKSBZtcN - AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3Bl - cmF0aW9ucy9fZmxvd19sb2dzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR2IQ4+EEKAAAu - RQAAXwAAAAAAAAAAAAAApIGV4g0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w - N18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19odWJfcm91dGVfdGFibGVzX29wZXJhdGlvbnMu - cHlQSwECFAMUAAAACAAqPJhRcqv8R2MKAABxRwAAbgAAAAAAAAAAAAAApIFT7Q0AYXpleHRfZmly - ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19o - dWJfdmlydHVhbF9uZXR3b3JrX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAq - PJhRQA/bdloKAAAYRwAAYAAAAAAAAAAAAAAApIFC+A0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf - c2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19pbmJvdW5kX25hdF9ydWxl - c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUfN/mEzFBwAA8RsAAGQAAAAAAAAAAAAAAKSB - GgMOAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEv - b3BlcmF0aW9ucy9faW5ib3VuZF9zZWN1cml0eV9ydWxlX29wZXJhdGlvbnMucHlQSwECFAMUAAAA - CAAqPJhRygmuntEKAACzWQAAXQAAAAAAAAAAAAAApIFhCw4AYXpleHRfZmlyZXdhbGwvdmVuZG9y - ZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19pcF9hbGxvY2F0aW9u - c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUU2rSkG1CgAAnVcAAFgAAAAAAAAAAAAAAKSB - rRYOAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEv - b3BlcmF0aW9ucy9faXBfZ3JvdXBzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRuM84bx4K - AADeRgAAcgAAAAAAAAAAAAAApIHYIQ4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy - MF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX2JhY2tlbmRfYWRk - cmVzc19wb29sc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUUg2RvcmBwAAWyAAAHcAAAAA - AAAAAAAAAKSBhiwOAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIw - MjBfMDdfMDEvb3BlcmF0aW9ucy9fbG9hZF9iYWxhbmNlcl9mcm9udGVuZF9pcF9jb25maWd1cmF0 - aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUUQfz24mBwAA5x8AAHEAAAAAAAAAAAAA - AKSBQTQOAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdf - MDEvb3BlcmF0aW9ucy9fbG9hZF9iYWxhbmNlcl9sb2FkX2JhbGFuY2luZ19ydWxlc19vcGVyYXRp - b25zLnB5UEsBAhQDFAAAAAgAKjyYUfVD2kEdBgAA9RIAAG8AAAAAAAAAAAAAAKSB9jsOAGF6ZXh0 - X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9u - cy9fbG9hZF9iYWxhbmNlcl9uZXR3b3JrX2ludGVyZmFjZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQA - AAAIACo8mFFcLY9DJgcAAHYfAABrAAAAAAAAAAAAAACkgaBCDgBhemV4dF9maXJld2FsbC92ZW5k - b3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2xvYWRfYmFsYW5j - ZXJfb3V0Ym91bmRfcnVsZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFFJcxe1CAcAAMge - AABjAAAAAAAAAAAAAACkgU9KDgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 - XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJfcHJvYmVzX29wZXJhdGlv - bnMucHlQSwECFAMUAAAACAAqPJhRp4cTZLsKAABmWQAAXQAAAAAAAAAAAAAApIHYUQ4AYXpleHRf - ZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25z - L19sb2FkX2JhbGFuY2Vyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUcA4RiiICgAA/k8A - AGUAAAAAAAAAAAAAAKSBDl0OAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf - MDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fbG9jYWxfbmV0d29ya19nYXRld2F5c19vcGVyYXRp - b25zLnB5UEsBAhQDFAAAAAgAKjyYUbDV/x3KCgAA61gAAFsAAAAAAAAAAAAAAKSBGWgOAGF6ZXh0 - X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9u - cy9fbmF0X2dhdGV3YXlzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRqW2UmyMHAACPIAAA - cgAAAAAAAAAAAAAApIFccw4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18w - MS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19uZXR3b3JrX2ludGVyZmFjZV9pcF9jb25maWd1cmF0 - aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUbc7ACMeBgAAAxMAAG8AAAAAAAAAAAAA - AKSBD3sOAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdf - MDEvb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZhY2VfbG9hZF9iYWxhbmNlcnNfb3BlcmF0aW9u - cy5weVBLAQIUAxQAAAAIACo8mFFaJn1VRAoAALJIAABzAAAAAAAAAAAAAACkgbqBDgBhemV4dF9m - aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMv - X25ldHdvcmtfaW50ZXJmYWNlX3RhcF9jb25maWd1cmF0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQD - FAAAAAgAKjyYUehbjeWhDgAA9NEAAGEAAAAAAAAAAAAAAKSBj4wOAGF6ZXh0X2ZpcmV3YWxsL3Zl - bmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fbmV0d29ya19p - bnRlcmZhY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRZCmRMQkOAAD/igAAaAAAAAAA - AAAAAAAApIGvmw4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAy - MF8wN18wMS9vcGVyYXRpb25zL19uZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50X29wZXJhdGlvbnMu - cHlQSwECFAMUAAAACAAqPJhRPBuLdN0KAAAfWgAAXwAAAAAAAAAAAAAApIE+qg4AYXpleHRfZmly - ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19u - ZXR3b3JrX3Byb2ZpbGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRON44DN0KAAA4XAAA - ZgAAAAAAAAAAAAAApIGYtQ4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18w - MS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19uZXR3b3JrX3NlY3VyaXR5X2dyb3Vwc19vcGVyYXRp - b25zLnB5UEsBAhQDFAAAAAgAKjyYUdrm4R/8CgAAOV0AAGkAAAAAAAAAAAAAAKSB+cAOAGF6ZXh0 - X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9u - cy9fbmV0d29ya192aXJ0dWFsX2FwcGxpYW5jZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8 - mFHEfLYO5BMAADBFAQBfAAAAAAAAAAAAAACkgXzMDgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z - ZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX25ldHdvcmtfd2F0Y2hlcnNf - b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFHXE6QgQgUAAFsPAABOAAAAAAAAAAAAAACkgd3g - DgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29w - ZXJhdGlvbnMvX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRjuaoaSMPAAAfvwAAXwAAAAAA - AAAAAAAApIGL5g4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAy - MF8wN18wMS9vcGVyYXRpb25zL19wMnNfdnBuX2dhdGV3YXlzX29wZXJhdGlvbnMucHlQSwECFAMU - AAAACAAqPJhRmXu2pkELAAD2aQAAXgAAAAAAAAAAAAAApIEr9g4AYXpleHRfZmlyZXdhbGwvdmVu - ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19wYWNrZXRfY2Fw - dHVyZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFG6/HOTqgcAACkiAAB1AAAAAAAAAAAA - AACkgegBDwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3 - XzAxL29wZXJhdGlvbnMvX3BlZXJfZXhwcmVzc19yb3V0ZV9jaXJjdWl0X2Nvbm5lY3Rpb25zX29w - ZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRidGYZWgKAACkRwAAZgAAAAAAAAAAAAAApIElCg8A - YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVy - YXRpb25zL19wcml2YXRlX2Ruc196b25lX2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA - KjyYUY4tLOE0CgAAo0wAAGAAAAAAAAAAAAAAAKSBERUPAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk - X3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fcHJpdmF0ZV9lbmRwb2lu - dHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFH9yzStBQ8AAHnMAABkAAAAAAAAAAAAAACk - gcMfDwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAx - L29wZXJhdGlvbnMvX3ByaXZhdGVfbGlua19zZXJ2aWNlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAA - AAgAKjyYUbgsCS6+DAAAw40AAGIAAAAAAAAAAAAAAKSBSi8PAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv - cmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fcHVibGljX2lwX2Fk - ZHJlc3Nlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUakI8JfuCgAAXloAAGEAAAAAAAAA - AAAAAKSBiDwPAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBf - MDdfMDEvb3BlcmF0aW9ucy9fcHVibGljX2lwX3ByZWZpeGVzX29wZXJhdGlvbnMucHlQSwECFAMU - AAAACAAqPJhRqVOUluwFAABkEgAAaAAAAAAAAAAAAAAApIH1Rw8AYXpleHRfZmlyZXdhbGwvdmVu - ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19yZXNvdXJjZV9u - YXZpZ2F0aW9uX2xpbmtzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhREu9vijAKAAAMRQAA - YQAAAAAAAAAAAAAApIFnTg8AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18w - MS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19yb3V0ZV9maWx0ZXJfcnVsZXNfb3BlcmF0aW9ucy5w - eVBLAQIUAxQAAAAIACo8mFHK80dZ3woAANtZAABcAAAAAAAAAAAAAACkgRZZDwBhemV4dF9maXJl - d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3Jv - dXRlX2ZpbHRlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFE5RlEkwQoAAONYAABbAAAA - AAAAAAAAAACkgW9kDwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3Yy - MDIwXzA3XzAxL29wZXJhdGlvbnMvX3JvdXRlX3RhYmxlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAA - AAgAKjyYUflUQYH+CQAAckMAAFUAAAAAAAAAAAAAAKSBqW8PAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv - cmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fcm91dGVzX29wZXJh - dGlvbnMucHlQSwECFAMUAAAACAAqPJhRhQt69rEKAABnXAAAaQAAAAAAAAAAAAAApIEaeg8AYXpl - eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRp - b25zL19zZWN1cml0eV9wYXJ0bmVyX3Byb3ZpZGVyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA - KjyYUYJJQsQ2CgAAVEcAAF0AAAAAAAAAAAAAAKSBUoUPAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk - X3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fc2VjdXJpdHlfcnVsZXNf - b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFEvak0N6gUAAGQSAABoAAAAAAAAAAAAAACkgQOQ - DwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29w - ZXJhdGlvbnMvX3NlcnZpY2VfYXNzb2NpYXRpb25fbGlua3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQA - AAAIACo8mFEaB92DBwsAAMFcAABoAAAAAAAAAAAAAACkgXOWDwBhemV4dF9maXJld2FsbC92ZW5k - b3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3NlcnZpY2VfZW5k - cG9pbnRfcG9saWNpZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFGsBc5/fgoAANJMAABy - AAAAAAAAAAAAAACkgQCiDwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAx - L3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3NlcnZpY2VfZW5kcG9pbnRfcG9saWN5X2RlZmluaXRp - b25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR1KxyTNIFAAC+EAAAWwAAAAAAAAAAAAAA - pIEOrQ8AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18w - MS9vcGVyYXRpb25zL19zZXJ2aWNlX3RhZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFGP - vg+SAQwAAL9tAABWAAAAAAAAAAAAAACkgVmzDwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz - L3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3N1Ym5ldHNfb3BlcmF0aW9ucy5w - eVBLAQIUAxQAAAAIACo8mFFF7ojD5AUAAFQRAABVAAAAAAAAAAAAAACkgc6/DwBhemV4dF9maXJl - d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3Vz - YWdlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUeDvDq9ECgAAPkcAAGYAAAAAAAAAAAAA - AKSBJcYPAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdf - MDEvb3BlcmF0aW9ucy9fdmlydHVhbF9hcHBsaWFuY2Vfc2l0ZXNfb3BlcmF0aW9ucy5weVBLAQIU - AxQAAAAIACo8mFHOMjdWuwYAAIQbAABlAAAAAAAAAAAAAACkge3QDwBhemV4dF9maXJld2FsbC92 - ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxf - YXBwbGlhbmNlX3NrdXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFHgh5hu7AgAAK43AABp - AAAAAAAAAAAAAACkgSvYDwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAx - L3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfaHViX2JncF9jb25uZWN0aW9uX29wZXJh - dGlvbnMucHlQSwECFAMUAAAACAAqPJhR+miXB2gJAACtOAAAagAAAAAAAAAAAAAApIGe4Q8AYXpl - eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRp - b25zL192aXJ0dWFsX2h1Yl9iZ3BfY29ubmVjdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAI - ACo8mFFcB6J5PwoAAFRFAABrAAAAAAAAAAAAAACkgY7rDwBhemV4dF9maXJld2FsbC92ZW5kb3Jl - ZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfaHViX2lw - X2NvbmZpZ3VyYXRpb25fb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFE7vb0RXgoAAFpGAABq - AAAAAAAAAAAAAACkgVb2DwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAx - L3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfaHViX3JvdXRlX3RhYmxlX3Yyc19vcGVy - YXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUW0PRu0yDAAAuW0AAFsAAAAAAAAAAAAAAKSBPAEQAGF6 - ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0 - aW9ucy9fdmlydHVhbF9odWJzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRiCzHhOQOAAD1 - uQAAcgAAAAAAAAAAAAAApIHnDRAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w - N18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL192aXJ0dWFsX25ldHdvcmtfZ2F0ZXdheV9jb25u - ZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUbdMZ5RbFgAAb44BAGcAAAAAAAAA - AAAAAKSBWx0QAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBf - MDdfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3JrX2dhdGV3YXlzX29wZXJhdGlvbnMucHlQ - SwECFAMUAAAACAAqPJhRoo6RnjQKAAA/SAAAZwAAAAAAAAAAAAAApIE7NBAAYXpleHRfZmlyZXdh - bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL192aXJ0 - dWFsX25ldHdvcmtfcGVlcmluZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFHqoVVApQoA - AGFYAABjAAAAAAAAAAAAAACkgfQ+EABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw - XzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfbmV0d29ya190YXBzX29wZXJh - dGlvbnMucHlQSwECFAMUAAAACAAqPJhR9bdLceoLAADGdAAAXwAAAAAAAAAAAAAApIEaShAAYXpl - eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRp - b25zL192aXJ0dWFsX25ldHdvcmtzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRiCT25AsK - AACpRAAAZgAAAAAAAAAAAAAApIGBVhAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy - MF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL192aXJ0dWFsX3JvdXRlcl9wZWVyaW5nc19v - cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUZNwKfkjCgAA9ksAAF4AAAAAAAAAAAAAAKSBEGEQ - AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3Bl - cmF0aW9ucy9fdmlydHVhbF9yb3V0ZXJzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhR6F61 - hNsKAAD6WAAAWwAAAAAAAAAAAAAApIGvaxAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 - MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL192aXJ0dWFsX3dhbnNfb3BlcmF0aW9u - cy5weVBLAQIUAxQAAAAIACo8mFFs55PSmQwAAApxAABeAAAAAAAAAAAAAACkgQN3EABhemV4dF9m - aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMv - X3Zwbl9jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUT6XLnbkDAAAMZYA - AFsAAAAAAAAAAAAAAKSBGIQQAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf - MDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fdnBuX2dhdGV3YXlzX29wZXJhdGlvbnMucHlQSwEC - FAMUAAAACAAqPJhRqFAOdHQGAABAFAAAYwAAAAAAAAAAAAAApIF1kRAAYXpleHRfZmlyZXdhbGwv - dmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL192cG5fbGlu - a19jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAKjyYUeEf2MxBBwAARhgAAIQA - AAAAAAAAAAAAAKSBapgQAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEv - djIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fdnBuX3NlcnZlcl9jb25maWd1cmF0aW9uc19hc3NvY2lh - dGVkX3dpdGhfdmlydHVhbF93YW5fb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFHWFu7w7AoA - AO9dAABoAAAAAAAAAAAAAACkgU2gEABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw - XzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3Zwbl9zZXJ2ZXJfY29uZmlndXJhdGlvbnNf - b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIACo8mFHzhv4zGgYAABoTAABoAAAAAAAAAAAAAACkgb+r - EABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29w - ZXJhdGlvbnMvX3Zwbl9zaXRlX2xpbmtfY29ubmVjdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQA - AAAIACo8mFGYcHsPWQcAAEkfAABdAAAAAAAAAAAAAACkgV+yEABhemV4dF9maXJld2FsbC92ZW5k - b3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3Zwbl9zaXRlX2xp - bmtzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRxH3EuI0HAADHGAAAZgAAAAAAAAAAAAAA - pIEzuhAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18w - MS9vcGVyYXRpb25zL192cG5fc2l0ZXNfY29uZmlndXJhdGlvbl9vcGVyYXRpb25zLnB5UEsBAhQD - FAAAAAgAKjyYUWsi46fWCgAAMFgAAFgAAAAAAAAAAAAAAKSBRMIQAGF6ZXh0X2ZpcmV3YWxsL3Zl - bmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fdnBuX3NpdGVz - X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAqPJhRfBaS/OUJAABzRwAAcAAAAAAAAAAAAAAApIGQ - zRAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9v - cGVyYXRpb25zL193ZWJfYXBwbGljYXRpb25fZmlyZXdhbGxfcG9saWNpZXNfb3BlcmF0aW9ucy5w - eVBLAQIUAxQAAAAIACo8mFEFCqWQDQcAACwcAABdAAAAAAAAAAAAAACkgQPYEABhemV4dF9maXJl - d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3dl - Yl9jYXRlZ29yaWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACABrPJhRXi1/0gwAAAAKAAAALgAA - AAAAAAAAAAAApIGL3xAAYXp1cmVfZmlyZXdhbGwtMC44LjAuZGlzdC1pbmZvL0RFU0NSSVBUSU9O - LnJzdFBLAQIUAxQAAAAIAGs8mFEbRZUwsAEAAJoDAAAsAAAAAAAAAAAAAACkgePfEABhenVyZV9m - aXJld2FsbC0wLjguMC5kaXN0LWluZm8vbWV0YWRhdGEuanNvblBLAQIUAxQAAAAIAGs8mFHc2RtA - EQAAAA8AAAAsAAAAAAAAAAAAAACkgd3hEABhenVyZV9maXJld2FsbC0wLjguMC5kaXN0LWluZm8v - dG9wX2xldmVsLnR4dFBLAQIUAxQAAAAIAGs8mFH23dK+XwAAAG4AAAAkAAAAAAAAAAAAAACkgTji - EABhenVyZV9maXJld2FsbC0wLjguMC5kaXN0LWluZm8vV0hFRUxQSwECFAMUAAAACABrPJhR7ldf - /VABAAA8AwAAJwAAAAAAAAAAAAAApIHZ4hAAYXp1cmVfZmlyZXdhbGwtMC44LjAuZGlzdC1pbmZv - L01FVEFEQVRBUEsBAhQDFAAAAAgAazyYUYHeHSKVLQAAfpkAACUAAAAAAAAAAAAAAKSBbuQQAGF6 - dXJlX2ZpcmV3YWxsLTAuOC4wLmRpc3QtaW5mby9SRUNPUkRQSwUGAAAAAAUBBQHhjAAARhIRAAAA - headers: - accept-ranges: - - bytes - content-length: - - '1154877' - content-md5: - - xyMngbzwMEZLHz/b42aP6g== - content-type: - - application/octet-stream - date: - - Fri, 22 Jan 2021 02:33:44 GMT - etag: - - '"0x8D8A7DE7DC99420"' - last-modified: - - Thu, 24 Dec 2020 07:35:30 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-type: - - BlockBlob - x-ms-creation-time: - - Thu, 24 Dec 2020 07:35:30 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2019-02-02' - 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 - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_route_table_v3000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001","name":"cli_test_azure_vwan_route_table_v3000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-22T02:33:30Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:34:02 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": "eastus"}' - 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 - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n - \ \"etag\": \"W/\\\"447dcf61-f15e-4115-a51a-30d495042b4e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": - false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": - \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9bb9d2d3-123c-499e-9478-e92100fcb27d?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:34:08 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: - - cdcb97cb-406b-486b-be95-588231cb7c00 - 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 - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9bb9d2d3-123c-499e-9478-e92100fcb27d?api-version=2020-05-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, 22 Jan 2021 02:34:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 0b3f4aed-da06-43b5-8524-046f39156474 - 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 - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n - \ \"etag\": \"W/\\\"468a3168-f01e-4e1e-9bd5-102bd304bbab\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": - false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": - \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '568' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:34:19 GMT - etag: - - W/"468a3168-f01e-4e1e-9bd5-102bd304bbab" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7fdedf17-ca9a-42a9-8d31-1257e9ba0629 - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan"}, - "addressPrefix": "10.0.0.0/24"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - Content-Length: - - '287' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --vwan --address-prefix -l - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n - \ \"etag\": \"W/\\\"78bff816-4c3c-4f11-8d3f-7338fd19f0c7\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": - [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": - 0,\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_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n - \ },\r\n \"routingState\": \"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/eastus/operations/3b25f611-d277-453b-bba8-a72d3224fb48?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '872' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:34:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7675fe31-88f6-4abb-adfd-025d6c06063d - 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 vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3b25f611-d277-453b-bba8-a72d3224fb48?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:34: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: - - 6a76acdb-2d51-46a0-a8c6-627bbddc2e3d - 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 - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3b25f611-d277-453b-bba8-a72d3224fb48?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"83be5a723d6a0063c4cd17db52a172ef8f9453435d316ef0abbd2ca2dd8e6ca8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"d8199ccce62c5c7f8670ddf7eb27493fa1c5079ed152607c958fc2b53201fc83\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"079af4056ab89f7e27d2a3b6b22c4147b47ce3a27f744ce8b3cde38998afa89e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"751699f42dffaef4a365aeea0ddcc5432a3bafeb0550ee6ff628df1b0a9e02bd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"dd61fd0b1e3b67b63bf731886995743798b72f6c9b00c3c8a589b3cb1b7be3cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"6132e8c9597e3ab57657b6f3607e19c457e9a08a82a1c1b4825b8ed4ae02c04b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.7.0\"\n },\n \"sha256Digest\": \"c11b611e3c8eeaaf2b6a5ca935ae7e6072834be77a777f1749d7c9c6419ae55a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.8.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.8.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.8.0\"\n },\n \"sha256Digest\": \"513b9683ef78ddb6316ed2d8b41f64f6e6278ae169aa3d5735c061108b40ec78\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.8.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.8.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.8.1\"\n },\n \"sha256Digest\": \"12dcc1e32460d12bf62cf3f5aa67f519dc0f48a4a7d70e36c52b24d50f7cd251\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.9.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.9.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.9.0\"\n },\n \"sha256Digest\": \"689f99954b56367f37956efcc80911719052048b0e0203b048a425556686d9f1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.10.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.10.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.10.0\"\n },\n \"sha256Digest\": \"de57720e30785823d821ade1f08886871aa3188335fb5105e960833f2aebacdb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.11.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.11.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.11.0\"\n },\n \"sha256Digest\": \"e9a21eab81616e7f71b5a4d764e541cbdea22d3dff3a8fc326f1ef06a1067421\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.12.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.12.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.12.0\"\n },\n \"sha256Digest\": \"e0f2007be10a9821d12ff7327b35480ddb8df57e8f990ecfdeedb256d9c70001\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.13.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.13.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.13.0\"\n },\n \"sha256Digest\": \"5dcfac7215584840899fb0cd1ab853c20b7915400a02981850dae857ba20177d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.14.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.14.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.14.0\"\n },\n \"sha256Digest\": \"7ada2c34d023530ef5ae2402966b362d36675fc247ad2b41917b8114b2af9c72\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.15.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.15.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.15.0\"\n },\n \"sha256Digest\": \"0c3ee01e583ebc81cee2908129bb988c69f50bcb2ca8425b788de378f4839b10\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.16.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.16.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.16.0\"\n },\n \"sha256Digest\": \"50882c87c092eb89310c0f7ebb800b3da9163d791f4417caa22ed5b47494a5b7\"\n + \ }\n ],\n \"costmanagement\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/costmanagement-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"costmanagement-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CostManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"d5c8be4d6f3e59a44da32af66f8855c24d9855c5b7bdd2f6571c8721afa20223\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/costmanagement-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"costmanagement-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/costmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CostManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"0a6e0ee27fd5896b45eabf0c9227e63b3c1bbc4975adf4cb566647396fa511f2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/costmanagement-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"costmanagement-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/costmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CostManagementClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"c6ca26bcffe2b897fc35b560f6fbf620ee563daf2396dc1bae67c8e4bd0e64c3\"\n + \ }\n ],\n \"csvmware\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/az-csvmware-cli/releases/download/0.3.0/csvmware-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"csvmware-0.3.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"shimitta@microsoft.com\",\n \"name\": + \"Shivam Mittal\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"csvmware\",\n \"summary\": \"Manage Azure VMware Solution + by CloudSimple.\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"dfb9767f05ac13c762ea9dc4327169e63a5c11879123544b200edb9a2c9a8a42\"\n + \ }\n ],\n \"custom-providers\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/custom_providers-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"custom_providers-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"custom-providers\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Custom Providers Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"7da462aaa336184b53d7b0b831c0fa77c4239dabe4e70fa4e500e250cf11a8ec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/custom_providers-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"custom_providers-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/custom-providers\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"custom-providers\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Custom Providers Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"8c0f062d96523bd6a95d53f09e48f9d47bf7aa75a9b735e93e6ee09647638b52\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/custom_providers-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"custom_providers-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/custom-providers\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"custom-providers\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Custom Providers Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"a9938f09c86fa4575e3c887206908cac15920af528c537c0b998362a1c43daf7\"\n + \ }\n ],\n \"customlocation\": [\n {\n + \ \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"customlocation-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcplatform-core@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"customlocation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Customlocation Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"7d91a34784d92c77c4233c4578043e6fac729ad42b3b29d5d597c12b037d2267\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"customlocation-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcplatform-core@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"customlocation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Customlocation Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"fbda1780a9d1c8eec9a147d09f7681f47238a574333eaeddb8284cd7fa881815\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"customlocation-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcplatform-core@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"customlocation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Customlocation Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"7dfa4f2231fd4ce0b50eeb5a5e470e1f7e510adb2f8602167157e508dbf84e77\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"customlocation-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcplatform-core@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"customlocation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Customlocation Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"5e36435b1a81de25e74e70c45c2ac9f98065138c35050f29210ae40c18484e28\"\n + \ }\n ],\n \"databox\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/databox-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"databox-0.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataBox Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"93cac253cd79728eb333715ae56111ffaa287c9d650e924ea07875ab36906974\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"databox-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databox\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataBox Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"210ab818a566ec69c923c1bc11f8f50295c19c30be378ab67be340a70e921aa1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"databox-0.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databox\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataBox Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"e247449406a189a8e9bbe320b1b4702846cf58da42b5a9b07ffa3e1db01ce6b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"databox-0.1.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databox\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataBox Extension\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"320e4ae8e3d17c9ca8b6c92ad47b04f20d7530340897d2fcc6e4a4ade0dfa7c2\"\n + \ }\n ],\n \"databricks\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExprimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"36130c36c5d4dd7a76952c3d5b443cf2a76447ccce41094e0b625b85139a366a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExprimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"229272c5b6abcfc37abe86600db356c54ef664b6681b2f8b705aa50be472b1bc\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"daf76d6aea0025d4783926d25fa813b74c1bcaa67bf8d937cc0d72529d06b9fe\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"db716fa7a65bfb977ea4d6eb4c5ad56c5dfd39062f0d179c5d3aceff959c2a26\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.5.0\"\n + \ },\n \"sha256Digest\": \"9a7bca2c8828959ed048b883da9c2b62c1597f5c6bd475c5269c30a27282080f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.6.0\"\n + \ },\n \"sha256Digest\": \"46a77fcd4b31191ce2b2d58e58af982415ea91787628426bd2b3d567da273411\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.7.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.7.0\"\n + \ },\n \"sha256Digest\": \"236f561c6a20141ae854d1dd64a6e5a0b4636d98517e5ba245401882cc7fbd92\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.7.1-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.7.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.7.1\"\n + \ },\n \"sha256Digest\": \"f086792f8910601c68fbe303f7831f77c79486fdf8e44039b1505d2344bac197\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.7.2-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.7.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.7.2\"\n + \ },\n \"sha256Digest\": \"daf595a051a47dded0fbe18a289e454f221eaaae11d1aadaa3f45612aff1b05f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.7.3-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.7.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.7.3\"\n + \ },\n \"sha256Digest\": \"b70d79f20b8b2e116df9afc321243d847bbe83db75d863e2e3a00c79bbd0908b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.8.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.8.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.8.0\"\n + \ },\n \"sha256Digest\": \"9abaf70996f462be238438a881f627806d10671897f9b1d562e4caef9e5ad3b1\"\n + \ }\n ],\n \"datadog\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/datadog-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"datadog-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.17.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datadog\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datadog\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftDatadogClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"9a5e9535e797f59059d07fcfb4dd456541d0813f97dae344180f76e279265086\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datadog-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"datadog-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.17.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datadog\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datadog\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftDatadogClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"9a38fd5d6d01646f299ee7b5f68e82ad708889c7d0bd72e0b6b6b13e5455e937\"\n + \ }\n ],\n \"datafactory\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/datafactory-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"f49b145f8125cde30aedf5080af90e26277ad1527cfb13cff0d72838298241d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datafactory-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"7cadaec354c8cbd4eae3465e385685807f619c8e7a2a093e6d4c68a9466b1e6a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"fd9a00c006a44b435d458b3f8523fceeec7e9d3d745cdc037876b8ad2b19ea9f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"0d68e01c4b7ef9ce6ccf7f2594f3faf19600dbb8ec7d395bc9ad4b4bdab8a245\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"95c6024d8fd35fca5280de274660abb3f249af868c6f5b75c3581df536ff4a13\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"5aade65b73ff133eb5442a8420818faf17ed398660c081bd92af87edbc9ab3e6\"\n + \ }\n ],\n \"datamigration\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"8e43876ea91c393c01d758cba0d2f6b16964da1d90b74a6370096672186cf055\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"a2013768c643392cb0f702103eb620f98564876c1d8cfb15de4d0760d3f504ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"d9775f16fb268da7e3b86dba28d0c57e10a8bc27ef8933370180b1d8819d0642\"\n + \ }\n ],\n \"dataprotection\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dataprotection\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"dataprotection\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-resourcegraph\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools DataProtectionClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"e98056945e1b5a1485c5c7137fa03bc5c482495f43556ee084eeb50f39a45831\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dataprotection\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"dataprotection\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-resourcegraph\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools DataProtectionClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"91286e022f5803d77cd20687d378a438a4560dd6974d814fd34f13ea5f5c8b63\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"dataprotection\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-resourcegraph\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools DataProtectionClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"9c85b29bf073c89ecf5424fa2159bca20416142d49ac02e5cf596a1e2cd5ccd0\"\n + \ }\n ],\n \"datashare\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/datashare-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"datashare-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datashare\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataShareManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"803c3637f752b0fb77eb5272a544abafe44942ff920a020ff7ea179ace329342\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datashare-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"datashare-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datashare\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataShareManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"c0a2b603c0abd320bc3df0a4d6c38945fd894737804690dad98896e2446763f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datashare-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"datashare-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datashare\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datashare\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataShareManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"f1a801bd0c38eb2ebf9c2fb4e0b43a98470ae7b40bbcd05eb2aa596d69579c9e\"\n + \ }\n ],\n \"db-up\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.1.13-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.6)\",\n \"mysql-connector-python + (==8.0.13)\",\n \"psycopg2-binary (==2.7.7)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.1.13\"\n },\n + \ \"sha256Digest\": \"df397272396c684972d1185e16439159427795b305f67e47fc37447a0c4d1257\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.14-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.1.14-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.13)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.1.14\"\n },\n + \ \"sha256Digest\": \"2f456a810be680ccc5dd7658b955410582063d56573ff3c38386d5ba2aacf7ee\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.1.15-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.13)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.1.15\"\n },\n + \ \"sha256Digest\": \"7c8db14999b2b5a4d4b9ae870562505a120896f39c64c20501502f5fdd897911\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.13)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"3e5b22cfbe3a0ec63aba3040e541d6819dbb1fbdc5b49286edfd143c79a2b8cb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"384b3806d49973cc91688ced691785d83cd7c3557016edc9161c151262ae2ab5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.2\"\n },\n + \ \"sha256Digest\": \"1b5f67a7f0e0ed8e26fe86d226e697a4a5832fc9e7d72b19b9142cc06f6569c3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"127f777b123c5829e728aef0e4bb0998d680d37510a1b402fec8caa233e5fdd8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.4\"\n },\n + \ \"sha256Digest\": \"7a891fe1ac06ac3df982a2b3cfd7be2ada8ac23e5a18763472d429c5f2c049a6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.5-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.9.1)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.5\"\n },\n + \ \"sha256Digest\": \"ad178a11840ae7874bce84b3d55efda6c69325caeb6e86d0267d37fc8e56ab6e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.6-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.9.1)\",\n + \ \"pymssql (==2.2.2)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands to simplify Azure Database workflows.\",\n \"version\": + \"0.2.6\"\n },\n \"sha256Digest\": \"d629a42206cc7bc436f8c1595058966fc50ad4d40bd9b818e8ef950d2ca7c205\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.7-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.9.1)\",\n + \ \"pymssql (~=2.2.4)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands to simplify Azure Database workflows.\",\n \"version\": + \"0.2.7\"\n },\n \"sha256Digest\": \"3a3fa10842fbc8fffe5d20bc2fd078e21020f814d22a1e5e67923088d6629837\"\n + \ }\n ],\n \"deploy-to-azure\": [\n {\n + \ \"downloadUrl\": \"https://github.com/Azure/deploy-to-azure-cli-extension/releases/download/20200318.1/deploy_to_azure-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"deploy_to_azure-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.60\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"VSTS_Social@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/deploy-to-azure-cli-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"deploy-to-azure\",\n \"summary\": \"Deploy to Azure using + Github Actions.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"f925080ee7abc3aef733d4c6313170bdedaa9569af1b95427383bc3c59e4ceb8\"\n + \ }\n ],\n \"desktopvirtualization\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"desktopvirtualization-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/desktopvirtualization\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"desktopvirtualization\",\n \"summary\": \"Microsoft Azure + Command-Line Tools DesktopVirtualizationAPIClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"d73c88fe0df98871a221495e000c39fbb22975fdc5066668c9ea0f578ff9a1a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"desktopvirtualization-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/desktopvirtualization\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"desktopvirtualization\",\n \"summary\": \"Microsoft Azure + Command-Line Tools DesktopVirtualizationAPIClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"8f35a96234e9c456b81f3dd086c6d7f20a9c49104cb3b277357aa9d697a02b0e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"desktopvirtualization-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/desktopvirtualization\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"desktopvirtualization\",\n \"summary\": \"Microsoft Azure + Command-Line Tools DesktopVirtualizationAPIClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"6de28d6be58dd65ad8f25a9fa084676c54684f00f9938f5db7d0392282783e04\"\n + \ }\n ],\n \"dev-spaces\": [\n {\n \"downloadUrl\": + \"https://azuredevspacestools.blob.core.windows.net/azdssetup/LKS/dev_spaces-1.0.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"dev_spaces-1.0.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.1.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azds-azcli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dev-spaces\",\n \"summary\": \"Dev Spaces provides a + rapid, iterative Kubernetes development experience for teams.\",\n \"version\": + \"1.0.5\"\n },\n \"sha256Digest\": \"6d481b89be4fe8835143433bb0b7c5ba2aba230433bc9ba483c0d26c5ef682a0\"\n + \ },\n {\n \"downloadUrl\": \"https://azuredevspacestools.blob.core.windows.net/azdssetup/LKS/dev_spaces-1.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"dev_spaces-1.0.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.63\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azds-azcli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dev-spaces\",\n \"summary\": \"Dev Spaces provides a + rapid, iterative Kubernetes development experience for teams.\",\n \"version\": + \"1.0.4\"\n },\n \"sha256Digest\": \"713600593e7e5c4e317e99d46110485c527740a74d90f01fa9b2ed52cdd42034\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/dev_spaces-1.0.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"dev_spaces-1.0.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.1.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azds-azcli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dev-spaces\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dev-spaces\",\n \"summary\": \"Dev Spaces provides a + rapid, iterative Kubernetes development experience for teams.\",\n \"version\": + \"1.0.6\"\n },\n \"sha256Digest\": \"71041808b27cd9d33fd905c5080c97f61291816f2dddd6dcdb2e66b9fb6ebf59\"\n + \ }\n ],\n \"diskpool\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"diskpool-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"diskpool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StoragePoolManagement Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"2afc595664b0fc616e62f8de28cebbca72d8f27dff02a8ed8cfff58dd62d571f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"diskpool-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"diskpool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StoragePoolManagement Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"d65e6f09c39461b78f052eec22eaf239b1d988aa63f3927470b74d28d0b2f95b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"diskpool-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"diskpool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StoragePoolManagement Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"3ffe1291c8c7132a9caf77e66105027ae8a980c92ad757b0195c3f51090c3e6a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"diskpool-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"diskpool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StoragePoolManagement Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"9ae6aaea85a17529da2a4e51c2ba2aba55b4b26816d5618eafd0f9fdc43b67b7\"\n + \ }\n ],\n \"dms-preview\": [\n {\n \"downloadUrl\": + \"https://azcliorcas.blob.core.windows.net/azclipath/dms_preview-0.11.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.11.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.11.0\"\n + \ },\n \"sha256Digest\": \"ef19e5c19976506a8f8910ec04bc785ebeffb5a4c8764047e4e4d42f812b0845\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/dms_preview-0.12.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.12.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.12.0\"\n + \ },\n \"sha256Digest\": \"5e2fd9a8e413fd13a280fbba9964658a5569af2e49e802bd12116ec01e5dd0ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dms_preview-0.13.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.13.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.13.0\"\n + \ },\n \"sha256Digest\": \"c7d127332825d5f93c83ecfb3c46e9415e3cb0e4cee2c953287918b02757bc0c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dms_preview-0.14.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.14.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.14.0\"\n + \ },\n \"sha256Digest\": \"77680dfecb50e2a017314ff2b5f2e0340fec73f225b41f5668abc561aed088cd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dms_preview-0.15.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.15.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.15.0\"\n + \ },\n \"sha256Digest\": \"556c145c03b8d529d8e77f7b35702fb8de382891635e858f928117f33688ee9c\"\n + \ }\n ],\n \"dnc\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DNC Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"5398ed171b49fe0d27307caec0f6bf2f6310da0b877b5f3b6d8a0fd6e7f50cbe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DNC Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"7d34527aec383a227d1183eea2ecb9d9aaa0642acf9ef206c2f3e6aab72d86b3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DNC Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"fa59bf6e597c17a93f3b8c4390f34629b86c8301c74974e5168d99d8dc464892\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DNC Extension\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"237f362908d8deda9f797fb619226cb5a33c3e1c8740e37b3b24db53ddb76c74\"\n + \ }\n ],\n \"dns-resolver\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/dns_resolver-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dns_resolver-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dns-resolver\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dns-resolver\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DnsResolverManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"4537129127c2e4efc69909c5769753d3f8213d5e3eef9c4d42282d4e011905d8\"\n + \ }\n ],\n \"edgeorder\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/edgeorder-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"edgeorder-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/edgeorder\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"edgeorder\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EdgeOrderManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"186a06d0f8603f7e0faeed5296ecc73bf1096e0d681acea42d5ebccc1670357b\"\n + \ }\n ],\n \"elastic\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"elastic-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftElastic Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"bcc9f3d37aa7a73a57899873c1f4ed3baa7d5d80e98f8ac74cdbc993ea939215\"\n + \ }\n ],\n \"enterprise-edge\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/enterprise_edge-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"enterprise_edge-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.29.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/enterprise-edge\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"enterprise-edge\",\n \"summary\": \"Support for Static + Webapp-Azure Front Door Integration (aka Static Webapp Enterprise Edge)\",\n + \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\": + \"e4d25af22ab109975e04ca457fcd8ebd5a9b3a5e37425a61e0cdd35e871fe1e4\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/enterprise_edge-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"enterprise_edge-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.29.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/enterprise-edge\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"enterprise-edge\",\n \"summary\": \"Support for Static + Webapp-Azure Front Door Integration (aka Static Webapp Enterprise Edge)\",\n + \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\": + \"dad0c130d8345740fb86b377eebf2aba68bca691102004ad526690d0727823fb\"\n }\n + \ ],\n \"eventgrid\": [\n {\n \"downloadUrl\": + \"https://eventgridcliextension.blob.core.windows.net/cli/eventgrid-0.4.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ahamad@microsoft.com\",\n + \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.4\"\n + \ },\n \"sha256Digest\": \"c91ac92ab27a7127c9def51e096f749986b57acf209b357eaf1494d3dbfb33f9\"\n + \ },\n {\n \"downloadUrl\": \"https://eventgridcliextension.blob.core.windows.net/cli/eventgrid-0.4.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"rgrandhi@microsoft.com\",\n + \ \"name\": \"Ramesh Grandhi.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.6\"\n + \ },\n \"sha256Digest\": \"6ef9f9cf895b5dcdf9a38c2490a0c81e8254de4302dc7139fb6a4fcf2203318d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ahamad@microsoft.com\",\n + \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.7\"\n + \ },\n \"sha256Digest\": \"f1bff60574d25ccc04eb2038081771b626651d144d9ab01be2b7410e1b02f56a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ahamad@microsoft.com\",\n + \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.8\"\n + \ },\n \"sha256Digest\": \"8f307569c920e1b75d4b6dfb47ad80c0cd49bf54a3a65139b57edff8a4776d45\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ahamad@microsoft.com\",\n + \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.9\"\n + \ },\n \"sha256Digest\": \"1682f61dbb8350611dfeb1f2486158732264eeb35e22af8d7daf39839a720839\"\n + \ }\n ],\n \"express-route-cross-connection\": [\n + \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/express_route_cross_connection-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"express_route_cross_connection-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.41\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/express-route-cross-connection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"express-route-cross-connection\",\n \"summary\": \"Manage + customer ExpressRoute circuits using an ExpressRoute cross-connection.\",\n + \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\": + \"b83f723baae0ea04557a87f358fa2131baf15d45cd3aba7a9ab42d14ec80df38\"\n }\n + \ ],\n \"footprint\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/footprint-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"footprint-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/footprint\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"footprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools FootprintMonitoringManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"69b0e9a19682f12c67af509071177e442349e1e2ae2f07f1e15d5a3f4136aa95\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/footprint-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"footprint-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/footprint\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"footprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools FootprintMonitoringManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"4aa59288bf46cfd68519f1f7f63d3e33af16d80632b84c283cc7152129260b2c\"\n + \ }\n ],\n \"front-door\": [\n {\n \"downloadUrl\": + \"https://azurecliafd.blob.core.windows.net/azure-cli-extension/front_door-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.68\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"a009045bab5dec0dfcd9715e2993ed0fa7a59b4bc6633d388415f482ed9cbc46\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.68\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"e483de77921937c210e03ed32e161d0384f162c8b253bd03fe8da1927b4160d7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.68\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.4\"\n },\n + \ \"sha256Digest\": \"49f509e8b56f4a1ef1870bac7273376df5e7fbfe1c25e10cf236e9448d66683c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.5-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.5\"\n },\n + \ \"sha256Digest\": \"cd55a87740de19cbd66444bdb398fd4a64115aeff92d52d2704a19ea2f083c60\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.6-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.6\"\n },\n + \ \"sha256Digest\": \"fbf965d7146884a87f481138dc06153dc95fd486f9dfeb40c1f11ce4667e203e\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.7-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.7\"\n },\n + \ \"sha256Digest\": \"9a97ac67c089d1e3a753fa55fa80e44b8f8a89bcae42442c19e34b035ae96231\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.8-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.8\"\n },\n + \ \"sha256Digest\": \"ccc7b5eba917945af589fed41dd6435eb1fe96385ae0a80c1b3bbb4db03b77a5\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.9-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.9-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.9\"\n },\n + \ \"sha256Digest\": \"064aa0c647e0dd320fd1eba50257387fd27e125838a2cf5b58121cc1c5eefc45\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.11-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.11-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.11\"\n },\n + \ \"sha256Digest\": \"7f9ea186e512e6a81f3199a18cd19b5065cf9f17faedacd2936e24350ee7be14\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.12-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.12-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.12\"\n },\n + \ \"sha256Digest\": \"89e7bbdb13a1afbccd285e9ae8868176cb990632eb85ce1202f23eb5b32f5e80\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.13-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.13-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.13\"\n },\n + \ \"sha256Digest\": \"cc22cdd23bae7f03121c04910a02536bba7e685183fb747499d4d355135bb57c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.14-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.14-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.14\"\n },\n + \ \"sha256Digest\": \"bca02f32e3a322de8cf29be1a2c255897ede3a34ee620dcc1871f1dbb6019ff1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.15-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.15-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.15\"\n },\n + \ \"sha256Digest\": \"8673a26f16f0d5b96f217d69f1f2c7588105c56c7e5e53c9a1f6f36b7d9edcff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.16-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.16-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.16\"\n },\n + \ \"sha256Digest\": \"49727e1a4e61e74763c3905e4b9b5cfee8baa3ef4be628ccb6cf7e6a8d08ce1b\"\n + \ }\n ],\n \"functionapp\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/functionapp-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"functionapp-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"grzuber@microsoft.com\",\n \"name\": + \"Graham Zuber\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/functionapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"functionapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-functions-devops-build (~=0.0.22)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands for Azure Functions.\",\n + \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\": + \"0de3812d31b3581a333e64e32807cae7ca734a6d369180bfe21b91ee3ea105ed\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/functionapp-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"functionapp-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"grzuber@microsoft.com\",\n \"name\": + \"Graham Zuber\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/functionapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"functionapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-functions-devops-build (~=0.0.22)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands for Azure Functions.\",\n + \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\": + \"9b49a2bf31e2183a122e9a8b83c782e3f7b5d1db5a5df9037219b52dec8aedaf\"\n }\n + \ ],\n \"fzf\": [\n {\n \"downloadUrl\": + \"https://pahealyfzf.blob.core.windows.net/fzf/fzf-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"fzf-1.0.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.isPreview\": + false,\n \"azext.maxCliCoreVersion\": \"2.99.0\",\n \"azext.minCliCoreVersion\": + \"2.9.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"patrick.healy@microsoft.com\",\n + \ \"name\": \"Patrick W. Healy\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/phealy/azure-cli-fzf\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fzf\",\n \"summary\": \"Microsoft Azure Command-Line + Tools fzf Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"84abeed03b4bbfa7b8c0be08d9366ff3040e2160df4f5a539f0e1c9e0a1c359c\"\n + \ }\n ],\n \"guestconfig\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/guestconfig-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"guestconfig-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/guestconfig\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"guestconfig\",\n \"summary\": \"Microsoft Azure Command-Line + Tools GuestConfigurationClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"0cf21ef88d49458157dae77e5bb25dfdfff8c12e76d15a19d468b408f4ab61c5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/guestconfig-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"guestconfig-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/guestconfig\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"guestconfig\",\n \"summary\": \"Microsoft Azure Command-Line + Tools GuestConfigurationClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"94836a5d21ee1071cd40b163d2c80c32a6a81b9dc85d91371f7e4fb35141e273\"\n + \ }\n ],\n \"hack\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/hack-0.4.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"hack-0.4.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"chrhar@microsoft.com\",\n \"name\": \"Christopher + Harrison\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/hack\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hack\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Hack Extension\",\n \"version\": \"0.4.3\"\n },\n + \ \"sha256Digest\": \"f9e600457e3a9fffc3235a7b30176d9f0a7f4d39ac01ea3e2668bcbdee6398a6\"\n + \ }\n ],\n \"hardware-security-modules\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hardware_security_modules-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"hardware_security_modules-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hardware-security-modules\",\n \"summary\": \"Microsoft + Azure Command-Line Tools AzureDedicatedHSMResourceProvider Extension\",\n + \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\": + \"dafa526a4bce243940432e91f6f28d2254bdcc1a90eaa0f097493f9d79a23b36\"\n }\n + \ ],\n \"healthbot\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/healthbot-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"healthbot-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthbot\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthbot\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthbotClient Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"9134fad2511516e714a5db346d63865af0badf0599ade3f1c15faca0055585a3\"\n + \ }\n ],\n \"healthcareapis\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthCareApis Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"2bc0f7c9642cb0afe682218761205d2b7ffe842a397fd679ad462506f2846ce0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"460655a4287a7e4ecf69fac32c95628df9ce776a802f061a81f54f7d89aca0ba\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"6dcb79765e87026db4f6e09f4a85e9d6a523fb9928a5586c3cb5e16cc1e1f3be\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.1\"\n },\n \"sha256Digest\": \"c1804f41528fdfb2ccc355a3a7e28c961fb1a783c767d855b886db0483897e33\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.2-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.2\"\n },\n \"sha256Digest\": \"950fcd15946023adb8e2d7f7eb7d8a856ccf497f0ec2265225ece0df3663c285\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.3-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.3\"\n },\n \"sha256Digest\": \"0a19a8d24aa9676a6ed141c7199696af6d784662f68d576c423707a82d4ff2d2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.4-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.4\"\n },\n \"sha256Digest\": \"d19fd5392f54db314a0be4db52dc2092d0cd802c7353e6c40cccfd31958fa320\"\n + \ }\n ],\n \"hpc-cache\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"0961683cd21f09622399f54b62389fc5d529f861c2280c4751ae977c83da9ae0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"16f3648054ccadb1d8e3110ac7febd238f1583b1c559cd19395096e9b7588be4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"6ca5b80e7c705bca73ec1ecfc791d82721fa19d12e4449be4d27933901a9e471\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"8c03e7450a4dc7eb28b271037053caec7530e430aef801d6e1223adc9228083e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"2babc06382b75b3afa92d61a6e66a6d7f01878168e687ca62903c16bed782285\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.5\"\n + \ },\n \"sha256Digest\": \"852cb417aadf0ad07e3c51413858c413bf71ea6cb49ba58289d9572f9a350507\"\n + \ }\n ],\n \"image-copy-extension\": [\n {\n + \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/48/6f/7fa75dfa7c015c0b58f18473b4aa8d565be8606d9740d4442b32b17df913/image_copy_extension-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"tamir.kamara@microsoft.com\",\n \"name\": + \"Tamir Kamara\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.3\"\n },\n \"sha256Digest\": \"8a88c2600f9dad5f38ca6128ab8efaa38a974fbb7fe8c875fc50b7bb7d37bd54\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.4\"\n },\n \"sha256Digest\": \"174e2437b20a979257a93017209ba1ff5d1969ea1eca7f3cbe57e8d11c75f4f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.5\"\n },\n \"sha256Digest\": \"14216b9664365a03ccd6d2cb469a32ab1e38f1d1e9b2735d27725cdc5300b148\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.6\"\n },\n \"sha256Digest\": \"69cc6fac34625677c94fb276dc97caca8769295db51dc480da4b194a0ec94720\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.7\"\n },\n \"sha256Digest\": \"565cf4411a6b12d2940365a7d4d578422709a2c38f95a253e5f6e82ab9bd6bdd\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/image-copy\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.8\"\n },\n \"sha256Digest\": \"b57f554b77e68d414b9f79016311a3e5c180f76206557909319edcad9ada5240\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/image-copy\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.9\"\n },\n \"sha256Digest\": \"2ed4710d1e30aa0c21c5e5bbc92d971c0ef325f602ba36698f90663497f3cfbb\"\n + \ }\n ],\n \"image-gallery\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_gallery-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-gallery\",\n \"summary\": \"Support for Azure Image + Gallery\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"e7939c407eebea41a5c98d094f29428d40efcb8b73330e113304af35a3631971\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_gallery-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-gallery\",\n \"summary\": \"Support for Azure Image + Gallery\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"b2741a832f5955b53d2899eb332bb0a2df1462ec310ea1dee89e11ff041d1ac4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_gallery-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-gallery\",\n \"summary\": \"Support for Azure Image + Gallery\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"41dfa1cda5be37acd0c2236bd8febae31a117e99d2c267fb3a76f50b6ba0aa1c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_gallery-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-gallery\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-gallery\",\n \"summary\": \"Support for Azure Image + Gallery\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"6260c1f4bfb589d2ba0569317358a149caabbbd49a048e69328e44871694aacd\"\n + \ }\n ],\n \"import-export\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/import_export-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"import_export-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"import-export\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageImportExport Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"6a5a1a1a23c7ff90e01b1f0a33d04874d750845e6cda56badce4ce99a518ef55\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/import_export-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"import_export-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"import-export\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageImportExport Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"0680948362e12138c9582e68e471533482749bd660bfe3c8c2a4d856e90927b0\"\n + \ }\n ],\n \"init\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/init-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"init-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/init\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"init\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Init Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"1177fc293dc118b449b761ec2c728d39755fc3939de8d4bfd89cce1bfb218e86\"\n + \ }\n ],\n \"interactive\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.4.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.0.61\",\n \"azext.minCliCoreVersion\": + \"2.0.50.dev0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.4.1\"\n },\n \"sha256Digest\": \"22b940493972b77c62606b0ae3c834283209d8619bb740e69dd115530a328e3b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.4.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.4.3\"\n },\n \"sha256Digest\": \"ba78a45ec9753a42e1e805dc9cf3b309df264c6201dfd1dabcc6c00b22599fe8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.4.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.4.4\"\n },\n \"sha256Digest\": \"1e66bc1f117fac90f320c072a08f527b8570f5a6725670a1fb4d05f2c7eb7a31\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.4.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.4.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.4.5\"\n },\n \"sha256Digest\": \"9dc4b78b10065603501f2ef7124847cbdac013fca6c00e2684b1d1f702ffcbc4\"\n + \ }\n ],\n \"internet-analyzer\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\",\n + \ \"filename\": \"internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"internet-analyzer\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Internet Analyzer Extension\",\n \"version\": + \"0.1.0rc5\"\n },\n \"sha256Digest\": \"7e5ee753abece69fb917f3a96be4a3d8117ffbbbd75d18c2e54c74c0fe2b952e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc6-py2.py3-none-any.whl\",\n + \ \"filename\": \"internet_analyzer-0.1.0rc6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/internet-analyzer\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"internet-analyzer\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Internet Analyzer Extension\",\n \"version\": + \"0.1.0rc6\"\n },\n \"sha256Digest\": \"0708d9f598d1618d138eebcf18354d97c7b3a2c90570959df077e04d419d32c3\"\n + \ }\n ],\n \"ip-group\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/ip_group-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"ip_group-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ip-group\",\n \"summary\": \"Microsoft Azure Command-Line + Tools IpGroup Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"477d7f58fe44a4ecb0ced3497262d7ccd8bb7677d70582b6fccf645e91d25ad4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ip_group-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"ip_group-0.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ip-group\",\n \"summary\": \"Microsoft Azure Command-Line + Tools IpGroup Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"afba2d8a8a612863b63f504d6cff6d559610b961e4c77dc2fd49b9fe03ec67a2\"\n + \ }\n ],\n \"k8s-configuration\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"80b79b09d9caa8e1813dad25703c442aec35e01d60a3ea13389ebaec3e94933c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"2ca4d1e87dfa0614592b758d3441bfeaaa85e4d151b734ce27cc74c6a400edec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.1.1\"\n },\n \"sha256Digest\": \"3edf6b977d911b4da52ed66ada9363a7a6a739773a26f3599a2fdc728adcce9c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.2.0\"\n },\n \"sha256Digest\": \"145c09df2e45ac41b6471fe74a513720014943151b5ca67e9913a1a91d591ac6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.3.0\"\n },\n \"sha256Digest\": \"c403947012efe91407ffb3e8edaf3fc6775519b1930c36bb4a04c11c2a3de3ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.4.0\"\n },\n \"sha256Digest\": \"877af811d8ee5fb8f282faefd159b7c61cbc0de6410ef43d54872e217a68747f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.4.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.4.1\"\n },\n \"sha256Digest\": \"827006d9e0b453fbf318e09bdea7403f715f517796646476b4f621b5830597c0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.5.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.5.0\"\n },\n \"sha256Digest\": \"240ec430dc52af32a03450707a9734d29f7077c9961f7d1ebc871891f3f2d906\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.5.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.5.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.14.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.5.1\"\n },\n \"sha256Digest\": \"bf697ea1cb07d7792ba8cbadb677797398b9a818ffad2c5b979eecb5d7740ea7\"\n + \ }\n ],\n \"k8s-extension\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"fce51e9eccace013cbdac4a38c4bccf71a24aeed04cc6af68adb9bdb268a0787\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"dcf1efff249be93fdf6a1504975294c1ada2c888f20d97bc51411aed4eb6ba1a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"f8c2c922fa229a20d3ecf1ae1572bd6b73e6f7e52f0a13647d20a18abc257ed1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.3.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.3.1\"\n + \ },\n \"sha256Digest\": \"77e0dea5831e33ac88a6485deca56b233ce4e29c39e6fd1765b405b421b7b3b5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"5987336827718cc5a2aefbee33226cc66574b5767644f8fd48016883a2e9f997\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.4.1\"\n + \ },\n \"sha256Digest\": \"10d2318f7998c5bfee637141ab89581a974893a0f062d9dc55ae5c2cc9f9b4ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.4.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.4.2\"\n + \ },\n \"sha256Digest\": \"aabdf00aa0cabddb142ef829e487d1b33c716ad498a4eee29389fd889e1f30d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.4.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.4.3\"\n + \ },\n \"sha256Digest\": \"67dc73f1e12d5e0084963a73c4a8f4e3adc06785f3ab51c5e0ee1f801fbca0d4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-extension\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pyhelm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-extension Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"82bb4f809cc5b6fe6b998e78adf6ca3b5b50de02f998c180441d9d66e7cc4875\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.5.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.5.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.5.1\"\n + \ },\n \"sha256Digest\": \"b04378d1c1699cf8cf37fc84a0f77fd5b87c653cc4d06049ba546660ce57fe42\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.6.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.6.0\"\n + \ },\n \"sha256Digest\": \"a1b642402345b71cb0f06aa31653a3161ab3f5f874e29d59863b987200bc535d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.6.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.6.1\"\n + \ },\n \"sha256Digest\": \"42b366184ab6dd9f46bb44e7c0e10eace4f25f514f97dd1912552c6900f2fd9e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.7.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.7.0\"\n + \ },\n \"sha256Digest\": \"8721d18318523e58de9bec2630b713c1c860f910ee1f9d05f80dbc6fd178f9ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.7.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.7.1\"\n + \ },\n \"sha256Digest\": \"f1360a4c39efb470184c16d4b69273a46225bd86b9c4a463fcdd3ecbaddafc4e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"039cd89acff0e63516a7235c2587f4e06a750b9f9d3e94a5399de21c17964cd0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"6f6ecdffa02759bacd523a9804e2c7e9e96603f3de57c62ba609b3bdb6c2a3ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.2\"\n + \ },\n \"sha256Digest\": \"4e911e5b1c750700a0ac713fd3ec3cac97778ade4cb4d2cecf1342200f766851\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.3\"\n + \ },\n \"sha256Digest\": \"0a37d5c8c098a1624be18beef43c6ec5c472f237486e08ebf60245dd9e3c5286\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.4-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.4\"\n + \ },\n \"sha256Digest\": \"248b883ec7518f5db53de32d6516d358062d4703b5d958a34b2c723eb3a5b8f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"c5b48df58d454f3d154711b1184af5737455dbc7af8deaacef884be307026cbd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"bf92e1df8eee418aa7be48466b6d6138e930b25287fa1f9fe1d7334173d63e69\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.2.1\"\n + \ },\n \"sha256Digest\": \"e65628ffceba2a4f26ba024bf1e46599731cda5286f234e81a1259f027f75df4\"\n + \ }\n ],\n \"k8sconfiguration\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.1.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.1.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8sconfiguration\",\n \"summary\": \"Microsoft Azure + Command-Line Tools K8sconfiguration Extension\",\n \"version\": + \"0.1.7\"\n },\n \"sha256Digest\": \"6440f1f1bebda0b3288ab95654a107e3f803d1ad2a23276cd5e27abe6a71dd60\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.1.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.1.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8sconfiguration\",\n \"summary\": \"Microsoft Azure + Command-Line Tools K8sconfiguration Extension\",\n \"version\": + \"0.1.8\"\n },\n \"sha256Digest\": \"9d4b9d9dfcd8793297af670de10254804f5ce6d1bac6b0ad8e872cc5fdc5f761\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"paramiko (~=2.6.0)\",\n \"pycryptodome + (~=3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration + Extension\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"ae3ec26beb84e821a169f02479cfc337b82141738bef7a0b09422d3676add9ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"paramiko (~=2.6.0)\",\n \"pycryptodome + (~=3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration + Extension\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"a9ae3e56d1289c340ebcb2790775801a9a932d6f5edba66689bada001e35f9ba\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"paramiko (~=2.6.0)\",\n \"pycryptodome + (~=3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration + Extension\",\n \"version\": \"0.2.2\"\n },\n + \ \"sha256Digest\": \"8692905679d9a800326aea7698818778b6f0ce4761232e20e8fc39c67ccb28d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"paramiko (~=2.6.0)\",\n \"pycryptodome + (~=3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration + Extension\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"65f87fadf798e66d87bfd3add12807140523cc324d5ca3dcf03bee2ce6e0839f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8sconfiguration Extension\",\n \"version\": + \"0.2.4\"\n },\n \"sha256Digest\": \"39940729eb7820da63d543861395b11552e86673a884bd9d1603a0fbf09e30d7\"\n + \ }\n ],\n \"kusto\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"ffa47cb6f8f850e75412dffa6a5e52f857d5e7ca217322ce176eea81d24768e8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"e6febb41b7a6dc6ec752825fe2af9506ff40c227bfcea9a3af5e6ded115003d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"5738e9b48c17008688080a6b3cfd37b67dfe597a538c874ec75dddcc8e18935a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/kusto-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"37ed6998527aa8d58798fb8816f94a3bd06859b2cee4d61763f63ec6c00657a7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/kusto-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"3d08f74cc6e2a90e43b6f2859c2a2828c2a9de8b3b814f07658c6bb15531ec2c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/kusto-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"cf5729e9d02029a189182523543285c9737d515f41c610c8338d43f872f9f01d\"\n + \ }\n ],\n \"log-analytics\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"6f4789fff8581a52e13bcf8f13fdc16b47662fac69e1fc3ea49280de1a8e65bc\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"aleldeib@microsoft.com\",\n \"name\": + \"Ace Eldeib\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"28a24f605e80c6fc56408add14981e5b4572077f2b5f0c55208f4105624cc91b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"23751654f76334e97c3ae3b10dd4e6896785cbf5c7c9442d3f979ebd6b9c6c21\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"c04c42a26d50db82d14f76e209184b18d4cce17b458817ac607e3ff975641eb2\"\n + \ }\n ],\n \"log-analytics-solution\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics_solution-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics-solution\",\n \"summary\": \"Microsoft + Azure Command-Line Tools Operations Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"844bf0a063b4e244bfe14e215c82d7d70327540b7bf446b7cb1d97ebb8a98119\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics_solution-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics-solution\",\n \"summary\": \"Support for + Azure Log Analytics Solution\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"0c85556a82ef5850c9f90b58380c5cde6a70a2bd2a464c0a8e429c77152a87bd\"\n + \ }\n ],\n \"logic\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"b02dea64e03adb7cf17a7afafc28844949c0f3a030f4eb005059452f0ac68040\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"906b43b34be4ed38c883a4f2031ff7b2b0547f51b16c8553f050afc2986ec939\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"35127cc723edf1c6311354326ebae9aa5b0d72d11141fddf3efc8fb84eadac81\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"38a1e8285fa8ad34632094b749aa1bea703440c946f01fc546306b8e934f389a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.4\"\n },\n \"sha256Digest\": \"e350fb81e4f2f6758a77814afebf8a71b4cdcac951142d703da15ca92ab7ca87\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.5-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.5\"\n },\n \"sha256Digest\": \"f0405775947f7581a5df52d97a3959b7fe3bf4b49ddcb487e15147cc1c4d276a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.6-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.6\"\n },\n \"sha256Digest\": \"b1f713229f624ea9121ef9a3778098cfa8a03bee46aae0c835c44c096c6d1ded\"\n + \ }\n ],\n \"logz\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/logz-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"logz-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logz\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logz\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftLogz Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"6a937dbb8c5a758b29afd45ecfc101743a5bf2491f2fba60e8ea512d5b765840\"\n + \ }\n ],\n \"maintenance\": [\n {\n \"downloadUrl\": + \"https://mrpcliextensionrelease.blob.core.windows.net/cliextension/maintenance-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.47\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"abkmr@microsoft.com\",\n \"name\": \"Abhishek + Kumar\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Support for Azure maintenance + management.\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"3e0fb5392bd29e53e7afde543d1a0ef5d33a6032f01322fd75b7afe7016c34fc\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/maintenance-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceClient Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"351c717a37e6fb9b29d22cdca3b0744a452a1116e83f9e57e794464311708c97\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceClient Extension\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"a0108efeddb6228788b878801f3c08c2b68d2df4ff8cc9d5043f1a0a9c2923b1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.2.1-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceClient Extension\",\n \"version\": \"1.2.1\"\n + \ },\n \"sha256Digest\": \"b93b0fa34c06fd4df9cef92446d8c61cc5a142ee1fae6e697aa77894959c1044\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceManagementClient Extension\",\n \"version\": + \"1.3.0\"\n },\n \"sha256Digest\": \"bd261425789df79c795c02fd402b3d71eb3c31e4deb3ccdba078a58315931af0\"\n + \ }\n ],\n \"managementpartner\": [\n {\n + \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/28/08/0fde582cf50eaf1ef304b35674b9b22f6731d95b2e41339eba4d35583b18/managementpartner-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"managementpartner-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"jefl@microsoft.com\",\n \"name\": + \"Jeffrey Li\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.29.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managementpartner\",\n \"summary\": \"Support for Management + Partner preview\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"f7ec0984b4d5a4c9192aa3ab6b78c867fc38cf620effef1804d89c9d1d9f204f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/managementpartner-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"managementpartner-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"jefl@microsoft.com\",\n \"name\": + \"Jeffrey Li\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managementpartner\",\n \"summary\": \"Support for Management + Partner preview\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"22ddf4b1cdc77e99262cb6089c4d96040065828a1d38a2709fdb945d3c851839\"\n + \ }\n ],\n \"mesh\": [\n {\n \"downloadUrl\": + \"https://meshcli.blob.core.windows.net/cli/mesh-0.10.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"mesh-0.10.6-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"mesh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"sfmergeutility (==0.1.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for Microsoft Azure Service Fabric Mesh - Public Preview\",\n \"version\": + \"0.10.6\"\n },\n \"sha256Digest\": \"07b6356cd15294c0bc0b31cfde1cdb2b92516b00728980d7a53557bb49273842\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mesh-0.10.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"mesh-0.10.7-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/mesh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"mesh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"sfmergeutility (==0.1.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for Microsoft Azure Service Fabric Mesh - Public Preview\",\n \"version\": + \"0.10.7\"\n },\n \"sha256Digest\": \"9433191eba661716d5f42fd53dcbc9c2711ec568ed444bfcd0fe3555a717fa0b\"\n + \ }\n ],\n \"mixed-reality\": [\n {\n \"downloadUrl\": + \"https://test-files.pythonhosted.org/packages/e4/fa/14628eb512ef4f0c38e4e6c8ee2d0624e03d352ca0ec1b1167a32f9de9a3/mixed_reality-0.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"mixed_reality-0.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"xiangyul@microsoft.com\",\n + \ \"name\": \"Xiangyu Luo\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure + CLI Extension.\",\n \"version\": \"0.0.1\"\n },\n + \ \"sha256Digest\": \"c5b7ef47d8db578920bcbda371a47edd19f8f681088823c2622dcb9332417587\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"mixed_reality-0.0.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"xiangyul@microsoft.com\",\n + \ \"name\": \"Xiangyu Luo\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure + CLI Extension.\",\n \"version\": \"0.0.2\"\n },\n + \ \"sha256Digest\": \"30449391c1d1e9d67210d0ef81109a11a0f74a24a6f07644c17aed58cf056173\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"mixed_reality-0.0.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"xiangyul@microsoft.com\",\n \"name\": + \"Xiangyu Luo\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/mixed-reality\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure + CLI Extension.\",\n \"version\": \"0.0.3\"\n },\n + \ \"sha256Digest\": \"29f07fa6db12c70f9b93a3914d61ea108a5f410f40bc92389c1a87ea9312c766\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"mixed_reality-0.0.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"xiangyul@microsoft.com\",\n \"name\": + \"Xiangyu Luo\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/mixed-reality\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure + CLI Extension.\",\n \"version\": \"0.0.4\"\n },\n + \ \"sha256Digest\": \"509b675781949c69baa911261a0637ba5a0fac9b11ee458feea7ddfb71393fef\"\n + \ }\n ],\n \"ml\": [\n {\n \"downloadUrl\": + \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.0a1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.0a1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.0a1\"\n },\n \"sha256Digest\": + \"da1a040a0755f2b6898ac6ed9f90241a38b776031e74d070431cd2ba63a13ea3\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a1\"\n },\n \"sha256Digest\": + \"079a8f3ecf3f0816a8afd4fe65303940721679f02718f70ddb706934201ada50\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a2-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a2\"\n },\n \"sha256Digest\": + \"b17126a35dd3ebb65cbe54fe2d69fc9274b37ec5a150ea084b1b343b7393ccde\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a3-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a3\"\n },\n \"sha256Digest\": + \"67c57c5c73d7ebaa99d1df52ba82c7a551bf61a182b4888128e8c62c896cf84b\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a4-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a4\"\n },\n \"sha256Digest\": + \"5a20917c68a953ad52c6c0596cd04e8c89f833e8ede17e64866a26f43e7f0164\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a5-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a5\"\n },\n \"sha256Digest\": + \"234ad4707c7c2b4bace2f4c3ed9e15f2f47d01ee00f7a5e13ccafaacec6de8d2\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.2-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.2\"\n },\n \"sha256Digest\": + \"80dc61c8d6778a262b882dc0c5e05b77551e64d338d90fbe8a7eb8c731f6814c\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.3-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-identity\",\n + \ \"azure-storage-blob (<=12.9.0,>12.0.0b4)\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"cryptography (<=3.3.2)\",\n \"docker + (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.8.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.0.3\"\n },\n \"sha256Digest\": \"3eac9a5c8ee9e78151d9bbcc54eb978a1987f6fd7c1beef0b4a575113f0a4466\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.7-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-identity\",\n + \ \"azure-storage-blob (<=12.9.0,>12.0.0b4)\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"cryptography (<=3.3.2)\",\n \"docker + (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.0.7\"\n },\n \"sha256Digest\": \"67f5f65437e50c763ddc9595542d5b12f949c1e325c30a93317ca5f292ad25e5\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.1.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-identity\",\n + \ \"azure-storage-blob (<=12.9.0,>12.0.0b4)\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"cryptography (<=3.3.2)\",\n \"docker + (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.1.1\"\n },\n \"sha256Digest\": \"373fa36ced7ef00a8caeb818bf8d83a52ca519e01180a0191b99bdfeae95a037\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.1.2-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-identity\",\n + \ \"azure-storage-blob (<=12.9.0,>12.0.0b4)\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"cryptography (<=3.3.2)\",\n \"docker + (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.1.2\"\n },\n \"sha256Digest\": \"19845c2b0d3701f5ff9e34162047c0c85f57904e17cdcbdde784ab4c8ac2fc49\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.2.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography + (<=3.3.2)\",\n \"docker (>=4.0.0,~=5.0.0)\",\n + \ \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.2.1\"\n },\n \"sha256Digest\": \"9e0c11f0d587d5c34969bef3287de5fba3f6fc398541812d2dc4c4db47e24498\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.2.2-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.2.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography + (<=3.3.2)\",\n \"docker (>=4.0.0,~=5.0.0)\",\n + \ \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.2.2\"\n },\n \"sha256Digest\": \"69cf00542a4acc6a1d22c9a0c020268cdccf0b3f52d1c49edb0cd1d6b4056237\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.2.3-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography + (<=3.3.2)\",\n \"docker\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.9.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.2.3\"\n },\n \"sha256Digest\": \"6cbfac0985961d82ae22fe7bccac9cee8a26c78958756f463ced58913ef96409\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.3.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.3.1\"\n },\n \"sha256Digest\": \"b296b2f83a88746f8be534b61a21e8a3e51f01b57b240897f79b9f9289388643\"\n + \ }\n ],\n \"monitor-control-service\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"71604e21a29c5bd84916a890cdf6e09dd7a0623867871d5ac8a0f5c2bed179dd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"a9996879f536220d71b5fe21e366ad22e4898e73761a8013d59981ebae6f0b21\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"518bd5b37083151b2b29a1f3895b0b150abb3116210d77d43eed121ee8055a60\"\n + \ }\n ],\n \"netappfiles-preview\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-0.3.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"netappfiles_preview-0.3.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.56\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/netappfiles-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"netappfiles-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"msrest\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming Azure NetApp Files (ANF) features.\",\n + \ \"version\": \"0.3.2\"\n },\n \"sha256Digest\": + \"d581bfefe3eb7fbceeed12c192ebdf5993fcf04ede7267d053aa416596bd0b53\"\n }\n + \ ],\n \"next\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"next-0.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"next\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Next Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"038d673501dd3b3c04314d0f69f01cfdd52e6ca3f44820a45d20dc3dd58317dd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"next-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.20.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"next\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Next Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"dee069e3a0efafbec8154fbf91ced5cee1f782599a726ac5937b9adc297d3c8a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"next-0.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.20.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"next\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Next Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"3bd9bc4ddf96fdb0ce17da57700fd40fc2a7aca56c0277ff95376256baeab4c8\"\n + \ }\n ],\n \"notification-hub\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/notification_hub-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"notification_hub-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"notification-hub\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Notification Hub Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"6f8ae57c43f53380db7944d5244121b3b757f996f6ecca394696106fd2c1d875\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/notification_hub-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"notification_hub-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"notification-hub\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Notification Hub Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"a8d0333e6c8ecc8846dcf162f01ce3d1f7a84cc4a431ec44cb5f48bd498b6d1b\"\n + \ }\n ],\n \"offazure\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/offazure-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"offazure-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/offazure\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"offazure\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureMigrateV2 Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"1918817070ae9e0ceef57b93366d18b6e8bf577fd632e7da999e1e2abbb53656\"\n + \ }\n ],\n \"peering\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/peering-0.1.0rc2-py2.py3-none-any.whl\",\n + \ \"filename\": \"peering-0.1.0rc2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"peering\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Peering Extension\",\n \"version\": \"0.1.0rc2\"\n + \ },\n \"sha256Digest\": \"1b73d60427e5e84971e244a5884b7f14e0e05e65792e9ecc7483695d1b596992\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/peering-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"peering-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"peering\",\n \"summary\": \"Microsoft Azure Command-Line + Tools PeeringManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"dd301c22107f961692a4acdbb5a98d28a7e86e7fb8619f2322884a2bc5507241\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/peering-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"peering-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/peering\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"peering\",\n \"summary\": \"Microsoft Azure Command-Line + Tools PeeringManagementClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"b068c12b47f17304af51431a2ae975339b7d4601a180e83916efae73d7c42600\"\n + \ }\n ],\n \"portal\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/portal-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"portal-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"portal\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Portal Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"89fdc138db22055fc09cf30a46050205a9e842d8fe386a3d8773ea563b074083\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/portal-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"portal-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"portal\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Portal Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"a3fc71fd6f0390850a60947cc1bff31d6346fc3f79e3ac8947add577c10c31a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/portal-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"portal-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/portal\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"portal\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Portal Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"0e09b913c7b691496f46a131e608dcc1d37fc887c900d16ac87ec6a4c1e0b646\"\n + \ }\n ],\n \"powerbidedicated\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"powerbidedicated-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"powerbidedicated\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PowerBIDedicated Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"a7373b5005814f9d6d0151622c8356b37758a7548aa2fb8cad3ddc4368c5e05f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"powerbidedicated-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/powerbidedicated\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"powerbidedicated\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PowerBIDedicated Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"127cb7b69076d07254aee3b57720409455e601ad431d3e12d713d886578ce1bf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"powerbidedicated-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/powerbidedicated\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"powerbidedicated\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PowerBIDedicated Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"be1b824d4e4561ccfccebba9453d27a4542e6d4e6471eabe3def15bb1b35ca6f\"\n + \ }\n ],\n \"providerhub\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/providerhub-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"providerhub-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/providerhub\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"providerhub\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Providerhub Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"9385d61fe18f10c379e7a7c57a1ded34dd0f5b15bcf021777e4d51d288b703fe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/providerhub-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"providerhub-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/providerhub\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"providerhub\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ProviderHub Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"9cda8fed546254987e5c5f872b4119105796c89de8d65d385638dac155bdf01e\"\n + \ }\n ],\n \"purview\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/purview-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"purview-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/purview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"purview\",\n \"summary\": \"Microsoft Azure Command-Line + Tools PurviewManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"706cc2550fbd07b8b676345c2f26c5ba66550905bc8ec224c6c4e5637c497266\"\n + \ }\n ],\n \"quantum\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.5.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"ac71362fb4834e02f26644403b4aac166def6488474e4f201ce3243b12b2424f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.5.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"49f14768df82cf63f8be1a4bdc69ecd531149c7603f05d1951431c006dcc3660\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.5.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"2564b05153b85eab96b58a2f8f3211241d6e07bdbe9a13f8feb74d09e1b80832\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.5.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.4.0\"\n },\n + \ \"sha256Digest\": \"90b537ba647b0eecda70ef8cbe4823d4199429f4ae436808434180d715448769\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.5.0\"\n },\n + \ \"sha256Digest\": \"257dfba42b6505dfa66721ddba9197da7f769f2e26d7c4bba9bcc729a72e49b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.6.0\"\n },\n + \ \"sha256Digest\": \"407d45555dc239d16882b99d52634d2726057ffbe404e008d6181a5cb0f212cd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.6.1-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.6.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.6.1\"\n },\n + \ \"sha256Digest\": \"5306a838f3c1c36d80cf7945ee8f74d472a6d1e19c45e47f233b22671953edfb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.7.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.7.0\"\n },\n + \ \"sha256Digest\": \"e3658e4549ce96f262d60c3ae357c3c057b8678cd01060a6eea0cd715a6d2e45\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.8.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.8.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.8.0\"\n },\n + \ \"sha256Digest\": \"cab7430782efaf49e865f6c217b911e27b3868ec5df53e70614aa256b3ba91ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.9.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.9.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.9.0\"\n },\n + \ \"sha256Digest\": \"214d6303c3381a8a328a15ca3bb8f77f68c36cf71d83cdaa41be87b2af6e28fe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.10.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.10.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.10.0\"\n + \ },\n \"sha256Digest\": \"c280a1eda5a9eee853239cac1ac2c610d159d59be5ac29fa7d5a4a1a3d7cbbde\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.11.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.11.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.11.0\"\n + \ },\n \"sha256Digest\": \"96d85f1c7675e4d8a42384de348cad66e80343b6ae26142ebdb19d753c45fc2e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.12.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.12.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.12.0\"\n + \ },\n \"sha256Digest\": \"ffc62c0663843522a3439acf4c682f9287849d5b3efcf2c4fd721266bfecfe96\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.13.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.13.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.13.0\"\n + \ },\n \"sha256Digest\": \"d37a85117a1b0989c1ceba8bbb571c777b626eabf9ce14161617837dbfeb067e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.14.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.14.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.14.0\"\n + \ },\n \"sha256Digest\": \"bad894820d83dceabf1805498ad98d1dc196fe8e1c6907136d60cbea30fee816\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.15.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.15.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.15.0\"\n + \ },\n \"sha256Digest\": \"4ca37f0e8b7b1b9b32ed35b127600f5b1ea2390b5dfc5901c7dbce5fef631278\"\n + \ }\n ],\n \"quota\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/quota-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"quota-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quota\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quota\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureQuotaExtensionAPI Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"f336a9499c951ba012c9f68ed7887af63b053ed1585df4bbdef88ddf9e0d6805\"\n + \ }\n ],\n \"rdbms-connect\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"fd80779e01d5afa74da88dda0339b9068e5ca3390d2dea78b034002c62b713b4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"83e3110a82f414274564d97ae5ba1088557376d5cc68cc358152135c283acf15\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"c738cd82edc1c9ad31ba0250eab982ef344d01e50e11dfec9c5b96ccdd5d1b6b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"5a6652ecacdc5b5c77dd9225abb30e5fb1160bc491a6ac3083327e81cc60f90e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.4\"\n },\n \"sha256Digest\": \"674a880f508d649f75d426c5b9700f7283079c1b9de2e5bccf31edbce907b838\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"c1830f07c8829025597bf60db45b04c6b854c76d598235e71e6c7ff9626ba100\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"c13bd245524b6c0f8dab0b7c80e51d710934f12f1f68fbc74614805aeb1429f7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (~=1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.2\"\n },\n \"sha256Digest\": \"e5fc0b600c652c9b5ef3f9ec55fde9756a22b0dd9ac17b4ca4efc68339491b58\"\n + \ }\n ],\n \"redisenterprise\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterpriseManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"22b1965e5a148ce4eb2d45bf48880caa21becb165810b1b93658886cd5e39515\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterpriseManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"f0662c4091e8c4e87069f93db23b5f057f2862f78d038a5f709f16f8d37d524f\"\n + \ }\n ],\n \"resource-graph\": [\n {\n + \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/bd/c1/3df175a9a6a0c6aeae1ca1a7499955d75dd03452b5ba75f6df01a02b7c7f/resource_graph-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"resource_graph-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.45\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"ilidemi@microsoft.com\",\n \"name\": + \"Ilia Demianenko\",\n \"role\": \"author\"\n + \ },\n {\n \"email\": + \"earc@microsoft.com\",\n \"name\": \"Azure + Resource Graph\",\n \"role\": \"maintainer\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-graph\",\n \"summary\": \"Support for querying + Azure resources with Resource Graph.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"76f10264a7c6d78664c34e73d390565ce66e639fd39ffdfad149da8fc499112d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/resource_graph-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"resource_graph-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"description_content_type\": + \"text/markdown\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ilidemi@microsoft.com\",\n + \ \"name\": \"Ilia Demianenko\",\n \"role\": + \"author\"\n },\n {\n + \ \"email\": \"earc@microsoft.com\",\n \"name\": + \"Azure Resource Graph\",\n \"role\": \"maintainer\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-graph\",\n \"summary\": \"Support for querying + Azure resources with Resource Graph.\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"1eaef63df8a22666f88f322829f3470efb790e36d35376c1705b40fb03464549\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_graph-2.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"resource_graph-2.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.21.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"description_content_type\": + \"text/markdown\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ilidemi@microsoft.com\",\n + \ \"name\": \"Ilia Demianenko\",\n \"role\": + \"author\"\n },\n {\n + \ \"email\": \"earc@microsoft.com\",\n \"name\": + \"Azure Resource Graph\",\n \"role\": \"maintainer\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-graph\",\n \"summary\": \"Support for querying + Azure resources with Resource Graph.\",\n \"version\": + \"2.0.0\"\n },\n \"sha256Digest\": \"3bda3548bd742ad24b84d5a81f58aaf47f0d7b97f4a04d5a5b405715f850a31c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_graph-2.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"resource_graph-2.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.22.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"description_content_type\": + \"text/markdown\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ilidemi@microsoft.com\",\n + \ \"name\": \"Ilia Demianenko\",\n \"role\": + \"author\"\n },\n {\n + \ \"email\": \"earc@microsoft.com\",\n \"name\": + \"Azure Resource Graph\",\n \"role\": \"maintainer\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-graph\",\n \"summary\": \"Support for querying + Azure resources with Resource Graph.\",\n \"version\": + \"2.1.0\"\n },\n \"sha256Digest\": \"62c81e3d62ce60c5a0a485829d00bdb0c733145ee93fb6098c14e3b27ee27c40\"\n + \ }\n ],\n \"resource-mover\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_mover-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"resource_mover-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ResourceMoverServiceAPI Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"f86ecfcde11e6016da9b107e191b1feaba6896f395d989e5962c6fe6ac34c593\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_mover-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"resource_mover-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ResourceMoverServiceAPI Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"dee4f576aa3902497762f0d3582fea9e7846de6cfad48575798c9349a45c20a0\"\n + \ }\n ],\n \"sap-hana\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/azure-hanaonazure-cli-extension/releases/download/0.6.5/sap_hana-0.6.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"sap_hana-0.6.5-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-hanaonazure-cli-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"sap-hana\",\n \"summary\": \"Additional commands for + working with SAP HanaOnAzure instances.\",\n \"version\": + \"0.6.5\"\n },\n \"sha256Digest\": \"b4554c125f3a0eb5c891cec396e7705f6e91d4d81789acef20e3c4d172fa4543\"\n + \ }\n ],\n \"scheduled-query\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"5529213e41055f70c53407498b618c7d48cea70a0ce0aca069e0dd9bb818f549\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"d9cba80c47b0b8b3e3ad86a257eb53598611698efab6687a11f81c2b036b1083\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"f7a7ee6f9c11260c8cfff54f36ec68b2a3b235767ceb8ff281280523f2eda696\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"17f2dfaa317f735eee708b4365e107a29b3fb796f8d6a9505388ec30c73bf930\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"ec2220289b5715676e169baeb457322cceade980a36c9034eb58206371703892\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.3.1\"\n + \ },\n \"sha256Digest\": \"0535be22855f9ab829421fc8f8d47704a0f7e2ea1067ea57d486e9b81a71c5cd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"9228691ea2baa13b11473c8ff9916f8bd1fa39fae33ee4386648d9bffb239617\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.5.0\"\n + \ },\n \"sha256Digest\": \"ee4c54e1d96ac2bd33f2cf148e7cc1eac978afe842dc5b49be24bd2c24c6d13a\"\n + \ }\n ],\n \"scvmm\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-0.1.4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"0.1.4\"\n },\n + \ \"sha256Digest\": \"22aaf76e9bb066f279683f451c45d1b927e288a000879a21c728891f463c9e94\"\n + \ }\n ],\n \"sentinel\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"sentinel-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/sentinel\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"sentinel\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SecurityInsights Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"0c0de10af8cc7c91704dc29afa2bc178f18bf4e28612d6d0c5d7c594bd05d4c9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"sentinel-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/sentinel\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"sentinel\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SecurityInsights Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"407f23c06a7bd6e1200f108abcd0127904334d9813ccae8df8fc3e63b3eaa97f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"sentinel-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/sentinel\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"sentinel\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SecurityInsights Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"978d4d15a01124d46dd310918c428bba1792a58716aa0511f2fdbfec2176f7e2\"\n + \ }\n ],\n \"serial-console\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serialconsole\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (~=0.56.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools for Serial Console Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"39317e5d4ecc6add26a624a6fa0d48344cfb6b3faaefb6ccbdcb30de9d35fb50\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serialconsole\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (~=0.56.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools for Serial Console Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"082f315c9cdf5887987f12d6e27645101ea8318003a8d60c24dc630c861ebc97\"\n + \ }\n ],\n \"spring-cloud\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"1042caa1c3b6c85c2e5360bf57de4d26f71afd80ecae6b14cf45fbfe73b5cf0e\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"f42d8c99ace9b4df29eea79ac7a588b1fcaecd381b1a80c7dbdd920756f8d209\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"b39aa8c49b316b1870e79db0526be2db772b179f9f517f72af898d9c3cc3310d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"dfb974346cf9f62d8f9564756d6661cd758904d1e7035ca61c7227d6b0fc6cf1\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"ab81ea74ecb86edaa1b4e5938e1136dbf6788b237b141c5905b121646edd9f5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"c4af1e193256ae2b04fc9c46a414c3203944b458b2a8959654c55450ec9ea76d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.4\"\n + \ },\n \"sha256Digest\": \"9e18d1d44c7f63c970bbc70d29f6c5719c4062c5defa5a63165db13d8623fc70\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.5\"\n + \ },\n \"sha256Digest\": \"281fc1babe47793e0bcccbe004ea4771802038eead1e8c3b553461b8062be912\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.6\"\n + \ },\n \"sha256Digest\": \"f3fdb9cd98dcd887a7f84dcc5eff38c8b6384b464fa0734965df9f379acaacd8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"9c719fe1c6f539ba663283bd2eb8464aa9bcbf2d35617ac58408c6133f824f38\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.3.1\"\n + \ },\n \"sha256Digest\": \"a720deecb978406fb081c148078ee8831780cefefe965556852c00f8e1fc36c7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"c09d2a188fe5e41f7fd9835c1efd0c3065b55f2b9efde39b6f2ff399be567eec\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.5.0\"\n + \ },\n \"sha256Digest\": \"b2a36656b073f9cf588755508757fcd2cd7e0f8d573b7e43fc5fa3adb315a063\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.5.1\"\n + \ },\n \"sha256Digest\": \"79fd3b7b6928ea53b63a040412420398e138097e960a3afdfa76da051f140f19\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"698aa10606de4ec9eec580747a2d6d38c755633261241d75618badc53fe1e0f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"d2b766d594c89a19abba3a7b2df6224d1af15fd9202b31fe5d57b9d9970b399c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"a4fa97d6241fab2a66d8dd80e0d6a68ea17d849bb7404349ad6203c71fb89ba9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.1.1\"\n + \ },\n \"sha256Digest\": \"ed63f4464f80e47df33b336ede149e1bc0f3b985dd033ee3541fffbaa9ad5f59\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"241c7485bfc3792efe8cd728df2ce8aa3a52eb078b7eab43a1dd2fd6322b413a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.0.0\"\n + \ },\n \"sha256Digest\": \"c1e2931b439dea0bea043aec7817b454d510c944552a7bf084fd9916ab513142\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.0.1\"\n + \ },\n \"sha256Digest\": \"82e4d6c55a28dd7de155504e6836981a390e26562ca684bdf9240324bf428665\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.1.0\"\n + \ },\n \"sha256Digest\": \"4d6714f950fc8f3097d4ec1e1a6eb52f564f3fd543195cb3e5da2b47f187fa92\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.1.1\"\n + \ },\n \"sha256Digest\": \"a9775975158941a59479571440dcf6555c6dabfff576ed5ffaf98bd25e49fe12\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.1.2\"\n + \ },\n \"sha256Digest\": \"a07a8718562169a6ec1524e2a111ab5f926b05db91f484ae2ff2397218afe171\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.2.0\"\n + \ },\n \"sha256Digest\": \"88ba35a78eb607d24d1c6ac72aa770990e961e3db17ed70278d99a60eee8830e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.2.1\"\n + \ },\n \"sha256Digest\": \"d12cf4e756b518d4caf799fc59e312a28fd105fe5c5ddaa62ceb22929ec2dc63\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.3.0\"\n + \ },\n \"sha256Digest\": \"6c776b16405b4c01bfd8af78307914eb5f050bb3793d7bf6549b2eca645d02f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.3.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.3.1\"\n + \ },\n \"sha256Digest\": \"3597aab72ffc4d9fdc3ee9d02b492bc0b11146b9ae0f4b9f4d6f958c05fdc980\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.4.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.4.0\"\n + \ },\n \"sha256Digest\": \"f4abfe885c9d08e80d48f1983d09082e8340e353ceb861a8eb9ce62f6786b180\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.5.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.5.0\"\n + \ },\n \"sha256Digest\": \"2238877407cb3d4c0425350350abee4f82da5376d11fea979194c62f8b485f68\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.5.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.5.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.5.1\"\n + \ },\n \"sha256Digest\": \"a0a28e6eea330f55f5dce630a4ddbbcc9f6f4d800a3e0fc3eeaf1bf2bb7db095\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.6.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.6.0\"\n + \ },\n \"sha256Digest\": \"a3f685cd0166cabb4e289aba399045399fb2fdc3d691f05cd5d8e9000031b434\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.7.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.7.0\"\n + \ },\n \"sha256Digest\": \"2694319d0d46dff1b159b0b02d615cb8848306e7c3df81a334ce35523f834b73\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.7.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.7.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.7.1\"\n + \ },\n \"sha256Digest\": \"68917af5100e931c03887a56ed14edb4d8ea258c049759b07018f52f03f8c08c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.8.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.8.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.8.0\"\n + \ },\n \"sha256Digest\": \"0c29139a8cdaf18c70cd53497a5888885c71fef03698631400191947496f97a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.9.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.9.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.9.0\"\n + \ },\n \"sha256Digest\": \"902fa79c399a2f374987ac84b65d76cf8e349de57da7a52c8c781a559fe24f35\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.10.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.10.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.10.0\"\n + \ },\n \"sha256Digest\": \"0f5f286381bdb4f8a36b7e1484da8a651b9a41b6a5ffd5390c2ebe76577415d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.11.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.11.0\"\n + \ },\n \"sha256Digest\": \"0b9bd233a830046a0286387c65a12facc5dea2d498281a50bda64ba846ef4dc7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.11.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.11.1\"\n + \ },\n \"sha256Digest\": \"0646e9965895f9ff1640d461049c2249f2a67036c4bac60ff90f8ba792c6e95f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.2-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.11.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.11.2\"\n + \ },\n \"sha256Digest\": \"11d01765c886a387ab622580e4e7b9476a86be5ee84a4d4af7120ef189752f32\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.12.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.12.0\"\n + \ },\n \"sha256Digest\": \"5865ebb83df7fe713a5ad7d2687b5b1b0c5668b24a774e80e04c303d9b8e6f9e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.12.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.12.1\"\n + \ },\n \"sha256Digest\": \"a46561af3afdca63d0b74bb97242e83e4b187601832b8531f915d7604964c430\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.2-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.12.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.12.2\"\n + \ },\n \"sha256Digest\": \"54880b35deac43f659d9e2b5a8a1f7437898eaf848c002a5733487bed6c9b42e\"\n + \ },\n {\n \"downloadUrl\": \"https://ascprivatecli.blob.core.windows.net/cli-extension/spring_cloud-2.12.3-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.12.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.12.3\"\n + \ },\n \"sha256Digest\": \"026c63b42b7b63464e0016e7321c074b99600656d9d5b57c4bada27d268deb28\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.0.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.0.0\"\n + \ },\n \"sha256Digest\": \"4d7f70bd517be50771f0e0eb94ca2535ed5907f29b7929534f1dd6a26684a805\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.0.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.0.1\"\n + \ },\n \"sha256Digest\": \"1142951621ab8ae41759275261cdd0507d11544ba03ad57e02c880e074eabafd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.34.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.1\"\n + \ },\n \"sha256Digest\": \"24d37afd816a9b6cbad6e3e0fae2c515ed2f11639cf7944266d128f01e98a0b9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.2-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.2\"\n + \ },\n \"sha256Digest\": \"f30828da4055c5cb4e88e981a6f883c304fafea747ecac46e92f2b65a04e1dc8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.3-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.3\"\n + \ },\n \"sha256Digest\": \"2826a70767439d7a3e2ff1446f13bf6a5075359f37d675181d8d97f75808fee8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.4-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.4\"\n + \ },\n \"sha256Digest\": \"25259140040004f711753a4eb980153d60ceb0560e534705c90141082a1bb085\"\n + \ }\n ],\n \"ssh\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/ssh-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ryrossit@microsoft.com\",\n + \ \"name\": \"Ryan Rossiter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography (==2.8.0)\",\n \"paramiko + (==2.6.0)\"\n ]\n }\n ],\n + \ \"summary\": \"SSH into VMs\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"cf39bfcf542db4a7a3acf119f4ea71f17626eaaac7fe480d058962fec3d3ff25\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ryrossit@microsoft.com\",\n + \ \"name\": \"Ryan Rossiter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography (==2.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into VMs\",\n \"version\": \"0.1.4\"\n },\n + \ \"sha256Digest\": \"2dc5540957fa050c986b6cfa5c57b5e0bb06f3d46d868d54d4418b15e4082c5e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.5-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography (==2.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into VMs\",\n \"version\": \"0.1.5\"\n },\n + \ \"sha256Digest\": \"070cc0bf147852872908ca9910d668c6f9b93b89d5cc6d0ec2869142635e6ae6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.6-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"0.1.6\"\n },\n \"sha256Digest\": \"a4de20dd94051c4b9143805cb9531075f56df5f56106c6aaed5e2fd1ffd62c3d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.7-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\",\n \"oschmod + (==0.3.12)\"\n ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"0.1.7\"\n },\n + \ \"sha256Digest\": \"680bd601879c1687faf5d7c15a7fac15887ffa613ff1b37f6fd6e98ba96998ff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.8-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"0.1.8\"\n },\n \"sha256Digest\": \"bd01a2dfb72acb547161338de894395db8b939e892ce19e4ec99fa3ce18f78f9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"12073d047fbedb7daca67c7ccbb3b063d0c82c01d02d00a28b9c560702fda099\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"f54a2bcc784316c451dc4a776f3ca910fb804296e96b9d8ff7b262754a7e79e0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\",\n \"oschmod + (==0.3.12)\"\n ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"3256339030666983a84dde5a5198cff91a4d555c785cf0480de61b4d9a495550\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\",\n \"oschmod + (==0.3.12)\"\n ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"71c6ffe17e95734735d2f8387cd643cb11b1628d6b66751507f7aea6931d9855\"\n + \ }\n ],\n \"stack-hci\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"9095702d720e24173616232ffab42bdf121dd82eeda48becd52d141f73c35bb3\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"dc6bc793de093c9e2be98d68379f7178ee67231058ece34bbf2f8e2d9f89f2e0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"c9c2359f5684f7c59600e55b2e99cdcd913f59dc2d7e5cc7d5e493b13b1248d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"c47cafffa1b541dd9e42100339ed4d22184a22974c804641a7e5adba4a756ba1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"2da335cae454c13cd02d8bf54ba2131f42998a35f619f7ba3937e9f93d592c29\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.5-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.5\"\n + \ },\n \"sha256Digest\": \"8edc35b629c2d86d0f88cdf3e63e16db4af13af1d69723edf541f9dce216e511\"\n + \ }\n ],\n \"storage-blob-preview\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.9.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"3407bc6ea0425aab5c5a495c447b0d9ec4f4a360f08bdfd68cfd7a6504789231\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.12.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"fc96b22fd656fcba97b8ee3283a1bead65b941aae10c174f597703ad7d8a5114\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.12.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"daec951de77a200f3479c00ebf1015534891592cfd4bbf7873c5784bdd3f57a0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.14.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"03ef575ccf01776e99f8adb1882c77ee41278ff18901556424c753279724c9a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.4.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.4.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.16.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.4.1\"\n },\n \"sha256Digest\": \"4cb5caa42e4c70db8ea5b33ad663246419003af30234f93ccef9aa2252e294d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.16.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"a3303da3925f8ad83c8eeced02f6b8897b355a3cc249424a7e70c621ee0d3642\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.5.1\"\n },\n \"sha256Digest\": \"d09bf0befecb5f64b803a1873e666900d3b2d0ca9fe6eea5bd959a68254339a8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.5.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.5.2\"\n },\n \"sha256Digest\": \"adabed83d8fad6a23dda1763edcef110962a4abf04450e1461a1345572e7052a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"5ce281e94a4aff64964d80ea042f3a7fee472848575bbe796b6ff764ae67e478\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.6.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.6.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.6.1\"\n },\n \"sha256Digest\": \"1f2362df611cb017b516d5b9a4389f194066dcf308e8cbc52ea7868d0c5f3f80\"\n + \ }\n ],\n \"storage-preview\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.52\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.8\"\n + \ },\n \"sha256Digest\": \"a3d48247051e95847ded28217433c4b98fc02d6ee21eedfcb24dd43f7360569d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.9\"\n + \ },\n \"sha256Digest\": \"880e01de0fab8893770497ef9410559ae223a1f09dbd6a23712226ab4e2d5ecb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.10\"\n + \ },\n \"sha256Digest\": \"8c87013be456849f27ea7f76df284e998e6f3911d3de478ec19abe84bb30fbe9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.11\"\n + \ },\n \"sha256Digest\": \"b00ccc8846bbb389b95064e7e9b547cbd877b0a596b8c36d86982be435695d5c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.12\"\n + \ },\n \"sha256Digest\": \"5bd273bf4c1952f4576faf05ed80fd73b25f0f4d0be81fe0bbf471019705a6bb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.6.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"7fb50e37a0e271c118124b4488474e3c2957cffe1b319660bd3df91534911008\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"822137d0987829d27537f36923d31d69371e756f8adc686ccdd5a2e03a40ab5f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.5.0\"\n + \ },\n \"sha256Digest\": \"7ec8887f3f83a4f67613a22f1eea7f9c5968c9b108d74c7299eacc400e40c710\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.6.0\"\n + \ },\n \"sha256Digest\": \"9431e5bba2ddd8d7850c1e3b4fc2a29dd0cc38322f1b04247bf7f7a5f3aacf4a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.6.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.6.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.6.1\"\n + \ },\n \"sha256Digest\": \"93cf02038cb209c2baee6e2a4bf17e0c8a8f55eb2c86c7678163499f84c31a75\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.7.0\"\n + \ },\n \"sha256Digest\": \"3b2a463e7852cd1153372b3dd9522c007dee8daff53ccf26fda0c84b642e8367\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.7.1\"\n + \ },\n \"sha256Digest\": \"25f0848bb685c0886bc4e3074652af587c56edd7ee88fe60df93f8150a8c8caa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.21.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.7.2\"\n + \ },\n \"sha256Digest\": \"768aecf13a62b06fd26b9d15078da74c38541a2793208b8c434afc55b39c2c64\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.21.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.7.3\"\n },\n \"sha256Digest\": \"ec0e700f8ba51eca45198d5907d056780946e0b5ffa593d264598679e949dcb1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.7.4\"\n },\n \"sha256Digest\": \"eede880e897e6fbfb7e631b91ee23b35229c1dbcefb5785279809d53a4568a87\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.8.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.8.0\"\n },\n \"sha256Digest\": \"0187510c8ebf2312c8937ae364a723016f912ac237c40685e94bac505e097be0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.8.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.8.1\"\n },\n \"sha256Digest\": \"1b31f65c2455974ffed95c2450a933714c3daa10b91972a9a65861ba496fa267\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.8.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.8.2\"\n },\n \"sha256Digest\": \"7528528b799aa957d751aa28fc61be07bd999ce22d54748b4a308c7f0def7e94\"\n + \ }\n ],\n \"storagesync\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storagesync-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftStorageSync Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"a1d15edfcc18d9d301dea843cd7dce9845b8da6f6b1beb47a1bba35ff46eadde\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storagesync-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storagesync\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftStorageSync Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"06d5e71b42edf721c5624cfd286b8593c68316f2b0ea4edf60c7a74835a695e2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storagesync-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storagesync\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftStorageSync Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"498aff0d83037e11a668915788a7a78c981d7241ad31e9fb7cf2f27725253261\"\n + \ }\n ],\n \"stream-analytics\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"stream_analytics-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stream-analytics\",\n \"summary\": \"Microsoft Azure + Command-Line Tools stream-analytics Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"e3a9048f289d1b870637e4b13c0ee1e877827834e1f71d31cb8161bacc441388\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"stream_analytics-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stream-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stream-analytics\",\n \"summary\": \"Microsoft Azure + Command-Line Tools StreamAnalyticsManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"95fcd5a67813e6961026efcd5fce764ce968c15c1ae03ffd7854e6e0f6c8bebc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"stream_analytics-0.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stream-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stream-analytics\",\n \"summary\": \"Microsoft Azure + Command-Line Tools StreamAnalyticsManagementClient Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"6a41159bb00f7974017461c3daec5d24385a50491d2157e82b1853f72d12b62c\"\n + \ }\n ],\n \"subscription\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/subscription-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"subscription-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"wilcob@microsoft.com\",\n + \ \"name\": \"Wilco Bauwer\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"subscription\",\n \"summary\": \"Support for subscription + management preview.\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"74388eb7d4976c620bd41ef577cdb9284cd9a3e38dc4756796d091a7c8193267\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/subscription-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"subscription-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"wilcob@microsoft.com\",\n + \ \"name\": \"Wilco Bauwer\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"subscription\",\n \"summary\": \"Support for subscription + management preview.\",\n \"version\": \"0.1.4\"\n },\n + \ \"sha256Digest\": \"0f28407be656e9930d06240b95bf1ccc8ebbbc9fc961cbd9e4b0575e1867b03d\"\n + \ }\n ],\n \"support\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"e74e1b769155a08226d103781dbec7a20b517c37f4b75871172b2769e37676fa\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"3646b584af5fb68e57a153991cdbf049cd6f8e471c36b28c7f3bb642ecc341d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-1.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"5490c5dbe52b0457b51a327426cad741005f8afc24c13cefefb9fe8694a558f7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-1.0.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"815e9ed05789f4cd00eb00cbae0e6339e7519c0c6d816bf3aa302af534acef5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/support-1.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-1.0.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"9f5b4ebc6a90b48d2a3c18ce7b74d89240275dcf23aa836b8509882b1ee28c56\"\n + \ }\n ],\n \"timeseriesinsights\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"a1cd9f9177ff31010638048d3737dc39fac144d9ca107fe4eafc4339386d71cd\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"3276b876cad87ef8b29e6af58294fc7ff20b9d2d0187ce84e2b15ba8917b00d9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"3caba62be85114e44cd61c8541df49c7ff67b76b8c26e53e198b00a98a907417\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.1.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"84009856e1a9e6e6b178425099c2e1eaa4753ba5e375426a504f92bd4b9a21aa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"79f257abed8ac699a395e1c61351cd2c68f3a1844d3369aca5b346b2b1c0aa10\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"6ec3fe5ff3d92c3c2c8ba581af679567bfc430dd38fa70945b43378cf9b81ff2\"\n + \ }\n ],\n \"virtual-network-manager\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"fd34cc2d8e2cbb80831e62cf4b64e0e4c6a295ac717b07ebc5a9f311f12cb95f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"4541fec0a7b0d16c394f295da92179b72ac8f4962b2f10676647ac8cdb2179d7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"7744f7fabb5b4b74a6d70734f125172bd660efe521a4e8f624fdd4a0be7a2bac\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"6dbaa712585a7fb16fa415a5e3597776a9b0191a70ae63e9dc81fdc732350fdc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.4.1-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.4.1\"\n },\n \"sha256Digest\": \"4eabccc76009b246dc9dde769a116427e59b1cb80290cffee4ed371e9baa6566\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"3014960cf39c2058da2a18fb5ce54110d90d02459bfda174c7d0036cff19f5de\"\n + \ }\n ],\n \"virtual-network-tap\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_network_tap-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_tap-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-network-tap\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-tap\",\n \"summary\": \"Manage virtual + network taps (VTAP).\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"7e3f634f8eb701cf6fef504159785bc90e6f5bd2482e459469dd9ab30601aa35\"\n + \ }\n ],\n \"virtual-wan\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"35d7b9f8b62167957708902b19a6c2f97ceaafa28abcba815b39a2d9040066f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"10bc530d54677c0f24363326f28b0476a3324198417117e3effa031c20d6c2cb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"45b52f87cd76a269d8e6151782a437692cea3725b4f64d9d4d64cc2c4b49288f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"db108cf3fb9f3a49aea87f35d658b0bdc9c2321122b9a1ec1f58f4fecb0ebe90\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"0b141457b8c3f57061f300dae18472ec9da96f4b4f9ddb9239a4a5dbda7c1ffd\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"21e1333af42c80c094099212db57b5e7171afee8690f0de211fdf359e3f1da16\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.4\"\n + \ },\n \"sha256Digest\": \"236668a188121738975f85148957ce843dd43c8644f76c915dde9d2f8233c9e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.5\"\n + \ },\n \"sha256Digest\": \"e16f67e75abfd1d462d16cc00cca97551c63c5d6f9d4bbc838b4f331b2c1072a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.6\"\n + \ },\n \"sha256Digest\": \"4c695172677a9397b94f335748ca1b10caa87d5dfbefe1975e73aae60bf8b69f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.7\"\n + \ },\n \"sha256Digest\": \"9358296298aa06595055b6d82ce3a4443b3a63dc4236f675e056769c5c633bc9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.8\"\n + \ },\n \"sha256Digest\": \"14568d2b5de27623558f6d4d26ce68a3b4af0a429cc82cbb06021942f7239a36\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.9\"\n + \ },\n \"sha256Digest\": \"ca3569805f44c420ed58719fb9e514d7fa28b84bec9fc1321702250cdd8fcbf0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.10\"\n + \ },\n \"sha256Digest\": \"eb0afdcc23910d9e7ec5a55c511f0e67c5d8c0229d84eaaa821b72ccb2468c23\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.11\"\n + \ },\n \"sha256Digest\": \"35899c30c1a7e7dd43b36895deac4eb0accbb88c98d2e8c5c41dd985f732ee1b\"\n + \ }\n ],\n \"vm-repair\": [\n {\n \"downloadUrl\": + \"https://azurecomputeaidrepair.blob.core.windows.net/prod/vm_repair-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.2.6\"\n },\n + \ \"sha256Digest\": \"3556adeb1053262aa1aa0203b53423252afbd89b3e455255c2a2964a3be9a78e\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.2.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.2.7\"\n },\n + \ \"sha256Digest\": \"4949871a99d5ef62ffdad72d35bfa75a483f1a714bf8d7ca84f134f86a5e9578\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.1\"\n },\n + \ \"sha256Digest\": \"4c893d48469b70772318c989ecac03e1ac494dc0c97652d1827a8ad55d8e8b51\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.2\"\n },\n + \ \"sha256Digest\": \"b7837a3129ff2614d27c2acbd254e97d83ac1540745225d2b156c897bb065125\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.3\"\n },\n + \ \"sha256Digest\": \"04ddc34a525af5b313f9dd1b5b446e5aa2a79d242451cf09f7670147c7aadd42\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.4\"\n },\n + \ \"sha256Digest\": \"b5964a8ed60193dc73e9109763af7cbb0162c029dbd81ed9ec5a7f20fa48ee7d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.5\"\n },\n + \ \"sha256Digest\": \"70112e8c4ce186f0c494e89680d751f8f4c6dc906c47cc44b8b5cdf0e19d2e50\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.6\"\n },\n + \ \"sha256Digest\": \"bd7d1259bb095ab238d8efca72c201570c5144816d7d4e98e73d1a82eb08a80a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.7\"\n },\n + \ \"sha256Digest\": \"021ae4b3b776b41e98fc91c35bc54e0ea7bcdfd32be3cfd23261e450535326bd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.8\"\n },\n + \ \"sha256Digest\": \"51499825455a4db3e4ede2a5abd31a28e8177f9bf66597c41dac0dc4851c41bb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.9\"\n },\n + \ \"sha256Digest\": \"d8a13d094c4900114a46778bb7c34f567401850193616d00dd06e02f415ceb81\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.0\"\n },\n + \ \"sha256Digest\": \"075c1df17bc63b1029cbcffee499143bef02ee1f6bd28ea1bf1f736352630532\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.1\"\n },\n + \ \"sha256Digest\": \"7dfc648e6dfa0392feb8491af3da54e229edd48bb75421cd554cd5be7e99e149\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.2\"\n },\n + \ \"sha256Digest\": \"cef2c111ea85fe22d51ee67ed4a88e46d9ac771ec04d5dc411460420d913cd4f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.3\"\n },\n + \ \"sha256Digest\": \"a9bf31ef4166e564a8fdcccb70edb217b59f0036a0849c5c57ec951f1693a08a\"\n + \ }\n ],\n \"vmware\": [\n {\n \"downloadUrl\": + \"https://github.com/virtustream/az-vmware-cli/releases/download/0.7.2/vmware-0.7.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-0.7.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.66\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"0.7.2\"\n },\n \"sha256Digest\": + \"b84b027fe8d836f8969893480cef63b05b85db1a59f6ef11063e52be530fd9ff\"\n },\n + \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vmware-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.66\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"1.0.0\"\n },\n \"sha256Digest\": + \"e1775b05e22e3afb70ad395bc3cff1cb7fdfc9a90836b61e13d4c54843577ddb\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-2.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-2.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"2.0.1\"\n },\n \"sha256Digest\": + \"9201be5570c050b7f048f25b70ee0a2229bf73ad048aea036b484166631bc8e5\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-3.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-3.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"3.0.0\"\n },\n \"sha256Digest\": + \"d68bcb114a2b46860eecf0debeb0d9c5db46c069399ef9e3f5292220a3cd37c2\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-3.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-3.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"3.1.0\"\n },\n \"sha256Digest\": + \"7b1ff134e840caa3b30a636fceb0e6a8022565e8a439245b8e1a111534e196f8\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-3.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-3.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"3.2.0\"\n },\n \"sha256Digest\": + \"4d557e5fbd5cc8cfc80a9f6085d5503007a0955160e264b816f9e6a6a7332580\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-4.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-4.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"4.0.1\"\n },\n \"sha256Digest\": + \"93008844fbc5b157d17470738899e9f8cd0d09be2970cd045da10b8f8dac360a\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-4.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-4.0.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"4.0.2\"\n },\n \"sha256Digest\": + \"ce2fe71b5095fea0d3762e7c698abf1bb0d7b51cb54a4e841d07493c24ccbbdb\"\n }\n + \ ],\n \"webapp\": [\n {\n \"downloadUrl\": + \"https://github.com/Nking92/azure-cli-extensions/raw/whl-files/dist/webapp-0.2.24-py2.py3-none-any.whl\",\n + \ \"filename\": \"webapp-0.2.24-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"sisirap@microsoft.com\",\n \"name\": + \"Sisira Panchagnula\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"webapp\",\n \"summary\": \"Additional commands for Azure + AppService.\",\n \"version\": \"0.2.24\"\n },\n + \ \"sha256Digest\": \"797abb3d8b41547ed3c2bcc8e01e30cbb5d487262cd2f285e755419bd1c03bed\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/webapp-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"webapp-0.3.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"sisirap@microsoft.com\",\n \"name\": + \"Sisira Panchagnula\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"webapp\",\n \"summary\": \"Additional commands for Azure + AppService.\",\n \"version\": \"0.3.1\"\n },\n + \ \"sha256Digest\": \"1cd5bb1a8ad02a5f7c8c72a01692637fed434b24ea359d21caf919ed5323941a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webapp-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"webapp-0.4.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"sisirap@microsoft.com\",\n \"name\": + \"Sisira Panchagnula\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"webapp\",\n \"summary\": \"Additional commands for Azure + AppService.\",\n \"version\": \"0.4.0\"\n },\n + \ \"sha256Digest\": \"908b0df07cef652176a0f2bf0fdcf58b5d16fb4903ee3c06f73f0bb3913a5c0f\"\n + \ }\n ],\n \"webpubsub\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"webpubsub\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Webpubsub Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"e36b3e5d0585b1082884150b829de871dbe906fd2b5356689127e1153829245f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"f29d5b7217b8f03fc05dde2cab282cbebec9d211dc8cd7c1ee9baa71b23ff6d5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"8eac173dde02b0703d0dd3ef193e796e83e85732c98302aa0f53418a128bddec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"5e98577476bc8aba299baa00e664ff10185546c8f766260b961ef1c428b66a34\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"802e829313a4993702d114a94eb8b119a376085d92b0a7860fd2c308e73112f6\"\n + \ }\n ]\n },\n \"formatVersion\": \"1\"\n}" headers: - cache-control: - - no-cache content-length: - - '30' + - '1780943' + content-md5: + - LpNc8SmIFhHlsh6bGbFVjw== content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:34: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: - - a65a836a-04a1-40e5-801a-decaf7374815 - 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 - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3b25f611-d277-453b-bba8-a72d3224fb48?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:35:09 GMT - expires: - - '-1' - pragma: - - no-cache + - Mon, 16 May 2022 06:20:08 GMT + etag: + - '0x8DA36D7D61C67E7' + last-modified: + - Mon, 16 May 2022 01:03:06 GMT server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 9a947f29-a1f8-463a-9f06-52fb5c62e1ce + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' status: code: 200 message: OK @@ -29102,49 +21072,36237 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - network vhub create Connection: - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python-requests/2.26.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3b25f611-d277-453b-bba8-a72d3224fb48?api-version=2020-05-01 + uri: https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.13.0-py2.py3-none-any.whl response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: !!binary | + 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 + 8gPcV3sluY8sq1kQsOY2Qd6dL7ApcvIdB6MMTvMy02c4FPWDx57KaEonntrYV1kdL+xZJ8sQLEOw + DKERkmUIr4Uh1EwWliBskCDUJPXrnm9ayMkreINKDF7bUzeGTNjX2tvHblpkIRt4PGMzD2C8BBtZ + HYUsG7FsxLIRy0YaIVk28lrYSM1kYdnIBtlIDVV4rqct1Munwd+ID0bxYkGjuRsKfk99gNja69PX + fuM5EDKzI5HBRilslMHWabIqlGhHoP3/4KXkCvXDlHrT+saBF+Sj+knvJG8tWc/fIH6VtGOUNmNT + T1LUqHyJLLtudDXm2fYIpT1CaY9Q2iOU9gjlOpDskoRdkrBLEnZJwi5JNEH6UyxJ1GbWdlFig4sS + tSsGa74JPl+I+C9QSwMEFAAAAAgAMDB4U1GD4tWdAAAAWgEAADQAAABhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL192ZXJzaW9uLnB5rY+xCsJAEET7fMWgjRYe2qVJIWIR + MApG7OWySU7ibdjbiP69R4J+gdPN8HaGncNy5XyTDVqv0mSO1d8Uy3bcv8U1rWJhlyicFQ5ca8yl + Z7mpY2+w7TqMUIBQIHlSZeLtwVnygSoMviKBtoQiv3xjg5LoZ/SlcH5keuE7WYUwK2qW2NRNVCSi + f0yr//00ue7PZX46IsNsk5q1Wc+SD1BLAwQUAAAACAAwMHhTrThJZrgAAADOAQAAMgAAAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvbW9kZWxzLnB5rc+xasNADAbgPU/x + Q5amkONsWpoMHUKmQj2luwl3snPFPhmdYpq3z+HQQqC0i7VJfJL4l3DsQ2xfz9qsN4sl1rNVPrbn + 4SKhPSke3ApVcMKJG81zGViOGjga7LoOE0oQSiQjeZN334OjmMjjHD0J9ESo3j6+xwYHop9GvxQh + TmYQ/iSnEGZFw5IvdTeVRe7729d5kzbCPcxY2mJb27K2henZU5cQ+pxT8XgvXv4Upa3t07/i+Tdx + BVBLAwQUAAAACAAwMHhTsQUvLggBAAA6AgAAOAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nk + a3MvdjIwMjBfMDVfMDEvYWlvL19faW5pdF9fLnB5rVAxbsMwDNz9igMyJBniuUuGIENRoOmQdisK + QZFpW60sBjSd1L+vLKNBl27RIpB3vDtyAceVj8120HrzUCywudtLYns+j+KbVrFyaxy8E+651tSX + M4tVz7HELgRkUg+hnuRCVZlmn72j2FOFIVYk0JZweHr7bZd4JboV+q3wMXPOwp/kFMKsqFkQZk7C + U9XNnjlaRWgoUoqRTE7jn3ir4xq7QflIvc7Ex5nIkkdbGxvq0dkRzg5Z27HIZHui1l58srWxwtWn + 1U6EwEnH1zmfm+T8tOrNvLzv2YtauENpIumV5ct0NtqGOopqXPDpg+/S9RUvM+Fww/cZLoyxIRiD + Ld6X/3CWH8UPUEsDBBQAAAAIADAweFNlKWlw/gMAAGUMAAA+AAAAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS9haW8vX2NvbmZpZ3VyYXRpb24ucHmtVk1v4zYQvetXDJyD + rMBWroWBFHDdRRNgkwbe7F6KQqClscxaIlWSSlYt2t/eIWV9WnaLYnUwLM7wvTfDmaFuIJYJF+l9 + afbL77wbWH6zh8A2sqgUTw8G5nEATzxWUsu9oXVVSMUMlyKEdZaBc9KgUKN6wySkvR95jEJjAqVI + UIE5IDw9vjbLIXxCbF/MVwNcOJ9Cyd8wNqCkNLCXipCy2os86D2vWb0bJy9BSFEgSSGiXdWTON8G + sC6N3KI2teNPtaNUVt3mwESKGnJWQcxKhx5LpSz1Dg/sjUsFTCTwzim8HUImCYfvncbYwnFNMApb + +vDbJn+vZA6mKuhsgeeUbQNrUXn1OvujVBiSXvsj9jwt68NoPDf9xbMtBS8w4wIb70JShjnqvmOe + 5ubkfbK2KrZPD8YUH2WakrYXa21khWH0hkr3hHz5sP30+POz53lxxrSGZzTvUh2fmGAp5ijMJuP2 + t693PngLVh7QM5vNBsu2NC6hhZ7b8iwN0nExA4yOsGCK5WhIHpS2Ko2EWCFzLpyCE9owESMwhaAZ + 1TCwbtXhMWMU35UG9Ylg5TAtTEKsnGUr2LT/QSD9TZxOVzNOmqOVQtgyo79rl+sajM4aB1h/90+5 + XdcR05WIw7X9fZVHFB1nX5UudzpWvLDJiniyglcS0V/scWl4P/D4QJ3Kfy8xq4A7w76qu7btKSd3 + ABKewz7+aGPOtc24AVl3zOfto8sEUn1UYIcE9TQ1Xpb1oz/TrI1qTr9OeYJ7iCIuuImiuVuxj8Zs + v2jfurgWADe2h3AFs6l8zTqEIXNvYyPBPre3x3emUt1ZbUtaSwDL76ngBK5aZ5oVnRKaFiOzfRTj + NHi+sKzED0pJNZ+9NFUKfrfZh7yk4SOkHU0OJpwFfZ6R+v9BNkK4zqjLAtX8v7Tywh1NELZH1mQw + 8AaH16tvuO+lbeg0DvN+HPglzEjHsqAJdg81O820Yu6f2f0F/OIfaLbp1d1d3sYVNn2Y34VUf6zM + jP9rl40TpEZzMs59nRyjXAp+REWYvtu/tBN1Keqk3f35lx/Wl9n8NCKDYKg+agY7jpPmeqCzXuiC + ZtPVGnVMNA5VRLEKE7lZX3V5SpGiObP7AVArN/dC+Jnsa2uu74Ke3AHNARl9B+hpjqFxRPBQG6/D + 03fD12oavG8aQb9Y03XgrL7opqGHxhH4qUNeFYtxcF1eTBHVXnSVb8KjJp26lS/RKDTqQqr6plE0 + boBurf06ekyTQ+bRQcrjNMe5w4hp4xweyP5vcSTcfrBdCmVgnY6mdrlOw0q6wWhOxG6kTZNN+vjD + IT2ac/bj0g7YyxzD+X1VyzCuH5C+YtTosjsFOZKxgNvpYbmALh3/AFBLAwQUAAAACAAwMHhT04CC + xdt9AADEWgoASgAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvYWlv + L19uZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50LnB53b3dclzHla1776dAuC8s95bYAjfxpzjecdS0 + rVZs2c2Q1O6Ic4MugkWqjiAAGz+k2R19nv1UoQogUCtn5pxzfFm1BN9YosA1v1WonCtzjJEr/2Hn + 5PzN7OzdH26u335x+Jt/2PkC+9/8Yi/PLz5ezt79dL3z2cnvd/4yO7k8vzp/ez3/88uL88vJ9ez8 + 7NnO16enO7c/dLVzOb2aXr6fvnk2/7vfzU6mZ1fTNzs3Z2+mlzvXP013/vLtj3d//Gznh+n0/l+u + /369Mzu7/ZmLy/P/d3pyvXN5fn698/b8cn6l0+VPzX9i/u+/LKv+5h9u8d5Md95Nz6ZzlHmh1x8f + IH72/e93vr65Pv9+enW9/MFvlj94frmge/nT5Ozd9Grnl8nHnZPJze3VT84vLxelX09/mryfnV/u + TM7e7HyYzW/v9XTn9Hx+ndnbW8aTxeVmV/PLXE7vyz9jP/zfvL08/2Vn8p83l9Nnv7z75frZnG5e + 9Jf553698/XVx7OTr7//y6vZxfR0djZ9eTqbnl0v/8ovV5eLW1795A/Ty9nkdPaf08vPd/64+O2s + /u3R9eef+dvZ6fzTWP2l/312/uHs1eoPP99Z/dMfp29nZ7PFp1/6u89+uTm9nk0uZie3LHeX+svi + T7++mC0J/zL7+2z1t58dn5yfvZ29u1l+je5+/q/T6w/nlz//ZXI2eTf9Zf5Xln/x5cOfvbvA+cV0 + +QdXx78sLty4xr/e//gS4+R0cnW1c/zDH//38r9/dv568c37/Ve/2Zn/78307c7x8eKGj48/u5qe + vv185x8nl+/mH8c//uPPHxb/tPrBxf9++9vf/vjTbP75Xe1Mdt5Ofp5/RW4vfn2+c3VzcQt1cjP/ + ci0/l9M51PXyrs/flj6hZ7+9v/K/r75+l9NfzucDazFK5r+FyenO++nl1eoKd5/88jfyxe0X5fVk + MfSWv4uHmPf/fDHn+83qMzA+sM98H+TnpVv4/MEHu/qg5tVXF9xZ/vmz39z++e0ndzmdvJmPxPOz + 68ns7Gp5S/MPaufrV9/e3er8o59/nj9NTy92Pp7fzH9B80/hw+z6p53J/CM6X47MrxefwPy2z2/e + XN1e/LPln/xwPTn5+fPVf/5m/kleni3u5+5PXv40/0w/35lenzz7/bPbv/fPHxffgMkc4/Od2fXO + vEFc3RY4nQ/1+eh6gLUzeT+ZnU5ez2Hn/3Jx83rerpaXXV7pz/NGMh8kb25OFh/Z57fsVz+d35y+ + 2bm6np38vLipyfzXcTn/l5vTybzrXMy+uL/22Zt/Wv79xSB7tvq8pnd/sHM1vV585X6ZXFzMHwLz + L8r1h+l08dd27gfHzrvL85uL2142m//wA/JPl3tYck4ymX8/5y379uKLm159Eo/uetUK78vcXmtZ + av7rPJs37zfTq5PL2evll/b6E/Tq1/7VbaGdk8vpm/lvYt6Wvtp5ef/PO2fT+T++WTwAlh132VTm + H9X8K3K2aNLzf3zwIX91/fFi+uha/9+yPS0Gw7NPf351PFm0zme3DfTH85+nZ59qPqS6unm9gL9Y + 3Nnx7M1Xt5/Swz98UOtq58NPs5Of5s+52f+5mZ5+3Jnd/oe3H5fPvPsn0vKr9vAiz4aX/faPi3v+ + 5er2C3H3rf6377+9/SSm8w//487iETt/Is4fW6enD+9+wHx1ffnonq5vv1vHq9/gV49+nfOP8/Yh + +Hb+q7v/ds1/kfN/fD+/nzef78zrz94u28cvs6urxddt/nt99M18UGjRf45vLue/iB9WuP/2/XcP + f2j1F+cU9+Xe3D9gPt+5bfGPnkMLxDezk+uHt3x/kbVn0aO/uPz5n6cf561n8V283rk4P50/Nd/N + u/v8a/5+8W354+ob/mEyrz+/s+vZL9P70TTvWbd/5er2l/Dd9//66Vt/tfrEvp9eX3784uu3i2Hz + 07yVzf/v9sObP3HPVsSL5nv7D3/805+//rfvfjyef/zHf/vT9z98+69/3fnDzu+ef/n8yy92d7/4 + cvd3tz92/Or7f/3zt9/96fjHr7+Z//ffPpgKnC3b6DOjPy+b/Hdf//inH368u8r8CoPH+Gf/df80 + eFjsq51Pf77431/Pz+afcIH680c/9ru3s8vph/l38nj+Wc1OPh5f3pxOj287wtXvvlrd35cvFve3 + 9hdvfw1vJyfT4+nZm4vz+b+u/sLu0RdfPi/8hYvnx1fvL86Obyebl48nEg/+6sHjv/rf//158X53 + /sfOb1d9ffnJ/f43wxnA/d+8nQrc/9unLvD5zs4/7Cy+lF/t/LbUXT49edfG6YO/eDdgF/97MFL/ + sPgNfKp5N7TW/nj15f/Do+/+s7uH2P2P3c1ePlX9+uzj8rZ3vvhfy1/2/Q/ffrmvPw3mR7+Guz9d + fHl/ur6+uPrqn/7pl/uv4rO7/vvL7x59dnfzvvnf8sz1Pnv4CQ8+ufup2HqJ5ePiD8ZE+bP7j/Du + Hz7fWVL94SFi8fo386FvTYw+vy3/+2fDb836b/TBPz/+bt/9Flf/f//fVt/J//t2wjZ/PP90/ubT + l/SX+Xpk/mhbdMfPTk7n86QHl38wS72cXt9cnu38189f7by/bWXzGdH7RROf/51ny2t89vBvzu9j + ccnj42ez6+kvV5/9fvF9mM07/9X15Oxk+tn7z2+/Qb//7wrb6rLrVH8otJPH8+m/zGdMt8+Ei3lT + uFpMrW7nd58eWV/95uEH94878zG/98WX+1/s7n2189W87Ff/8X7xR8df7h/v7q1u7/8qNNHhT/2v + /xhcef+LL+cNZffhlfePvzw6/nK3ceXHP1W88u7zwZV3n3uu/PCnCleet7//uXblg+Mv/2f7yo9/ + qnzl/eGV911X3m9d+XB45UPXlQ9bV17/DR64foMHrd/gwRe7Xw6uvPul58oPf6p85d3hlXddV96t + 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 + A7FrIHYNpIzLroGoz9PXQBoTd7sKsvXjpY1LFBv+bwb5+sf/AFBLAwQUAAAACAAwMHhTSsKwdzkB + AACfAgAAQAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf + MDVfMDEvX19pbml0X18ucHmtULFOwzAQ3fMVT+pAO5AZVWJAFUKVKENhQ8hynUtiSHzR+VLI3+M6 + pWJh4xbr7r17750XcFz50NyOWl/fFAtc/1slsQ0Pk/imVSzdCjvvhCPXmuYysFj1HErcdR0yKUIo + khypKtPuo3cUIlUYQ0UCbQm77cvPuMQz0aXRL4UPmTMIv5NTCLOiZkE3cxKeun72zNEqQkOBUoxk + cph+xVvuV7gblfcUdSY+zESWvNra0FBEbyc4O2ZtxyIn2wO19uiTrQ0VPn067UDoOOn4OudzJzl/ + OvViXv7vtxe1cI/SBNJPlg/T22Ab6imocZ1PD3yffl/xNBN2F3yT4cIY23XG4BavV39wrt6KQmVa + F0h19husuvZHOzcmVh/AAjoNtIZvAgvljQu6XBX05WhQbPPevQjL+syJsfgGUEsDBBQAAAAIADAw + eFPofbDlNgQAAAkNAABGAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8w + MS92MjAyMF8wNV8wMS9fY29uZmlndXJhdGlvbi5wea1WTW/jNhC9+1cMnIPswFGuhYEUcN1gE3ST + Bl7vAkVRCLQ0lllLpEpSyWqL9rd3SNr6suwWRXQwLM7wvZnHmaGuIJYJF+ldabY3342u4ObdHgJb + yqJSPN0ZmMRTeOKxklpuDa2rQipmuBQhLLIMnJMGhRrVKyYh7f3IYxQaEyhFggrMDuHpcX1cDuET + Yv1ivhrgwvkUSv6OsQElpYGtVJB5H7LTW+45XWgJQooCKQwi2VSt8CarKSxKI1eojXf84B2lclt3 + TKSoIWcVxKx02LFUytJucMdeOdEykcAbp9Q2CJkkHL518cUWjttUa/LwfWUfbZXMwVQFHSvwnIQ2 + sP7l5T5aPtwvf3p8/nDwYN9KhSEFbn/ElqelP5HjnmV78WRLwQvMuMCjdyFJaI667ZinuTl4H6xH + 78Xq6cGY4qNMU4ryxVqr0Ygk6gQ6HwE9V1BUxGTmkHDNNhnelYJET2481qwUqZJlUS9ot2tAhIUg + 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 + 4hzqVWts+q9OU5Xm5keBr85TOw1Vo5V6U3OHnUIaPNvD1j5fHUe34+h2HN2Oo9u/P7p16/z3HuYq + aW+VsEvw0L7pa0ex7Ie7SuhXZr3j9HicHo/To8/wOD0ep8fj9Ph/nh4PNO6/M0963Rj2O935u46c + fwFQSwMEFAAAAAgAMDB4U6yZvwSEBgAA5xMAAGsAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z + ZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19henVyZV9maXJld2Fs + bF9mcWRuX3RhZ3Nfb3BlcmF0aW9ucy5wea1YbW/bNhD+7l9BuB8sFwrjFimwGfCAIG26AE3aZdmA + wQgERjrbbGRRJakkbpD99h1fREmW4xZDBASWyHu/5+7IvCKpyHixnFV6cfDL4BU5eLEHhZ2IciP5 + cqVJlI7JOU+lUGKhcV2WQjLNRUHJcZ4TS6SIBAXyDjKKvJ94CoWCjFRFBpLoFZDzs6t6mZI/AcKH + ftCEF5amlOIrpJpIITRZCElyR4P7+LV2Oq1pGZAlFIBmoJKbTcu86HJMjistLkFpR/jREQppWVes + WIIia7YhKaus7FRIadTewIrdcVTLiozcc3TtBkguUA5fWPtSI44bV4Ny+rJhX0ixJnpTYlYJX2Oc + NTkuNjE5VpsiPdOo8yaHmJywPHdv73mqY+ciT2PyuTQxYnlMrjYl/M3kwEu5Z7JAoWrgVLDvlQSK + jgNlRnRSsmVbp1e3/sKWkHn1n7jSPW54SMHqVDXvSc6h0JiCFf7w1Cbtg5RCxuR3rUvMS4nU4Jfw + U1QyhQ8PKF1tLV4IfSoQQn55zcoEzGvPipKXkPMCahu++O9a2bMMVEtWKMvTdr1taG32twq6/q+X + a/1cEI4vz63Rpxa2PuiU0np/jUjKFWGKJO51MLgiszpp0ehqNB6c5Mp843Kd1Xmd9/l828N5y8i4 + 78Q1AsKBZa40hhJBdX3tfwaDNGdKkWPj1SmXcI9aTr9lxRVbqs8luFpX0wHBZzgc/oCOWEARERbo + wHL+IyqiVqLKM1IIU/JKMwQIFhHWFhaVMyLjphTzDSVnSAAMwbdpGFMJhp55kHkhqZGAUTZaWmIx + Ga6LGAGmpJnWLF25dYw8K8yK5DeVBm/jlN8x6ZMzxebGkUwLt+AMRO7KNDbbsdDq4CZZSlGV1InR + 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 + sjFAhohaZFl2kLBPEICi5HwqjesGs32HA3h95QFB69DDFO/xksmoIEazJozbdY5XXtaREIarGx/d + ldfN0Fx5fQskVF5X+3S/9XHYPju3nIqV19edju0afR+nZOV10Jdx8GoCiGoOjAMf2GAHV0JjHk23 + slpVnQZNOA1FgIvosMlcFefb0zqbMK7lIF0GLGYb9wcbFv4FjQtWDyOtOWCNCu6+dtO1SZ9v5hW3 + cvUHI+a3e2qkWkyJgBEp7I/c1RzvDPg1977fwz0l0+0P+PRE3PIVMbzu+4xPanTocz7LZRomahxo + uQDOTbNKL/GcpVcrrDl7222Sh5tmBtflAcF8G7g1ia8/sHq43KF+TvRNDpu6RKVLVLpEpby6RMVv + j6f3nbo8VEHaMOxypS5XapmDLlfqcqWmKbtcqcuVDpgr7dlev9HRS0uC9RdQSwMEFAAAAAgAMDB4 + U0PgWwV9BgAAzRMAAGoAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx + L3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19iZ3Bfc2VydmljZV9jb21tdW5pdGllc19vcGVy + YXRpb25zLnB5rVhtb9s2EP7uX0G4HywXCuMWKbAZ8IAsa7sAfUOaDRiMQKCls81GFjWScuIG2W/f + 8UWUZDleMURAYIm893vujswLkoqMF6tZpZcnPw1ekJNne1DYhSh3kq/WmkTpmHzkqRRKLDWuy1JI + prkoKDnPc2KJFJGgQG4ho8j7gadQKMhIVWQgiV4D+Xh5XS9T8hUgfOh7TXhhaUopvkGqiRRCk6WQ + JHc0uI9fG6fTmpYBWUEBaAYqWexa5kVXY3JeaXEFSjvC945QSMu6ZsUKFNmwHUlZZWWnQkqjdgFr + tuWolhUZuePo2gJILlAOX1r7UiOOG1eDcvq8YV9KsSF6V2JWCd9gnDU5L3YxOVe7Ir3UqHORQ0wu + WJ67t994qmPnIk9j8rk0MWJ5TK53JfzJ5MBLuWOyQKFq4FSw75UEio4DZUZ0UrJVW6dXt/nCVpB5 + 9R+40j1uuE/B6lQ170XOodCYgjX+8NQm7a2UQsbkd61LzEuJ1OCX8FNUMoW39yhd7S1+EvqdQAj5 + 5Q0rEzCvPStKXkLOC6ht+OK/a2VPMlAtWaEsT9v1tqG12X9X0PV/s9rop4JwfvXRGv3OwtYHnVJa + 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 + DyvIA/xhd7t/fcRgVQxo3RqJtLa7iFTX/rvsBrI0UpXiDWa9E5oVFymv0v8LsLcwuBC/Sa+VAkQg + XLiaisH29prKPLqSRQdXWXGVld2trKyyGzv0R9A1qZ5mweauKQJX0ulLK9X9XElnB0o6W4XClQa5 + v3DuckiutkRcbenZ15aET3zy4To6pDgqtnuKsSf2fgPwCEOvFYjtLYhmjbzxRUFAnSwBoYwCzKON + nRjZxeCi3YP9vi7GU7je+HvBcXTJjOiqL4Jqlv97AiiRkgoyOq+jKNC8xUc6Z9N7R1GNZJ0gald+ + s1ffO64eKi80dxDzw2ZDCCsKFaOEfQXnECWXEzHFpqNZVfrB657lH2vXzZSA8BIpD07qkXUxfV9h + uLq0gh+6h7XLwtW1HrSvrgeD+DXDB4T6Nc//A/qurptVC3zniu4qZbIUdqvrfgXevt7bKPRW10b/ + 8DleXQTbrEG9Szc8YRsfhALdim4za03JB0aS05AHaCm2kc9oXJo9naGTR7MVpLOAxWwB5HVu/hWN + S9a2mNbcR4sKgg79kXWC5ClaGZsgtDY7WKYNoxPUgtWuqFnPXg/WUuXt1u+lTHev4avpvq2Of9Zd + jA2V2fHa9okAMTlbLedrCteZ+k5V2kS9Zq6g0j7P2L6tpLUBAnY/GLaEu/8DUEsDBBQAAAAIADAw + eFNmbmiPzAoAAG5PAABnAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8w + MS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fZGRvc19jdXN0b21fcG9saWNpZXNfb3BlcmF0 + aW9ucy5wee1bbW/bOBL+nl9BuB9sL2TFLbLAnQEfEKTbXoG+IZsecDACgZZom1tZ1FFUUrfI/vab + ISWKekvTJk2b1gZaW9Rw3jiceYZSHpFQRDxZz3O1mvzj4BGZ3NkHmJ2IdCf5eqPIKByTVzyUIhMr + BeMyFZIqLhKfHMcx0UQZkSxj8oJFPsx9yUOWZCwieRIxSdSGkVcvzsphn/zJmL1QHxThiaZJpfiL + hYpIIRRZCUliQwP34WprZGrVIkbWLGGgBghZ7hz1RqdjcpwrccoyZQifG0Ih9dQNTdYsI1u6IyHN + Ne9QSIlil2xDLziIpUlELjmYtmQkFsCHr7R+IbLjaKoV7t+t21dSbInapbCqhG/Bz4ocJzuPnNA4 + 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 + 0AvItzl4eO98QfUutiNODPYt9+BPqudz1TOrkuMbTEwfQB+zZU8DQDiYDmRR0MXAaqWYcJigi/Aq + Xh6keyKFAv0Tuw/wocoblUhuksPbdIx6s0BHzSMxT6chObU9Tv94yuiu84icCZEL+AuhRg9a9uyk + g9Uu3gODEJSHR4XP0On1DBLFuUsUg2FkTkAU1fkEQ6n+Go4nfFy66Cpoy7TVTJeXsB/gbS1Bvmb9 + wLQ28JH7xAp7ciFsPa/w1lqzQxOmW5BE0kTHmD2CakqNfb1ua6DRnqaeycZiMBuucFAv+qhbmDGL + xWITs4zt231wGt3RrGTdBIqdT09/HSzYeTSXBnXTIuUNi20M1pvGVUQH1YAuwU4xYjhds2ojj5a6 + jn/3dAdn6UfKddtNYn/JIMs8kNVsDu7G6H71mmZ4t1B18V1deMQ9YtEOeiL/1atkHgwaRF2q2NxZ + 2ZGbrF8sFtd9M/l7laBxZjWEKPTo/XZY9ygr/9ZPcKbP618ABaP4bM5ctS9SOoZwLtNTUQ3lINrN + a9BCUnlJ2Io9D2JFaVV1TCKmsC/JbN4sIGp+365Qx3mrVMN+r3Qf54UUdxxbpbm/xYw+2BI5Hyq8 + gGWsHh/n6cDtzOzYa0AmvUj5FiOrY66GxNny82bbwZ592h1hzaijCpbwDYeUWM2yvbkP6f7vjq3V + fc64MbocDF4KdBl4wLrfYWxu+kr4yEn4Sybc/8Cx9v/DbAU0NsM12nhIg589un3eyPbNRrXvPaLN + BgrPKfLjyWIansgkI8S/w1x4HHKgL54DB71zYAB83BzzLQa+U1c+j7zu+UpXPU86zX3dGeAx/f+X + 9/5fu+9/8p7/y+bd4Sm3qa/e0OrGBWwMekdb/4NKTZHqzRlNCLPXrCj/bWPD/H4kpx8HBop/A1BL + AwQUAAAACAAwMHhTB0+/5DEMAABxVgAAdwAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2ly + Y3VpdF9hdXRob3JpemF0aW9uc19vcGVyYXRpb25zLnB57Rxrb9s48nt+BZF+sL2QFXfRBe4M6IAg + 2/YK9IVc94CDEQi0TDvayJKOopK4Rfa37wxJUaQeTtI6faQm0MaihvPicB4k7SckyhZxugpKsRz/ + 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 + JYenkPi+YBBSMKFPExbyFYeo2T7t2LfY07dwGz2WzFyy+xsX37yEL2rB9g32PrO0+9LOhSnbpgfX + ba1l2/EawJ2vAXytA3xwgsej+mNGS45H9W2Mf7uj+q9xhN5xyIx5zaGHzPf8NPm+HyTf55NZO3I8 + hHIBy3X2A13lbJYObtf1jkkVDh8Tp/w55Oajqw7HJOqYRJFjEtXG+L1Moox1P5Q8Cm/lPcH/PL3v + GdXdUx8MfFbK0+XXH0KKY5rCuer/ePlN7eaBzlicduhvmvPabS8l4P14l8sl/13uch1vNR1vNX3d + W01o8t/gDpNb+/xMV5HclR2vG3UW8eXE+3bJ6Ke7A/R5F3VqWRw+x0rbIv4TVtq2P/i2F3AiER7v + 3JTP8c7NF925MRHoQdWVEU+/x1WbO1+meQl8uRdqcKTzf4nyMAvGv/liC+7I973cghTrxcAPdcFF + q+3xrCZ/DjirQf9zPKD5nLTxeIRyPEI53kM53kPpuIeCkehHuIviOPh7l1G3JNB/AVBLAwQUAAAA + CAAwMHhTK+7FHB0MAABpVwAAegAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY3Jvc3NfY29u + bmVjdGlvbl9wZWVyaW5nc19vcGVyYXRpb25zLnB57Vzrb9s4Ev+ev4JwP9hZyEpadIE7Az4gyLa9 + An0Eue4BByMQaJl2tJFFHUUlcYPs374zJCWRejjOs03WBtpYFDkzHM7jNySTVyTksyhZjHM5H/5j + 5xUZPtgHiB3ydCWixakkg3CXfI5CwTM+l9AuUi6ojHjik4M4JqpTRgTLmDhnMx/GfopClmRsRvJk + xgSRp4x8/vitaPbJfxgrH+SlJFGi+qSC/8FCSQTnksy5ILHuA+/haal5KtFmjCxYwkAMYDJdWeIN + jnfJQS75Mcuk7vhBd+RCDT2lyYJlZElXJKS5oh1yIZDtlJ3S8wjY0mRGLiKY2pSRmAOdaK7kC5Fc + hFMtmfsPq/a54EsiVymsKomWoGdJDpKVRw6yVRJ+lMBzGjOPHNI41t9+i0Lp6SlGoUe+pqgjGnvk + 2ypl/6XCI78n0LJjiF1QkQDtbEdzot9zwXyYP/MpcghSurBZG67LI7pgMyPFpyiTjdHsMmSKdVaM + PYwjlkhYiVP4EYVq7d4JwUGif0uZwvKk0JuZJnjkuQjZu0ugntUav3D5noMlmeYlTQOGXxtSpFHK + 4ihhhQxH5rlg1jnAl4ImmRpjT90WtBD7/zlrmX/K47iuuE/HX4+gmQmjuC/8SPcyz+bpM5OnfGZT + XC6WskutB8eflRreK39oH2WEMUtKxTJoEw8oGQmMMfi+X3RYgqHHGaEZCfTXnZ1vZFzY1KD/rb+7 + cxhn+AzNhdFNCrOcTOqan1jK85rKPQF71bY8ySTqK1mdnJgfOzthTLOMvLtMIcRkxzyX7BCcPTvk + SQJuC6yPGFg/WPXXlOnAlI12CHx6vd6tRhGlMcLLBn9H0fkfz0l2yvN4RhKO0SqTFIwa/B/CAsQD + LeAswigSr3zyETowCg6zqgaGgmF/ahzDEAmRAqwjcrHIwnLrAIgEMBpRKWl4qtthVWiCLSKawqyM + jKPonAqzcCOIyxF0k1w3aAFhdI4xWQVbkLqcJlkInqe+JiNxTQsyf1qmlTB5wcWZf/5m/81+sP9r + sP/aN8ahBqZU0CVwwtmNilniHDAtQByHqKmWP/Od/jyZRwvor37mRiA+L0dpgs4YeBXROPrOBEwU + Ok9V0tAzrd45Q2Zs3SD7rV9Yjlar8YRx5QjYOmNzEgRREskgGGQsnntGTs9MyLME8Rz6u2T4L/KF + J0ybKH6QgB9oAsBJf6m9LQlAh4pYrZPFB7rZXOu8lJDIS32pJhVD+B04nb3ySZhwHChzCRK6ZCOC + 7lr2wBycIXHjYW19fvnlDJLQQhuNUoaT2yY9o2j/Zs/FTNQ7qfQIi/aBARKBKERS49xo7ZRkKQuj + eQTGv4aqcSTLalpn/A2AAH5DI0VQUHSyvajypC6l1Vl1qK7ObK34Lufuxag6nrEV+DQEJxO4wfYw + eJAwz6QGIsBZkHmeKBIqVpXIKMWYMlNi6dCHk9V5tmQgmMxFojwukhqFgY2dsSr8wcRYBDTEBgEe + FxzlMWrPY4nDQeZBwXnXYo3SlyGsgXF8F9xMNgt1G1rliSUGjSDyunJUad1vYCHbmivHUiFIOw6k + 93TQh5a+p+LILiGviJ6rScm396GSkcJVASAsYHdVtuLn7f7r0TpQ93b/7agLsb3d/+eoDeKVDK6b + Avh5OoNMOLAnXb6EqV9d71aLTdMoOGciQxsdkx4u23D/1+H+60qFNESd41uaprGRfe+PjCe9yu8x + BILGwCVZYNLVIGGXMgAsczZW2h45WsFaBCxZ5GD9p5DyQQbnvW4LlI8zcABcxqvrasVcyLN+6KR/ + oObQP1E5wMkKvu496Olp9jwzX4/0gTqgNYc0lDOIY8qZuXOqz+v340+N97mICyEwZfggIYXlopM+ + vAEBywlGiwQsvjE+pfI00DUdANRFvgR7yho2V3z6RRT9gEH0C+ijP2poABgPei3hFnTR0looxmtn + GLrOso5la5wFpq3tN7DN8mkWikjFho+zLo52DvftIUE063lk3etu/tfr1tiAE9+sGEoB/zxI5q0L + ubvWniqLbnQDjxOrO3lL2+hJH+LC0MSFVq9RI8BpqvCBnlM9tbsPfkx0qCtowaTWTF0Wr+nPrpYg + XLOmH+o1KB31gRX24JPQ6b6gW2lN11UYXWEmgoYywGAxKMrvoEzfrgYsBDsrhbQaB/3NEhykiyYr + hxMGsYDPAxazpQudZ/45jXNWj58IlBr6rFFBYGI3terKYVUuNKIcTDfWnkuNVItuYd0CpLA+ZVWL + 3pnpavbe0B2MpRcUSlHHbIJyN0XkyUAUxT6YH6PL8Xsa4yZKAf/ruigJN5j5pwCRyqdGIiu7AZ6U + OQbcGTNVOpm82d8/aS5TuYE0sMaM2wh5JfnytVdBlHH5rRnwFOxr7nQNOunpGDp293dqC2FMpqGi + qpfp4WLbgUOksBLP8cWyi56Kk9QxqKi8PiL9PTuhZHtXbsa63nMyNbxvZO7rvVTw8wiR0l65a+t/ + 0Yh7j3X7MxBrycpAzlR6/esG6thx/QNCRwxBS9Xt4HGPW+casTYrgd39gFuifWzeInjz6QKuNphx + zWBj7LoZZn0yrPrEGLVvDHodG9vmgbr92EH0BwDe61abuC3AbTW4FmR7N4D2FEh2Xel6x7L1kUrW + Dpiq3fgOSPVx8cxdsMwGOMYjEBPxv7c1RPPYaObBkUwbeja4BRFzQ2meQcKQLzSRrgD+PHDK3pUV + Sa9vRi1TtogSM+WfCLK4R5wahDhb8b8piTO1WVvtvxseRB9037Sj/bfbkNe83YWoszRv6+Qbq/eE + 2/wFA+CKR0oySnKFzgLJz1iiWFmtRLXi6SRQklRIQkmqzEibBSUZPWdIjeLxZoOLOc0GzYicqSPG + 6izbIyowq9aEF109nF5V4xTNxSkgdk7B0fEQu3wHcwH2i1VtcbSuCwmmnMdI+8/mXQC/5ZC/MZUo + kQUxCGeQps5pDOmVzSkebmBOQlFkBKs/hdDDUG0XelqZEhs80Dqv1ju7ANSlWA0P5kDP5EG8tYKG + Wh6lKins0xnrPMZ1bW0NumtWnNWgu9/nJMbRUS2K1M9ONj46ccJPFdXMeroVlWmFMgSNyKqq1HWZ + Ca5r2zWNSrh7FWmx4BjR6colUQPcNbvou9jZQb31vrVyXgkMHqj9sS53w2Gb0yiveIBXVNPATF5R + BRNz61j8CHoRGANxQVZXLV4ObMbpcVtt1BjYGmbH7ZVO81zCCqJjp35p8omzcUyX0xkll97K+z6C + H41OTt6s1qR87KqNlfpbe6HCGeoc1qXs6Bxg4QZPzEFugK142SuA3JTm8sbd1q5dzVthM6XEbaH8 + Mgpl29HLK2SZipijMm0tVWCE5a3dKhuUQc5T8Y7rsD2+6s8jiCRDld2H5xFFuB5zvZ3Tv/bazWfc + 2uqRlgIMLNQRVwGCLnnLS3kDm0Brf9PQHv1ayxk3u/kIboJmtG3GPpf12H1siUQNkuNKsLbAheXt + 2K51m52qYwlNFqHjlIZn447oUgtwjipvVs3AEcZKGl5XNPNqStIs7VrphZeFeEj381SDt7hx0mte + 2OooEQ2+3FaIL6BCLEqNm+3Du2Ndcf+bW/XC46e9tLW9sFV02uC4BwLl9ojn74ZcW+xge8Tz/I54 + 7nYT6Vme7zz3U52HuKvVfk/rHgdHtlC1TYqW61fqnZ0uXmblEOhfRQpgUXXK/uEXYopXlTOPblVR + PHxlssVu98Ju9ialq8ee/QoSQhPcWYwe6sJPl8FvceEWF25x4WPhwkPt6UOMkGvRYS0k2I+l7Gv4 + PAT+nPLZKigY63C12bztgS0C4OtBM72BABugod114k2KkyA1cbvDTaAaz4I2BdXoBi3MnznWxmtU + r5874O6a53gMs9t/+F+kuBmcd4vz+keI8/i1ws3A4mVWEPqYpT75F1k+1C6o3AroOwcdh0pbGW5u + a3VleOvJHHWYv3+z/TX1pzzzcKnaxnNUgZ8sx9IDTze4/hNA+s94lKtYBZg1cy7Xubyp1SWmLcUj + nGtsLwJuLwI+7EXAm63vEa4JPphnvMy7hnfbjdreSdxgY7Qk8bPfTmwmlHFLGdoU76VdanyCUgM/ + d7s72Sw5WsY6Vcd2R1Kzezk7knbgetw7liqzDVUVNyyRwvbCpfKm7YXL+1y4rOfNl7b98RdQSwME + FAAAAAgAMDB4U55ECo6bDgAA6KgAAHIAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19leHByZXNzX3JvdXRlX2Nyb3Nz + X2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHntHWtv4zbye34F4X6wUyhKWmyBOwM+IMi1vQX2EaTp + AYcgEGiZdtTIko6SknUX6W/vDElJpCTLjuNknZgGFrEocl4czoNDer8jfjwJotkoz6ZH/zj4jhxt + 7QPAzuJkwYPZTUYG/iH5GPg8TuNpBu08iTnNgjhyyWkYEtEpJZyljN+xiQtjPwQ+i1I2IXk0YZxk + N4x8fH9ZNLvkN8bKh+xLRoJI9El4/AfzM8LjOCPTmJNQ9oH38DSXOAVpE0ZmLGJABiAZLzTyBheH + 5DTP4guWZrLjr7JjzMXQGxrNWErmdEF8mgvYfsw5oh2zG3oXAFoaTch9AKyNGQljgBNMBX0+gguQ + 1RK5u12xT3k8J9kigVklwRzknJHTaOGQ03QR+e8zwDkOmUPOaBjKb/8O/MyRLAa+Qz4nKCMaOuRy + kbD/Uu6Q3yNoOVDA7imPAHZ6IDHRP3POXOCfuRQxeAmd6agV1vk5nbGJouJDkGaN0eyLzwTqtBh7 + FgYsymAmbuBP4Iu5+5nzGCj6T5YlMD0J9GaqCR7jnPvs5y8APa01foqzX2LQJNU8p4nH8GuDiiRI + WBhErKDhXD0XyJYOcDNOo1SM0VnXCS3I/n/OWvhP4jCsC+7DxedzaGZcCe5TfC57qWf19JFlN/FE + hzifzbNlYj29+CjE8ItYD+2jFDFqSimfe23kASRFgVIG13WLDnNQ9DAlNCWe/HpwcElGhU4N+pf9 + w4OzMMVnaC6U7qpQy6uruuSvNOE5TeFeg75KXb5KM5RXtLi+Vn8ODvyQpin5+UsCJia9iPOMncFi + T8/iKIJli9L5nDBpkdLhAYFPr9dbrzsRMiJx2eAeCAD/i3OS3sR5OCFRjPYpzSioMax4MARgASRJ + kwDtRrhwyXvowCgskUU10OcM+1O1FBQQHyHAzCEWDSxMsDR5CADtD80y6t/IdpgHGmELD8bAjqJx + GNxRrqZqCJY4gG5ZLBskgTA6RysszCtQXbJJZjzOE1eCyXAWCzB/acoUsew+5rfu3Y8nP554Jz95 + Jz+4Sh3EwIRyOgdMyN2w4BJ5QEcAlhvspJjw1DX6x9E0mEF/8TdXBMXTcpQEaIyBVwENgz8ZB0ah + 81i4Cclp9c4YMmFdg/S3bqEyUqxK90eV6mPrhE2J5wVRkHneIGXh1FF0OoohRyPEMeAfkqN/kU9x + xKRu4gcBuJ4EAJjkl9rbEgB0qIDVOml4oJuOtY5LEIm4xJeKqRAM7sDo7JRP339/Cw5jJqdbsGH4 + oaueEpHbsdjQXcAyz8Osd10JAKR9wUCd2R3oKFgN4V67lizqMCVpPk59HiQyECihDW/ZAjQVlpwy + QCBRXBLEz9NMOlRGQC+neSSgiRVYevgEV8pEUCAXNIYy0l+UCDjLch4JPQoyGU2A5G5ZtahBgVkA + MHgXG5UwkBzEyNXTFEkeFIgPNcxIfLkuG67aNX301Xrrd70Ju9aooAFYE5OMyjm5DY+uT3T53RfL + SqoUOKlk0IeWviPWxiEh3xHJqnIsj9auEo8IDjwIEwDb17IVP+9Ofhh2RSbvTt4Nl4Ud707+OWyL + U0oED00C3DyZgHEf6DyXL4Hzrw+H1VTTJPDuGE9RQUekh5N2dPLT0ckPlQSpjyLHtzRJQkX78R9p + HPWq1YCrGgQGZpB5ygIPIvYl88Ah346EsIeGVDCgBjXmOaj+DXgxoMF4L9s8YVcZaD/O4teHasJM + v9099Kp/KnjoXwuzZhg6V/Ye9CSbPUfx65A+QIeQwwANMTm65pIzk6c6X79ffGi8z3lYEIFW0AUK + KUwXverDGyCwZDCYRaDwjfEJzW48mZhAlDXL56BPaUPnik9fN17vJ/1hg33AOujp5trVh3jBpOeQ + rteFnJwG/ocu3pUfchUnSAX8c8D6tzJ42CnnaqYb3UAT+WIjLWobfdWH9XKk1kurNokRoEzVskKN + qp7a1Qo/atXUBTRjmZRMnRanqeemlMCKsaZ+yjkoFXjLAts6E9IHFnArqckQGq0OcMKpn3m4iAZF + buWVTs2UgBasTEoitcZBfy27D1a0iclAhGvbi6ceC9ncDJIm7h0Nc1Y3Kxg8NMRZg4LeWm9qFZWB + qpxndP1ohbV8ugaqRbQwbR5C6Lbk1ZwvdQA1dW/IDsbSewpJh6E1Xpkp8zwa8CKRA+1jdD76hYaY + IBfhYl0WJeAGMvcGAofyqWHfy24QY2V56on9F5mPkasfT06um9NUbg4MtDGjNkBOCb587VSee1R+ + a9o7EQw1dzEGS+FJEzoyc/faRCiVaYio6qV6mAHfwABSaIljLMWyi2TF8HVoU4S7G5L+se5P0uOv + psN6OE54fBdgdHBcbre5n2SMecw6Yvf+Q8OVGumHN14guyKw8kRmuiwhMXt5EdipISrhDqcsBclF + yl3F1DJPbWXpEkDjN8wLVJZgAClhiMxmmVRsfmTzI5sf2fxoS/lR00w/d8ZUYPsVkX0CCS1Lmlos + YM9ps4vLUySB0KZoNkVrmQObotkUzaZoNkV70RStw90+JmkzfCi8b/jU7ed1xpLYPJVDUlAPCnzr + pXvrRMU9I6v7lUEMMgHRBljyHkN/kXmkCfODaQCWrwPSVvI5MkgYGKFoRsLYL8uh4sBJwP08yA4f + n/GpWmu7COvkdDBIBkVZFnJI1b/S52X0LZ+6b5CTdnDnbJhmPiF93P2c0WaKRadlCZIWmYOFWzsL + Wi/7ebGsp++b896FqnVBA7LW9iXovkFy9dA2ZY9Oplr1oSWL2iwZeImsqWsHY8Pdi2faudhqSvS8 + kfMmUfPjI+bnjpa3Hik/KWlsTxV18TUyPxVzo99uDDUOYk2El2gE63oP8U436TsSaR9/bbHVD6vj + b0+eQfRg2qT/FCfYgNnnjcqrtThcLx7fYkBvA6LNAiKY0QyI9jJ5plcD29NfgeluRkwaoi2FVUsV + 1wZbNtgSn30Pts7kojxCK9YZctVWr/5Y0t6BZxtB3TieLLwCsbQs6/GtD2whAF8P9FiwM7Q47KLn + qq+eBad6h1WhaZKvH5qi3rcgtxGrjVifErGu9pavPI4ds1kQNbh8RUGseSFszajT2KX+XbD8wjvT + 327feZMdZYlbn7fzys+mOQakuGccC9xShYjSVsKRBlLTzurCVJ0cHck294SffVO8QACCE6FAEOWC + QS+Lb1kkUGmtRLSiyABSRnlGKEmEChN585Ck9I4hNIrX0hpY1L1DmHmeM3E1rLp16BDhp0RrFBdd + xY58VQ4rmovbW9gZ5iTF64blO+AF0M8WNU2QE1VQMI7jEGH/1by16bZcx2ywEkAEovqDdYWZv6Mh + xC1sSrFwgC4aSckC0O4xKAFDsd1LtlJBNqx+7Z6hPJ5D8ETh4uh0CvBUtID3i1FRyitwggr9fJ12 + os40K1IbZNd0jdN2TzljZ4iuMmxPXwuNQ3Vr10cMc1mZcaUk5p6AagXnjZqp7QuI29JXqCxtt3Qr + 4p53myHkMQQgIV2YOMwUr66NfTMFNJK3et9avVlwFGNWINZ7jbGGmWjyWV4BhrVYsYHBTwUVFNu8 + BYkfTu89pX+1SHflzlUJoumURm15eWNgq08ZtWfZjcGVBxhp8X0TR5iOQjofTyj54iycP4fwp9HJ + iBeqmSkfl+3xiElo7aVneWVHLeCVp1XCGFQCMgj8SQAPNBJTmWc9E7QiWC50pu1wz2OD5paxRtxs + N4okum+yUaRbiPK3CVJhi4ell50LkwszUfu5gkFpHR1hKGPpEEZf+9MATNCRCEaO7gKKyY7wHUci + kzgqvW//wWmf9lFrq0NacmnQQIN2EcwsI7786YeBDqC1v2pot6GteaTpgl0MzLymzW7aTRP1yHxs + sWQNkKOKsDbDhzsVI33botmpWpESLIa9Y+rfjpZYp5qBNES5WjQDgxjN9TjLrKFTE5JE2Z6NvpVc + W7nbjM7S502wG31aM+5LoOOzCP63WSUqE2rxyxotSSCp6CIoiteQTtcJ3zyH7pyaJUn18oS6WpkN + oa4gcIM0u9KXF8yq7VEzW1l9JZVVzbzbWuoOh8gtU2drqbaW+ry11A4HDJRUrvXZaqk0829sNVW3 + Praa+tLV1DYP+cpzOk9cKKI8Aa4g/n2hU4DyUkvbqwnDKyUeuq2VF3rKreX2gFLeQElPeXKJrLX/ + dsMjQ9fNUe5DPLu1M37tSmmj0vWiUrW8utDoKxCg649LgMqFeQ6SXQZTW7o9R1/INnjez+D5GW99 + JHG6N9c+HAK29o3FfuheV8pgNALOT55UZFzqkHchnFzl5nY6tDxWPgNea/7m4ZgqUUN75TLWPshn + SuRVRKFrHeBbKxYtbpyLHfucczBF4YLQCZjxLMCd5tOLcyIEA3JLYz8Q/8fBfZDdiCErahX4m2MN + CX7T3x7bgROBhgrUUaq3jRN+db2pQzW0B4HitwKofFmHWVe4F6xQ2HN/+3zub6lh2pEjgEvp26fT + gB3eo0RkDwau3MoqAXybY4Ga2xgZCXejq+YNRnoe3SRoz88Qbhre48ceJ7S7UruyK6Wbv+c99Vj8 + jpQ96CiWpD3o+JSDjqbD3c99CykEkXOnKvBI8/mc8sVbqqXVRCsaUyGv3ySzL1FdexQRtt6mPmvX + 27p02JbebJBjS2+29GZLb7b0ttHxrU5vvTvFuLV84KuMbwVnMsJV8t+8QNcmpVcR5W7wYxtrx7p6 + 9U6W4GSpTsln05JdKcASkS3Z2ZKdLdntb8nuEfZpR4p4j6B4n8p6j3I0ttBXK/Stt+VWwrI1vzdS + 89teXoEfWwW0G2S7skFmq4C2Cvhaq4Bt3njPN0xaBPOGKoLq6I3mfl/wgt0SrLbmpz6b1fxsrc+G + MrbWZ2t9ttZXfGyt71HncFvd8o4W995aUW871bxXEZk+5sbdyvh05aU7KZ6N791Viq4X82wRzxbx + bBFvj4t4XeZpR6p2XSTuU5mu25PYulxXXc7W4+TnDdfjnhD748cW4Oyu1a7sWtkCnC3AvYUC3N5s + avwNUEsDBBQAAAAIADAweFN6VxELQwsAAIBXAABpAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0 + ZV9nYXRld2F5c19vcGVyYXRpb25zLnB57Vxbb9s6En7PryDcB9sHsuIWPcCuAS8Q5LTdAr0hmy6w + MAKBlmmbp7KkpaikbpHz23eGpCjq5qTZJK1bG2htUeTcODP8SE77hITJgseraS6Xo78dPSGje/sA + sdMk3Qq+WksyCIfkLQ9FkiVLCe0iTQSVPIl9chJFRHXKiGAZE5ds4cPYNzxkccYWJI8XTBC5ZuTt + 6/Oi2Sf/Ysw+yM+S8Fj1SUXyJwslEUkiyTIRJNJ94D08bTRPJdqCkRWLGYgBTOZbR7zB2ZCc5DI5 + Y5nUHV/pjolQQ9c0XrGMbOiWhDRXtMNECGQ7Z2t6yYEtjRfkioNqc0aiBOjwpZIvRHIcVbXM/fs1 + +1IkGyK3Kcwq4RuwsyQn8dYjpzSK6DxiHvmDh9LTOvHQI+9TNAqNPHK+Tdm/qfDIxxhajszoKypi + IJYdadL0Sy6YDwozn30OmRqcFZxOI85iCcZbwxcPlblfCJEAzX9KmYJFU+jNTBM8JrkI2YvPPJNZ + rfFdIl8mMPmmeUPTgOHPhhQpT1nEY1bI8ME8F8w6B/hS0DhTYwpDZds4dAUtxP5vDr7QJJREkWtm + HP3m7P0HaGYgsnp+l3zQvcyzeXrL5DpZuBQ3q43sMuvJ2VtlhpfKhdtHGWF8ilwCKjZBm3hAyUhg + ptP3/aLDBnwzygjNSKB/Hh2dk2nhFYP+eX94dBpl+AzNhdvMCseazeqWnznG85rGvQCP0944yyTa + K95eXJivo6MwollGXnxOIStkZ0ku2SuIliu6zd6nTCePbHJE4NPr9XZ3I8omJLEN/pEa+J8kJ9k6 + yaMFiRNMIZmk4LYwHmIVglSLsOAY2tHWJ6+hA6MLj2zLgaFg2J8a1zdEQqQAM4VcHLIwoTorIQFM + EVRKGq51O9idxtgi+BzUMDJO+CUVZmomkCw5dJOJbtACwugcE6XKgCC1VZOsRJKnviYjcdYKMn85 + zhMzeZWIT/7ls/GzcTD+PRg/9c30q4EpFXQDnFC7SaEl6oC5GpIrpDI1wZlf6Z/ES76C/uo7NwIl + SztKE6yMgVecRvwLE6AodJ6rTK41Ld9VhizYrkHuW79wFW1W4+vT0tWxdcGWJAh4zGUQDDIWLT0j + p2cU8hxBvAr9IRn9g7xLYqZ9Ej9IwA80AeCkf9TeWgLQoSRW6+TwgW4u1zovJSTyUj+0Utr5UbUI + 0mww3wZZPs9CwVUADyokPPv022+fIPGvtBMo5XrGVH5LsL0Byr1SczAztlTDl6xMYJolnZIVv2Qx + caUxTq9m+BPbgmNChJn8AgbECCBhnkm9xDECbrjM41A5FwacXXNTDIyFWnJ1/CK40MuBZSCYzEU8 + acsxKL2H1JEAvMwjic4LEgwKOkOHEMpy26jqMp9DjnIIakuvtib4jYXUNbv9HSrv1nMIa0M66ENL + 31MuOiTkCdEym3w+u3FyLyxltQoHsB4D/a+2FT/Px08nuyDA8/HzSdf6/nz890kbILAMrpsC+Hm6 + ABEHrpb2Jej69XpYzhJNeXDJRIauMiU9nJfR+PfR+GlpMxqikfEtTdPIyH78Z5bEvdIvETtCRhc5 + +NTHsze2PReRimGIw7Y48zdMUpCWzvrQs39RTgFfxTDDlk5K5TrQWBVW8VW+ATNmDVP3XdqvF/1J + PZ/4wGXQc9OC7w4J+KLnkV2vPeAhRX/otcyAo6vJb76RGLnCHw/yR6siw3ZDqmzOJEyPfQ2LitgG + 5Qs0wXVptSps6Bw168O8j8y8g9WnDTupEYOe4x5gGOepsEO74GvAA67U+vmbxW4Mm/VPlDO2iqx7 + g8yqC4qrfjQlNUtzfa5WTOpJqlvLawpSBlABm4MiAwJZekUBuVSIBxZeizweiAL9gWSMbqYvaYSo + ulhdho6olmiDkb+GlGefSvVgT2W7AMaSeRao/ZUGc2T2bDy+mFTCxu4iBk7/aRsRz5K2r70y80zt + r2GFvkrdza3OoJOWjo9pFeA7M+gs9gs7jU7joN+RsCH9New4rJgOl9Oq8Go9VItcY2gF7CxUanXd + TA10e6h3O/MgBoZKhRPSP3Z7ZMdfq8nt+hh29Zcc4+zY7tL9d3qFPWYt0L9/3UivHVBImBUnUFi5 + CwxVewUxxMYEPfpx4BK4coGVCkEKaF+CBo2HWwU9BwyDvxDBGDxTIWJpKEjVpesBmB2A2c8CzKo+ + ft/QrKD+Com/g/jpQmctodbz2gKwicUUowMGPGDAAwY8YMB9wIAdKfdbUGAlr8L7Rp59CKAY6APe + AOZJL2rqeBA0vDtWNIIEAiUJDMxr65jmMmjvXMbmZCfQ7N0VoTro9B4Byy8BVmAplSB0IPU9iUO2 + 576ClN1EMw6je4I8nf67t6inJY53seuONuDa/fIAuX5NyHWqQ3SEuWwn8KrFsvtoZd/B5z6g3TxZ + bIOCsc4zt9PbHdgiAL4e3GbxAZFasryjeIuEs755Vrq7HW6CrCDRrSErRkIL8z1Hsh55Nn6673C2 + S8/pFLQbV5W7E/S9GfZ283/6KPwfHnbfvOx/Z+R9/LVjHb++GZPP2YrHDQ33H5BXC4huQNKV4+NT + ZYsMD0a1MTJCW0+T9WFylrKQLzn49A9xoKxZ7ZqFOsc21ep8b5jVOvvbze2HEmHgYsCFLryhcbu1 + P3w8L+PcFubUJb0d67ufYj/i0X3BAAysIBGPc6VyIJNPLFasnFaiWrGeCShJKiT4Zqqcn+gaN5LR + S4bUKBZENbiYCjfwD5EzVZRU1rd5RK3OqjVOiq7q7oCWc1LUyJm6IewMs5RhYZt9B7oA+9W25jF6 + 6goJ5kkSIe2/mvWBfkvhX0MVDkjM9IdUDTN+SSPAb2xJ8YoDgQmKIjnEwBwmn6HZrrRamRIb8oZT + 4YarDGh9xqTYjk6WQM9gJCw+RQexxVdKiuLG5SQuC9gg1KoJSXuD7poRxsERRNsdzR2vZ5omK1Ph + 3X3/wmGnrm9ufXtTSbDlEmCconoiYlph5UdPdE5FVCXtDJ2jrf6zFO5hDlkikQBaiWBKKrSrW9q6 + 1/WrW97KZrXe1/YsZxXjW0d7XaFGOmjqZ4tKIeZKNRAxlVTBgat1dvgR9Cow/lbD8Tce31kSzXVq + 2nYq0RjYvdBMd5wvNMjcZhWY3mpX1iANvjSN6Ga+oOSzt/W+TOCr0amCR8p5tY9d52NqClt7uXti + 29E51l6SFZNBlIBDwe4Ki8wDUAm3eU38/PC4vPC0OjbXvvFt+LxlbAWiHw7XfpjDNTfL2Ir5TOXx + iV2RNypdw7zUiugHNsN6KtkmejGZfu0vOaSxkQIuo0tOcZel1p2R2saM7Erdv/banWDa2uqRltMG + 8MeK7Ar4dAlv/0HCwCXQ2t80tOfh1g1sddn2EcQFzbzfzL1V1tPqY0s+a5CcloK1pT88y5m6BzvN + TmV8arIIkec0/DTtyFG1NFkx5c2mGVSEcZYvrysnejUjaZbtW+GfYZOPF9QPv6O/860YYMKXTKp/ + u6E2RGBwDhgOwO6ujfdhu/19y8cesXSsvu/4ccrGfolb2Pu6P4U0dLgp3Rsw1zKBh5vSQ3HaD3yl + t++3eXt7Q+Ym9j2Gybj7ZI9aldaEzNXjuG9EKth8ACTmc5uCruqEH8DJAZwcwMljghMdf78KPsGS + o2f41/N9RyrfjipwaXLQRFfm3WP0oI8PjUd/D+hQu+dVYKByyPaHkk0fspVlK7c+YcMb7bbODe1I + SGOSxNEWT5m0QRbkas3UfyslGKECwwJPnmOmz6VgaovB2eEk71BNQg7VJEaKu1eTYPw/QPlIdY/x + MxWCVDU71Ht0boftwO9c5fHTlWLcrWSiBq3wc9igOsx/8lKIKAkP1Q/2c6h++L+qH3TK38vt2P8A + UEsDBBQAAAAIADAweFPEDQyF5QcAAAQiAABmAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr + cy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9s + aW5rc19vcGVyYXRpb25zLnB57Rlta9s4+Ht+hcg+JBmum40O7gI5KLttN9gbvd7BEYpRbSXR6lg+ + Se6ajdxvv+eRbFl+SVhLuw3uBCW29Oh5f3UfkVgkPFvNC708+mnwiBzd2wJkz0W+lXy11mQcT8hb + HkuhxFLDvsyFpJqLLCSnaUoMkCKSKSavWRLC3Tc8ZpliCSmyhEmi14y8fX1ebYfkd8bci77RhGcG + JpfiI4s1kUJoshSSpBYGzuFtY2ka1hJGVixjwAYQudx67I3PJuS00OKMKW0BX1lAIc3VNc1WTJEN + 3ZKYFgZ3LKREspdsTa85kKVZQj5xEO2SkVQAHr40/MWIjqOojnh4v2pfSrEhepuDVQnfgJ41Oc22 + ATlV2yx+rYHmZcoC8pymqX36lcc6sCLyOCDvc9QRTQNyvs3Zn1QOSiyfqMwAqRpYEvRzIVkIgrOQ + IuoopyufZklu84GuWFKSf8OV7txmNzEzNFV193nKWabBBGv44bEx2gsphQzIb1rnYJccoFm5Ba+i + kDF7cQPYVWvzndAvBbhQub2hecTwscNFznOW8oxVPHwo3ytiey+EWtJMmTu+6D6jFdt/F6wp/2a1 + 0fuUcHr21jD90rhtqfQwDKvzDXhSqghVJLKPg8E5mVdGG4/OR5PB81ThO2xXVl1Udl8s2hIuPCaD + rhAX4BDWWRZKgyrBqS4uyp/BIE6pUuTFTQ4xrM5Eodkbnl2p9zmzca5mAwJrOBwegCHGkYhwG+HA + 3PpLFEStRZEmJBMY6kpTcAwIHogpCCZLPOEYguk2JK8BgFFwum19MZYM4WnpXCWSGDGAdpGKhxaM + YLMHIsBQplrTeG33QeM0wx3JL0GGkscZv6ayNMoMkhoHMC3shmUQbheY0EymAq6dmGQlRZGHFo1G + e1Vo/vHcJGP6k5BX4fXT6dNpNH0WTZ+EpeHNxZxKugFKKN2skhJlwJwKSRBSjjGtChvwIlvyFcCb + 36JkSCzdLYuwcQeOOE35ZyZBUAC+NBnXSlqfNa4k7NAl/zSs/MSqtfTyee3kuJuwJYkinnEdRWPF + 0mVQ8hmUAgUeI0ED/4Qc/ULeiYxZh8SFCMLIIgBK9qF16hAAQI2sBeTRATCfapuWYRJpmQcrlHV+ + FG3F9LhxI3BvssxrkfGZKKMbNiMYjw6C2fiKJAZYhKmiDwoC/6pv//HjK8jzK+tTRlfDUvNhO3CH + tQbBXGcM4oFdg5NjmVM5i/mSg7e3bzkJyrjxnKRXtnPAhk/ok4i5AvKDpg6cfeppk9qrpDY5n/0P + mHZr9puUD6m9Td1T/iF6LXU16TUNWB9esS2kCch3ZZ4Hd8Z8ROJCadsYAC1JlkUWm1DH9Oc6lRzT + VGIYsdkUydvy5whIpguZzTqcBoi2tFCRahQISI8rBBMPAzLxtcmt43YeHsohqTpErToadloF313d + c2yyi3X6MBf5eAQ7o8CkiAkhj4hltqyki/3RcFFHIBKLoNUAxF/cLq6T6ZPZoe7mZHoy29e6nEx/ + nvX1Oo7ArstAWOQJlLOxL547BCG/7Ca1XWjOo2smFXrFnAzREkfTZ0fTJ7WyaIzaxVOa52nJ+/FH + JbJhHc3YXEMplQW4zx9nb9x+IVOTPCEBQoILN0xTYI4uRnAwuqhVzVcZWNJdy6leR7Z3j0CKYgNa + Ux3NjlRxqWLJje1fJ6NZO2+HQGU89NNv6F+JeDIMyKHjAGhoOZoETbpVfL7ChPMO4nEf6Z7UBBR7 + dvcQYq1MdIjWnmQE9Pac7KGJSeYQHZeEALN77uLa9flAWXDD0rSID/4CqEC9Fp/0O5hJqAymGuWO + ocuR26g+QF/Z1e7V7GD33lqMIB6OyngA95x3NGBujIde2IAWvLdKD/2Mr6FB9bm277dmu3NtMTo1 + QdrLsoUGng0IsmseupyWvWLbVtiYGCO1tRV0GakTSzUpRVUtALT0E4VWuoE8chOVLLKxrAYR4IzR + zfwlTXGQqvqTiceqQ9ohFK6hBri3WjwYxh0INP26UJEZzO10QRZPp9OLWSMU3OA49uDnfUgCh9od + B3VGnrunSQO/qWXd6Xa8F5eNj3lzSvQs6HWfiTOjtzketSsY1IOOAicNnWEr0eTa9AKmzneuNtru + xNQa37/MRR/CnPmFAQPA1IYZGR37yVgdf2lm+91xIwvDeScr745zKa45htyx+9ITvrNtx3G7ywMM + fel2d4xJDg6rvLgb7Tp1yw0oKZToh27ju+164zPP/nYFv8ScmUZteNHbx/d3o6D3o4p3VfWs/c1+ + q1v+Dzb736wVh3maa/uBErzuitUfN0AwxgGH7JiydoA79u2dL39h85Pf4o79fc3YhUf6R2r1/dj5 + v+m3CxMeaAkCDiuAKd3jjN3oCFPl3Gi4WToO9UK47tgP9V69n54IFxRB7BGcZE2Z2nL500+1vA4Y + C8RXj0HV+rpxqFrfayxy9L/VeOQIfocxCdfukKFvPeoccqqeiadad5t89t1+iAmoWvc6X+CCPM26 + wWht4KL1nhV270KUXXGJt9Za/WUYJJE01hFmjG7L3Uqxtx8B6srWPwz42DF7RWIZsZRtml+7k/Ca + pgVrJ87O9NCDBTsPf6tXPw1SzrjYxmCd8f7V2ELVo0+wVYQYDteq2tB7S1zLxx925LU83X7sLQ1x + y9EX10OPv0ai+x6BPZfpqKgzijab13EDSeUlQSP+HIgVpVHNf9jZtWdg/RdQSwMEFAAAAAgAMDB4 + Uyxteve4BwAA0x4AAHAAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx + L3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19leHByZXNzX3JvdXRlX3BvcnRzX2xvY2F0aW9u + c19vcGVyYXRpb25zLnB57Rjbbts29N1fQbgPVgZFcYsO2Ax4QNC1W4HekHUDBiMQaIm2uciiRlJO + vCD79p1DUpRk2m6apdseZqCNRJ77/egJyUTOy+W01ovTbwZPyOmj/YDYC1FtJV+uNImyE/KWZ1Io + sdBwLishqeaiTMh5URADpIhkiskNyxPAfcMzViqWk7rMmSR6xcjb1x+b44T8xJh/0Tea8NLAVFL8 + xjJNpBCaLIQkhYWBe3hbW55GtJyRJSsZiAFM5tuOeNHFCTmvtbhgSlvAHyygkAZ1RcslU2RNtySj + taGdCSmR7Zyt6IYDW1rm5JqDanNGCgF0+MLIlyE5jqp65snjmn0hxZrobQVeJXwNdtbkvNzG5Fxt + y+y1Bp7zgsXkBS0K+/Q9z3RsVeRZTN5XaCNaxOTjtmK/UDlwVK6pLIGoGlgW9I9asgQUZwlF0mlF + l12ejt36A12y3LF/w5UOsNlNxgxP1eC+KDgrNbhgBX94Zpz2UkohY/Kj1hX4pQJo5o7gVdQyYy9v + gLraOXwn9CsBIeSO17RKGT4GUlS8YgUvWSPDB/feMDuIkGhJS2Vwuqp3BW3E/r1mff3Xy7U+ZITz + i7dG6FcmbJ3RkyRp7tcQSYUiVJHUPg4GH8m0cVo0+jg6GbwoFL7DcePVWeP32WxXw1lHyDhU4hIC + wgbLTGkwJQTV5aX7MxhkBVWKvLypIIfVhag1+wBCqjfCek+9r5hNeDUZEPgNh8P7ABMTWkT4g2Rg + 0H8VNVErURc5KQUmv9IUQgXSCbIM0suKk3NMymKbkNcAwCiE4bZFzCRDeOrCzRHJkALYG7l0yIJb + bD1BApjcVGuarew5+ICWeCL5HJRxMk74hkrnpgmUOQ5gWtgDKyBg11jiTO0Cqb2aZClFXSWWjEYP + NmT+7AROyfS1kFfJ5tn42Tgdf52OnyYuFAxiRSVdAyfUbtJoiTpglYWyCEXIOFslPXhRLvgS4M3f + 2gkkFh7LEuzhwBWnBf+DSVAUgOemBltN27seSs6OIXVvkyZgrFld3E/bsMfTnC1ImvKS6zSNFCsW + sZMzdgrFHUHiHv0TcvodeSdKZiMTf0ggSS0B4GQfdm49AQBoie0AdfgAWJfrLi8jJPIyD61SBRS1 + qAcc+7evvrqCory07jZq9Ir8bOhMlBxMNSzIkOB1oYeXrfpg6wsGwcw2EKFQL4K8JhUDRaDYF03K + JuR7AcCYjJLpWkI6bCg3lYbMIV+uea5XykQfg7zxrBoCMAfsg88gr0RZbLGNirmmUK6gr0JbQC4o + IApBiapYxhc8a+QKyQ/80eSKbSFtIP9dJQT3Yn6SrFbatk7gJcmiLjMT+lgOfC+vMG1z08ptdcGh + xTYIz8AawAQ113ZuADdesbbCQDYxDjTk4YrZegaFQX7SvS1Q4Khhe9Lhi6L7EhF05qTfkmf3KyX3 + iZ3LjgyUQ1nrC9H2tiRo392Y88+ZyW8b20klqmgEJ6PYJOkJIU+IVdR1t88Mc8/FzAEpTATA69af + 4u/5+Onk2BDyfPx8cmjCeD7+drJvJPEM7kIBkrrKocdEXY39Jeh9e3fSuplWPN0wqTA0p2SIDjsd + f306ftraj2ZocLylVVU42c9+U6IctnmAxQXMBdWYpa4RRCW70SnMBFdTY+pJzyo4NEMAyxqCfgXN + FGTo3duz1JR3BnGPPry9a93VHx2Oo85G50aH0aWprr16m1joaGjVHMZO35iMgDpMPT3SMHdjUfKa + 9XXa1evnizfBfS2LRggsxglISMFddDaCGxDQK8iXJYR7gF9RvUrt8pGCf+s1xJMKYq75jVQ9V5nk + JmFe56NJoD5wjYbdrpF0UVKeD2Ny7LqxUxzwvzumu2uHidMEpYB/MTShvQqeHLVz6+kADCJRbh8U + RfuwZyPIl1OXL3ujyWBAMLVphRHVvu0PK/y5rNk10JJpa5ldWeIwzvtWghrGwvi0PvAB/MgGe3Ql + XPt3dFur2Ukeqw5oImmmU0yiqFmjUt/Q+hbozEy5F7JzGI3uUfWhhoZ8emwws1OxSFnB1v1JLU82 + tKjZblHBoSEw5g4V7NPdo72G6rHyXsamjzW4szjvkNpjWHBaihSO1/HW4wfL/06wB7YDXHpNYfPp + xUzqV2JZl5FsNkmIPUbX01e0wE24mVl3beEJB8ySFQwN/i2o7h4MZitdq9R8YbFLIZk9G48vQzf5 + rwBRB2e6j1DsyfvruO3bU/8UVjszCIWfK6KD9GwBnfbX/h1HuJAJTNRCOYj+qBf1iDRREvcS0YNY + VXqdDiuKaXYTMjrrdhN1dttvV3dnlRQbjrPBmf+glryz0+XZ4Y1/dBe00UEQ24fWoGbIT0soSBOM + t2Mr0qenxeGhTYgoGKNhYfjkOhTjJ8Gixi+rZnRHa+Lg7nciz6Cz67QLE+wbivI8INvdYuwWvaP6 + O/gf+dh1weQfVM1Pipu0ZM32Exr0X9ieDronfuBC9OBF57++3fy/0zRAh0b5zhgLdeTeE/z9Jvd/ + a2IfNWmKWX+Iay+VgU3vPaR7t89knz357/XHnpH/YZPrPzHiH9t1H7jnfqEd91Hn9y876D1kyPv8 + Ae9LD3ePPtj9jQ1n/17TNV6wprgBETtmgNr7Lp6bGh1Mll0Ic9ctqF9+UDy77Va9uz1z419QSwME + FAAAAAgAMDB4UwKSlPd8DAAAtGkAAGYAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19leHByZXNzX3JvdXRlX3BvcnRz + X29wZXJhdGlvbnMucHntXOtv2zgS/56/gkg/2F4oSrroAncGfEDQbfcK9BHk0gMOQSDQMu1oI0s6 + ikriFtm/fWdIiiL1cN4PtxLQ2qKG8+JwOD9S8SsSprMoWUwKMd/5x9YrsvNgFzB7m2YrHi1OBRmG + I/IpCnmap3MB7TxLORVRmvhkP46JJMoJZznj52zmQ9+PUciSnM1IkcwYJ+KUkU8fjspmn/yHMXMj + LgWJEkmT8fRPFgrC01SQecpJrGjgOdwtlUyp2oyRBUsYqAFCpitLveHhiOwXIj1kuVCEfyjClMuu + pzRZsJws6YqEtJC8w5RzFDtlp/Q8ArE0mZGLCEybMhKnwCeaS/1CZBehqUa4/7Bun/N0ScQqg1El + 0RL8LMh+svLIfr5Kwg8CZE5j5pG3NI7Vt9+jUHjKxCj0yJcMfURjjxytMvZfyj3yNYGWLc3sgvIE + eOdbShL9VnDmg/3MpyghyOjCFq2lLg/ogs20Fh+jXDR6s8uQSdF52fdtHLFEwEicwkcUyrF7x3kK + Gv1biAyGJwNqppvgNi14yN5dAve81vg5Fe9TiCTdvKRZwPBrQ4ssylgcJazU4UDfl8I6O/iC0ySX + fWzTbUVLtf9fsBb7szSO6477ePjlAJoZ1477nB4oKn2v7z4xcZrObI7LxVJ0uXX/8JN0w3s5H9p7 + aWX0kFK+DNrUA05aAx0Mvu+XBEsI9DgnNCeB+rq1dUQmZUwNB0eD0dbbOMd7aC6D7rgMy+PjuueP + Led5TeeeQLyqWD7OBforWZ2c6I+trTCmeU7eXWaQYvLDtBDsAJTMv2RMpaF8vEXg2t7eXkNDpDdI + ahr8Ldnrf2lB8tO0iGckSTET5YJCwMLchikPc10Jn0WYIeKVTz4AAaMwGVZVx5AzpKc66DWTEDnA + GKEUiy0MpUpuyAAzDRWChqeqHTxOE2zh0RRs0DqOo3PK9aCMIedGQCZS1aAUhN4F5luZSEFrYyZZ + 8LTIfMVG4HiVbP6ywiZh4iLlZ/75r3u/7gV7vwV7r3098LJjRjldgiS0blxaiTZgyoccDRlRDm3u + O/RpMo8WQC8/C61QOje9FEOnDzyKaBx9YxwMBeKpXBCUpdUzp8uMretkP/XLOFFu1VE+qYIcW2ds + ToIgSiIRBMOcxXNP6+lpgzxLEc/hPyI7/yKf04SpgMQLGfiBYgCS1JfaU8MACCpmNSJLDpDZUuuy + pJIoS35RRqngl6aBpUwwaSAwGDq9PXPHde4NZPwECV2yMcG5aSiYmmsBx8kWYNpoo/rllzNYcxYq + jlr8E8oBUDSQuLLhAFoGnqQaEfIKF0OGISeTzTE2n1QqYCYMYD0AFt9NK15v9l6P1y1Bb/bejLvW + lzd7/xy3LUhGwFVTAb/IZjC3h7Yh5iGY8/1qNDK9aBYF54znOBsmZBvn3M7ebzt7r7crkhATPz6l + WRZr3Xf/zNNExy5eWAhBXuEFBPvXw4+mveCxjCQVNvZo+0smKChKjwdANDipHBwtElg6DIuMitNA + 1VywgCyKJXgwb3h5kBfTPOSRzP8fZoNxPaB9kDLctuPSt7sE0WzbI+seeyBD8MHIc+WW0fkHBudn + iLou0S1hDBJbWjsEsdqCsk5Wx4QAeR1PmjKvWsdQp0k9HCgL/nkwtVpHadQeIDJXQijw3DyGlM1X + QfUAx/eqCgl3Oe7sdTyAeN7R8QwhNWl4R/YYblthDz6x7ko/tCt+CqutrbW6v7XajW7Hg305yVpV + VtSgsyRBdeWXpqZ64auPlZp2apzqDvOaulS5oaxIA65LI+BMLyiUBg7/wFSuvEiGvCysQDlGl5P3 + NMaCtcy9Izurl0wbgvxTKMjMXWUhYB9DAkWMKPJA4iBVLZHjX/f2PAI5DP97czJ25o8p1YdWz0kb + O88IMY+9Kr1OzLeRw5/TCIxp4IlhJy81WSZuFT1yjIX1xzWCM1HwBNuHDaephUrmd8WkK+FikMqc + OyaDXTvJ5bvf3Sx6tetkN3jeyHZXu4CUzyOcFrsG+fqfVRG32yiCd7+3pbGrwVUj/ddqhSkDNKgt + evpCwQVRaumvRgaquN+lYrmE5nnGwmgeQQlcN99o6FfDrCvHVt2PgBt+w0IVOZdEdiUtechqusv8 + uqhOJ9TFrVHflbzOrRXpGVtBUABE0dBMhjfZJ2GRC7XVAJI5mRdJKKtzRCxm7yNDZDGTaikAZCZp + UwBIxYpTREkhi5VApGcskaKsViJbEbwAJ0HBPEoyOb5EQVmS03OG3KiwLS6laCALbuMFkwikgrEe + kXlPtiZpSeqhebSa0CUU1iABiQEr5YhfzTOwBcQvVrVBlM4yGkzTNEbefzW3AfwWfN8wJQJAoOkh + W8AqcE5jWL3YnBYxbtRA/gBVRAShMYWZzdBtF8qsXKoNU8OCs5i6wOpDJvhqZ38O/PQygxtWGCkG + aUktVFKTcMmgVYhAd86paFCkOWERBAKXCQ/t1nMDlU1l1jRZd2SJUeml00e16W11xMyeOx2rzRC/ + kfGdvFAtpno8XYChW6EqxyCyQIbcKTvGcW3boamUuxdmiXmKGZWuXBZu2VmPi4FbljoVc53WUFbD + gDNQzce63o0J2zTD7O7ArDhxFsqKK4SYC+vw4vQi0AHi1jBdCNR0bObUSVvJ3ujYkRInXfV3gwGM + 4ySmy+mMkktv5X0bw0eDyFmpKmeb2y4MKP3aSoWeZOhMcLghNJS4Ei+YCOIURhnKPdzADcCSrBDN + gmTkjkFbPaNcfIuaBq8eECpBTw4I7RlntnFzmbrGZv1YygwFw1Hb2R2abOPJxJOq/Dn5PphHMKV3 + 5DK7cx5RLEvjVG0zDK689uGetLZ6pAVoQEQ56sqVuUtfszE+tBm00uuG9jTUWra7y4yPVUbQTHvN + JOSKnri3LZmjwXJSKdaWaBDGTWxM1ySqNvkUW6zhpjQ8m3Rkg1pCclx5vWuGjjJW9va6so9Xc5IS + aYOGzYY/YPbTo55tvRnt1+3YdmocrPMidq7Rj94A2Gz0U1f9hQKesnKuq+vdsSi+5gCmEQf1Gnl8 + 4yK5tUa+ZTHbHZ79try+brAtD5ml34p/6ZVXy7j1W/GbtxWPq/hPsg+/6bvv1qn2zDrBNI3DQX3V + gRzehMD32c63VahBYN3RppDP7GS+kXVuoN5fCWCE1Hr5VC8HVBNvvKbuvW+13Fc4Za8bVDj2VpTr + tW37EaThZglkCXqo1xe6IrOvnvrqqa+eSr3fqpm5g/lrbQ1Vm8L2rdF9jZyHqNKm6WwVlIJVermZ + 3XbHFgXw8dAu7pq1wmidEsflLrw0zya4rsDEffibFpgY7C3CN7zuxFc/Xm968dll52QC1u25xj1G + odot/PXjC3/8Kvn6pXwja2e121237eUXzrXT9zVFr7Pt/FYamuNWp7K0f/tm3Wa0km6P1kG12ucF + 1sa43Zyqvy5Sf0XQUMG841HXweZ7783k/kWh/kWhh31RqBnID/7S0B2j/sd8z+gmGxf920c32Owy + LJ7tPaQqs08s7NAg++FeV3rw0rYMltu/A9UscVv6OlVuv+f03HtOdn543Hel5HKxI2HAjlla+xen + ZPT3L07d58Wp+vK02fBYL7GCLvJnwcRHIPiLLODvfYwEBd9XaU2zsEXzeny7Dt8WHZ4z5isXujrc + Ad9W4/2EyLZ/I6w/L30Z56VWuu1PSF96tdoyfv0JaX9C+oQnpNVq+Whno1SEpz/56eimH4xu5nlj + 21K4QRAKwVMMFU0wXQXuGnZ3HNVxClj+rFx3JYc/+XYoa9jacSA+IFBWr8cWefn7ftUxYR32PAt2 + ejJggGcnQv0GIQzqGXNOUjpOSyqf3+fcxP5VP9/9Ob+7Hp5UijWOUV4I8LDD9SeAIDcCD5hPwEsw + uzCvygVxmLBLEUCmPZtID7sJeV1dhtcda7PWrg9TN+ElzzYFMZY1d/27UFR5WdV4e/69MbAqr5sB + rPJ6LqBl5D8V4MLrap37bw2G1g11CyYqr7tho67ej4GRyutB/8IFr+YOdzUGZg49sMMe3AhdAWq+ + ldeqXWiwhNNQBDhrH+EMslpv2gtfm7vMKek8YDFbur/jOPPPaVywejprPbqsccF6wG669qzSN4OL + xYX6uQfz4741Vi3+xGMN5LB+BakGunPhqcX448I7pdPtIZ4eiFvCPLweG+pJix4a7lkh03BRA3a5 + JaV7GFhGiefMP0OiTLlmjX1OxHYdNOsCYi8IZtkuskFWj3x65EN65NMjH/uqIZ8fGOf0sKOHHT3s + 6GGHvnrY8VPCjjuBjPsiiL8BUEsDBBQAAAAIADAweFOqjUawhAYAABIUAAByAAAAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9u + cy9fZXhwcmVzc19yb3V0ZV9zZXJ2aWNlX3Byb3ZpZGVyc19vcGVyYXRpb25zLnB5rVhtb9s2EP7u + X0G4HywXCuMWKbAZ8IAga7cAfUOaDRgMQ2Cks81GFjWScuIG2W/f8UWUZDlGNkRAEIm893vujvQr + koqMF6tZpZcnPw1ekZMXe1DYhSh3kq/WmkTpmHziqRRKLDWuy1JIprkoKDnPc2KJFJGgQG4ho8j7 + kadQKMhIVWQgiV4D+XR5XS9T8g0gfOh7TXhhaUopvkOqiRRCk6WQJHc0uI9fG6fTmpYBWUEBaAYq + udm1zIuuxuS80uIKlHaEvzlCIS3rmhUrUGTDdiRllZWdCimN2htYsy1HtazIyB1H126A5ALl8KW1 + LzXiuHE1KKcvG/alFBuidyVmlfANxlmT82IXk3O1K9JLjTpvcojJBctz9/YrT3XsXORpTL6UJkYs + j8n1roQ/mRx4KXdMFihUDZwK9qOSQNFxoMyITkq2auv06jZf2Qoyr/4jV7rHDfcpWJ2q5r3IORQa + U7DGfzy1SXsvpZAx+V3rEvNSIjX4JfwUlUzh/T1KV3uLn4X+IBBCfnnDygTMa8+KkpeQ8wJqG776 + 71rZkwxUS1Yoy9N2vW1obfbfFXT936w2+qkgnF99skZ/sLD1QaeU1vsbRFKuCFMkca+DwTWZ1UmL + Rtej8eAiV+Ybl+uszuu8z+f7Hs5bRsZ9JxYICAeWudIYSgTVYuH/DQZpzpQi7+9LrGF1JSoN37CU + sfa+SrHlWMHqSwmu5NV0QPAZDofPIycWXkSEBTqwAv4SFVFrUeUZKYRpAEozhAuWFFYalpgzKeOm + MPMdJZdIAAyhuGsYUwmGnnnIeSGpkYAxN1paYjE1rqcYAabAmdYsXbt1zAMrzIrkN+iOt3HKt0z6 + VE2x1XEk08ItOAORuzJtzvYvtDq4SVZSVCV1YrTJYi3mnxZ4CtB3Qt7S7dvJ20kyeZdM3lAPB8tY + Msk2qMl4N629ND4oF29sRDbhinboRbHkK6S3/ytvkFgGLieww4NbnOX8B0h0FIlvbB92njZ7HZYM + jjG1d2kNGRdWj/1ZA32zmsGSJAkvuE6SSEG+jL2dsXcobhkSd+SPyckv5LMowGHTPEYATZwA1ORe + 9naDACRohO0RtfQgWVvrvi5rpNFlXxqncmxsUYc4Dl+vX99iY165dFs3Oo1+PvQhokeKzbRlLPMq + 18NFEwCM9m+AUxkbhh1dbMu4bR0EnCgcsigrYKKsS9dj3yb6FnaITyw033YwjqYQSFop7eYUEETj + sipSizFTd2FwlqY+MqvclbE5IbhuHBRI0JUsLHq4dkMa43ULTSkjbIGjDHmsPTUhMOYYjdJ/LY3J + Ua143NJsjA/V2BuEtDsB58+r2ueladGygnHsIV0zmmFCe/Oynd7wntpickCipSijEa6MYlsRY0Je + EeeqHyf/GVNBjx29CQ5h1PYQVs1zNnkzPTb3zyZn06eG+tnk5+mhU0BQ8Ng3gFZlhi09avscNtHz + h8dxk2pW8mSLwDYAnZGhSdrJ5N3J5E0TQZaakJtdVpa5t/30uxLFsKkGU8sYMGx+kPi+GxVwrxMc + w7czG+xpJyrmnIowlhVCf42zC23o7Lu1xHZTQPSbLD48NgnrTuvjrPPRufVhtLDNrNPeqKOOhs7N + Yez9jckIpeNBoyMaj7pmIAfPuj7t+/XH1cfefiXz2gjT+yhayDBdbD7CHTQwOMhXBQK+x18yvU7c + eT/B/FYbxJPqYa5+Rqq6UanktmQus9G05z5qjYbtJk3bLAnPhjE5tl3HKe7pfzzmu58+1HtirMC/ + GHv+QQfHR+PcZLpHhkiUu/+FokPc8xHWy4mvl4NoshwIpqasDKKar8OwMo+vmv0ArUC7yOzbEvdx + 3o0SdjHo49PlIAD4hQP24k64GVjLbaLmDs6m66AnkqU6MUUU1TeXJAy1bgRaR5QsGNlajEbP6vvY + RfuaOopMbSdimUAOm+7RKKNbllew31bM4aEXzj0pZlq3lw6GqqMq5NmMftOFW7fVPVEHQotpS4yE + 4528yfmTA2AP7r3YIS+7Y3jV6KAmCfdQWRWRrK9viD5gm9kHlpvrZ31I3I9FENxTRtd4cAhfvf4e + yPCMpSuV2J813C2MzN9OJot+msLVO2rxzA4JioP4sB03k3sW3vr9zh6G+r8RRE/Kcy101r1r7yXC + Q6YXoobKU3QPfFFHSI2SuFOKgcS50pl1pqfYcTclo9P2PFGnD92B9Xgajt6n4Vcs+tmdMU/hyCV7 + 9Ngbpf8CUEsDBBQAAAAIADAweFPwjbX1UgwAADxcAABkAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fZmlyZXdhbGxf + cG9saWNpZXNfb3BlcmF0aW9ucy5wee1ce2/bOBL/P5+CcA+wvZAVt+gCdwZ8QJBt9wr0hVz3gIMR + CLRMO9rIko6ikrhF9rPfDElRpB5O0jhp01pAa4sazovD4W9Ixc9ImC6iZDUtxHL094NnZLSzC5gd + p9mGR6szQQbhkLyLQp7m6VJAO89STkWUJj45imMiiXLCWc74BVv40PdtFLIkZwtSJAvGiThj5N2b + T2WzT/7NmLkRV4JEiaTJePonCwXhaSrIMuUkVjTwHO7WSqZUbcHIiiUM1AAh842l3uBkSI4KkZ6w + XCjC3xVhymXXM5qsWE7WdENCWkjeYco5ip2zM3oRgViaLMhlBKbNGYlT4BMtpX4hsovQVCPc363b + lzxdE7HJYFRJtAY/C3KUbDxylG+S8I0AmfOYeeSYxrH69lsUCk+ZGIUe+ZChj2jskU+bjP2Hco/8 + kUDLgWZ2SXkCvPMDJYl+LjjzwX7mU5QQZHRli9ZS1x/pii20Fm+jXDR6s6uQSdF52fc4jlgiYCTO + 4CMK5di94jwFjf4lRAbDkwE1001wmxY8ZK+ugHtea3yfitcpRJJuXtMsYPi1oUUWZSyOElbq8FHf + l8I6O/iC0ySXfWzTbUVLtf9XsBb7szSO6457e/LhIzQzrh33Pv2oqPS9vnvHxFm6sDmuV2vR5daj + k3fSDa/lfGjvpZXRQ0r5OmhTDzhpDXQw+L5fEqwh0OOc0JwE6uvBwScyLWNq0P/UHx4cxzneQ3MZ + dLMyLGezuudnlvO8pnNPIV5VLM9ygf5KNqen+uPgIIxpnpPXEWeXIACUjsKI5R8yprJQPjkgcPV6 + vW4SIn1BUtPgH8hO/00Lkp+lRbwgSYp5KBcUwhVmNkx4mOlK9CLC/BBvfPIGCBiFqbCpOoacIT3V + Ia+ZhMgBRgilWGxhIFVqQwaYZ6gQNDxT7eBvmmALj+aFYFrHSXRBuR6SCWTcCMhEqhqUgtC7wGwr + 0yhobcwkK54Wma/YCBytks1fVtAkTFym/Ny/eDF+MQ7Gvwbj574edtkxo5yuQRJaNymtRBsw4UOG + hnwoBzb3Hfo0WUYroJefhVYoXZpeiqHTBx5FNI4+Mw6GAvFcLgfK0uqZ02XBtnWyn/plmCi36hif + ViGOrQu2JEEQJZEIgkHO4qWn9fS0QZ6liOfwH5LRP8n7NGEqHvFCBn6gGIAk9aX21DAAgopZjciS + A2S21LosqSTKkl+UUSr4pWlgKRNMGggMBk5vz9xxnXkDGT9BQtdsQnBmGoqlnmqYWqJw00byyy/n + sNysVBC1OCeU3lc0kLOyQR9a+p6kGhLyDNdBhvEm88wMm09NZ7kABLAUAIsvphWvl+Pnk22rz8vx + y0nX0vJy/I9J21pkBFw3FfCLbAETe2AbYh6COV+uh0PTi2ZRcMF4jlNhSno44UbjX0fj572KJMSc + j09plsVa98M/8zTRgYsXYiBIKryASP/j5K1pL3gsw0jFjD3U/poJCorSWR+I+qeVg6NVAquGYZFR + cRYouAVrx6pYgwfzhpf7ZYj8jhHyHka/P6kHtA+CBr2WWOp5bRHmkT5Y1B96rqClndQ32yS1xSSI + amvukJUX8zzkkVzP3iy65Ngzzbe7BNGi55Ftj5tyr1vHTudGPQwoFf55MKVaR2fYHhgyQUII8Nw8 + hjzNN0H1AMf1ugoFdwXu7DXrQxyPdBxDKE0bfpI9Bj0r3MEx1l3ph3bFz2CJtbVW93dWu9Ft1j+S + k6tVZUUNOksSVFd+aWqqV7v6WKnppsap7jCvqUuVE0oQGnCNhoAzvaSABxz+gQGrvEgGvMRSoByj + 6+lrGiNGLXPu0E7lJdOGIP8MMJi5qyyEcseQAHIRRR7I0kdBJDJ7MR57BHIX/vfydOLMIYPOB1bP + aRs7zwgxj70qrU7Nt6HDn9MIjGmUEINOXmqyTF3gPHSMhXXHNYIzUfAE2wcNp6kFSuZ1xaQr0WKQ + ylw7If1DOw/kh1/cRHN96GRTeN7IrteHUBxfRDgtDk2x679XyO1wWQO+h1+aWfO6f93I+TV0MGdQ + /WlzHhkauBWTWuyrMQHQ9pvUKpd1eJ6xMFpGgHhLxE+UnX41rBoetqr7CXjgN0SjyK8ksuGy5CEh + c5fFdVHtdtdlNTR2hXU6r6I7ZxsYdKg7dLUlw5cckbDIhdo9AGGcLIsklJAbyxCznZFhubCQmqiq + xkzCpgCQijBSREkhQUgg0nOWSFFWK5GtWJEAJ0GheqQkk6NIVHVKcnrBkBvFkqYhRdem4CleMFlW + VJWpR2Rek61JWpJ6aB6tJmxZ3Wrkj8RQAOVYkppnYAuIX21qgyadZTSYp2mMvP9qVvZ+S8neMCUC + lK/pIRtAlr+gMaxObEmLGPdeID+AKiKCaJjDzGXotktlVi7Vhglg1aiYmsDqEyb4ZnS0BH56GcE9 + qAz328rySWqhkpasgUwJCkHnziwVDYo0JyyCQOAyoaHdei6gsqnMiiarDi0xKoN0+qg2ia2OmLlz + p2O1v+E3Mroz+6vFUo+nWzjoVkDbGERW8SA3v2Y4rm2bLpVy96pFYp5i0qQbl4ULLetx0XehpwMa + 67SGshoGnIFqPtb1bkzYphlmwwZmxamzEFZcIcTccg0vTi8DHSAuRukqK03HZg6dtpUAjY5t+XDa + iugbXWEEpzFdzxeUXHkb7/MEPhpEzkpUudncdlV10qOtVOhDhm4EVxtCQ4nL7IqJIE5hfAHI4W5s + kBYiK0QTagxd77chFeXcO6AVvPYl3iOXePYcM3uxuUxWE7NirGVOgmGobc8OTH7xZKpJVcacfgG/ + wSQeyYV1dBFRBJpxqjYM+tde+zBPW1s90lI6QCQ56sq1uEtfs7s9sBm00uuG9sTTCsTdhcVHXBE0 + E10z7biip+5tS8ZosJxWirUlGCzMpnaV1iSq9uoUW0RtcxqeTzuyQC0ROa682TUDRxkrX3tdWcer + OUmJtCuBJ1zQgM0PWsewq4wmi9qCCm6SOXdLtdPTe86+c2Kx6TmY53cm9uVOKa309Cv5iUewS8YZ + QNyFUTivMy/7PG71VMJwd2i9r8TXNxzQ1AKoDrYnt0bbrWD7jqi4K6r3u/b6usWuPWSs/U799wrj + Wsbr59mpL0UAWlOJFSEh7gg3y8SmFn9TXbZpoChAuPryA54QIBr5SY4HnvqhgHXCvrAOVE3joO+u + cbBiNKv3+5wx2ArUqnfd0aaQz+yl4+lB9UC9RhPA4Kil+VHeUagm3KQTlN8PyO8xlLpugaHsnTPX + Zz37ESTeJsiyBO3q/YmugNzjsz0++w7x2SPjpGM1I0eYtbaipdrUtW8b2PKB8Ng8XWyCUrBKK7ez + 2+7YogA+Htgwro4KhttUmJVHBdI4m+AmIImHBbcFkhjqLcKfOL7EN0+eP3WQ2WXndArWjV3jdg9I + u0U/f2jRD4+Fb168nx5CVnvydcO+a3hceyGgE9w6+97H0sIcN0yViftd8FKaPR4fqzU8LxDp4sZ0 + qv5OSf1FgnFgXX71jkldE1vAPXeg968p7V9T2u1rSm6kPcALS18V8T/mG04370Ps33q6xZaVYfEN + 3n+qcvnUKgcaZD/ca1I7xqtlkNz9zasmbm3p60DX/dbRj/+GllwcRhLWj8wiun9dS0b9/nWt+7yu + VV+Onlyti1k/jvJ7vLPVUYKWv5zQBWvwNw1OpONrtSg+yAlWTm4JFeEfbCdQNNSryG9Sij7aO02I + 2YX6MQ0YqHPmIPhWlF559j543f5xCt/9VYqvA+2VWg34/l28M2UH5E9w8nerMzvMDlBOwrxCkCX3 + nwcJu4I0GSXnU+lfN+VuOwjB6ysPQ1q77uagAi9ZTQtiLGuizq7Dy/Kyjr8wm976vLK8bgc+y+vR + QKgR+A0AYnldb3P2nc8atw1sy5FjeX3d0WNX74c4giyvnb4IhVcTV1VjYGbMjh22cyM0FNR8K69V + W/1gCaehCHDW7rzerdaW9srX5o35I0iXAYvZ2v3hkYV/QeOC1VNXa5lc44Lrvt10Y13sm6FFEKH+ + oMn8FlWNVYs3EUojh+2rRTXMnYtMLcIf9uRU6XT301M9EHd8Qw+vhz5AlRbt+hDVCpmGixrnhC50 + dAvQMko8Z/bVNiGd9fQbllU3VVAB0HZVUbuukeTfqWBl1DzpMmWS7Q67SNpXLvvKZV+57CsXfdUq + F8xiD1297IuJfTHRMgb7YmJfTOyLiXIg9sXEQxUTzhJ3l4LintXC/wFQSwMEFAAAAAgAMDB4UxdU + +QwjDAAA71gAAHkAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3Yy + MDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19maXJld2FsbF9wb2xpY3lfcnVsZV9jb2xsZWN0aW9u + X2dyb3Vwc19vcGVyYXRpb25zLnB57Rxrb9s48nt+BeF+sL2QFbfoAncGfECQ3fYK9IVc94CDEQi0 + TDvayJKOopK6Rfa37wxJUaQedtI6fSQm0NqihvPicB4k4yckTBdRspoWYjn6x9ETMtpbA2Snabbh + 0epCkEE4JG+ikKd5uhTQz7OUUxGliU9O4phIoJxwljN+xRY+jH0dhSzJ2YIUyYJxIi4YefPqQ9nt + k/8wZh7ER0GiRMJkPP2ThYLwNBVkmXISKxh4D09rRVOytmBkxRIGbACR+cZib3A2JCeFSM9YLhTg + SwWYcjn0giYrlpM13ZCQFhJ3mHKOZOfsgl5FQJYmC3IdgWhzRuIU8ERLyV+I6CIU1RD396v2JU/X + RGwymFUSrUHPgpwkG4+c5JskfCWA5jxmHjmlcay+/RaFwlMiRqFH3mWoIxp75MMmY/+l3CN/JNBz + pJFdU54A7vxIUaKfCs58kJ/5FCkEGV3ZpDXV9Xu6YgvNxesoF43R7GPIJOm8HHsaRywRMBMX8BGF + cu5+5zwFjv4tRAbTkwE0013wmBY8ZL9/BOx5rfNtKl6kYEm6e02zgOHXBhdZlLE4SljJw3v9XBLr + HOALTpNcjrFFtxkt2f5/wVrkz9I4rivu9dm799DNuFbc2/S9gtLP+ukNExfpwsa4Xq1Fl1pPzt5I + NbyQ66F9lGZGTynl66CNPcCkOdDG4Pt+CbAGQ49zQnMSqK9HRx/ItLSpQf9Df3h0Guf4DN2l0c1K + s5zN6pqfWcrzmso9B3tVtjzLBeor2Zyf64+jozCmeU5eRJxdAwFgOgo3Z0XMTlG7IdJ+ydMiy99l + TPmlfHJEoPV6vbsMIlJfJDUd/pFE87+0IPlFWsQLkqToq3JBwaRh9YNTAG+g2FtE6EPijU9eAQCj + sFw21cCQM4SnelloJCFigFlEKhZamGzl/hAB+iIqBA0vVD/MCU2wh0fzQjDN4yS6olxP2wS8cgRg + IlUdikEYXaBHlq4WuDZikhXqwVdoBM5oieYvy7ASJq5TfulfPRs/GwfjX4PxU1+bhhyYUU7XQAml + m5RSogwYFMCLg8+Uk5/7DnyaLKMVwMvPQjOULs0ohdAZA68iGkefGAdBAXguQ4aStHrnDFmwbYPs + t35pOEqteh1Mq2WAvQu2JEEQJZEIgkHO4qWn+fS0QJ7FiOfgH5LRv8jbNGHKQrEhAj9QCICS+lJ7 + axAAQIWsBmTRATCbap2WZBJpyS9KKGX8UjSQlAkmBQQEA2e0Z5649s6BtJ8goWs2Ibh6DcRSLz50 + P7D62kA4rEjgp1yS3bh++eUSYtdKWVuLFkM5TQoGHGA26ENP35NQQ0KeYFBlaJjSac2w+9wMltEk + gLgCKD6bXmzPx08n20LZ8/HzSVecej7+56QtsBkCN00G/CJbgAcY2IKYlyDO55vh0IyiWRRcMZ7j + mpmSHq7M0fjX0fhprwIJMYDgW5plseb9+M88TbSFY8OECrwPL2BJ/HH22vQXPJb2pozLtgl/zQQF + RumsD0D980rB0SqBEGRQZFRcBCp3g0C0Ktagwbyh5X5pS9Ilv4XZ70/qlu8DoUGvxeh6XpspeqQP + EvWHnkto6cSDbZTajBdItXV30OLNaLNVtM6lgBJ2vuwgnhfzPOSRjMyvFl00bX/g20OCaNHzyLbX + Tbo3rYajPbi2AaQK/zxYz62mMWy3SunGwf54bl5DNOGboHqBRnVT2aGbS3SOmvVhEY30IgI7njb0 + JEcMetZaA8VYT6Ue2hm/gETA5lo935ntxrBZ/0Su7FaWFTTwLEGQXfmlyamOyfW5UmtdzVNdYV6T + l8ohlel0wHVeB5jpNYWsxcEfmLSbF8mAl1khMMfoevqCxphtlw5/aAecEmmDkH8B2aR5qiSEws2A + QH4lijyQRZxK5Mjs2XjsEXCc+N/z84mzhkydMbBGTtvQeYaIee1VPn1qvg0d/JxGIEyjGBp04lKL + ZeqWAENHWAh6rhCciYIn2D9oKE1FRxlUFJIuL49GKh39hPSPbT+QH392Hc3NsePK4X3Dtd8cQ5l/ + FeGyODZlu/9W5ZfHjoOOGCBoumwg0pLIA6l2h3vTv2nEp1rKM2dQ9mrpf9R8x60pVQZTzTWkrL9J + 9nO5U5FnLIyWEeT7OysgvzIgnS63SvoBsOI3zM6RQglklw8ShywhupRVJ9WusjqtUgaihKgT69R7 + Q7At2u+iuUVvNZG3T20Ffck2YOpQE+pqWS5ackLCIhdq9weY4GRZJBKRLBHNdlSGpdxCcqgqTuN6 + mgSAKqb4IkoKmfcFIr1kiSRl9RLZi9UiYBIUqn9KMmljRO0ukJxeMcRGsdxsUNF7C6BBXjBZ8lU7 + Cx6R3lz2JmkJ6qF4tHJT5e6ErsoQGIrTHLcUzDuQBcivNrUplcoyHMzTNEbcfzV3ZvyWLZeGKBFU + YBoefCDEtisaQ0xmS1rEuHcGXhFYERFYyRz8FUO1XSuxcsk2LE9r/wAdMkh9xgTfjE6WgE8HT9xD + zHC/tCxtJRfKVcv61GwPgDG6615ZgwLNCYvAELh04yi3XpfIbCpjgYklQ4uMcoSdOqq5GGsgxqvc + GVjtT/mNOOb4pipF0PPp1mq6FwocNCKrXpOblzOc17ZNs4q5ryr/Yp6i76cbF4WbUNftou8m3E6q + XIc1kNU04ApU67HOd2PBNsUwG26wKioxMPxXWMHE3AoZG6fXgTYQNzPrKvnNwKY/n7ZVXY2Bbb55 + 2lpENWl2OtTplnKogQYMYRrT9XxByUdv432awEcDyAm31WyZx656XE5MKxROBcPZgBkzgAYSk44V + E0GcgplAFoyb8kFaiKwQzTxt6E5iW5qn5ugOqR62Q3H+mIpz20+Y84BcOtyJiXpr6VfBBmpHBAPj + Iz3pLlPl9aefYdLAEY1kcjC6iiiWCHGq9pn6N167jU1bez3SUvSBGTvsynyii19zwjKwEbTC6452 + 59laQrnB0cfcKGg666brdElP3ccWd9VAOa0Ya/NuWFJP7fq6CVTtBSu0mHnOaXg57XBBNS/oqHK3 + agYOM1bM8bpcnldTkiJpF2WPpxQFFf2oFWhPn4L4O2ujnpP8vWTiUJU++qq0LG92iuB9YSmz45xy + t9XWS53JrWud1lLnjjXJHVbX4eRKt1ucXIE/PZxWHRLiw2nVQz2twoTpkRxV/ewHVNadlIV1s8B0 + Dvo7Yx9Ekub+yNccgdk81fZH9EAbQr6zQ8qDr0cCdXUtgOlVEf7HuhdUre3JXeqTvZc5h2Tva5I9 + e7PUVWPPfgXBoZkNWoT2ddmpy+QPieQhkTwkkt81kTxV7mCEXnRrOlnzG/aj4X0LnX0krPN0sQlK + wsqn3U5ue2ALA/h6YOe5t0ibhtu4mpWnVVJeG2BX8o3nVbdNvtH6W4j/5Dk53hx7+rMn5l1yTqcg + 3dgV7psk8d3cPP0O3Nx/SbE75XjwhYY67qnr4cFWGbW7NncpCJzDlVOpsBz3zJXGDkctP/pRi+LF + tqn3VWKUF1i74GFKqv7mVP3lmJneyg/tZLC6ilZn1aa9/9OTwwXHwwXH/V5wvIWp7/32477WxcO8 + QflFG1iHi5a32E01KH7eK5dVeJla5V8D7MHdzLz/YgTbl93/bBYlLWOduuSwm/kodzNtN3e/90Rl + GBzJCnBkkorDpVG55A6XRr/m0mg9yj70XRQMWnGU3+/N0Y49jPJXie6QEuJPCJ3J2a1tZuCLnGCh + v/uHW3ADltbgjKCPYk/jm13ZxIJNqN/QAjO7ZE75dtsSrZr0rynW7J+p8t3fp9pbxVZx2qjdftQr + ofaKegT3BW510o9OMeMM1iTmwfKUaJCwjxBMouRyKlXuBqZtJ5jYvvAUs3Xofk4Ysck9GEGMZM3C + oOvKQ9msc2sMIre+5VC229UHZftmdYIh+A3rBUPzO6TuZbvZNsF3vpiwzZha7ieU7cvuKXSNvo/7 + CmXb67VSbM2Mt5oDs0r3rLC9C6GTdI230lp1XgeScBqKAD3Ft9gZqUJc+x6JTQ7dWJAuAxaztftb + aAv/isYFq3vQ1g2VGhZMUuyunTsovpltzHjUH+Can9CsoWpRMNY9iGF70KpmvjPW1Yz+fq9ZKJ7u + ftVCT8Qdr0Bju+/bFlKifd+4sEymoaLGdQE3z3V3C0or8ZwFWdsId8L6T1EDt1S6fwNQSwMEFAAA + AAgAMDB4U+5YYoJZDAAARFUAAFwAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw + XzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19mbG93X2xvZ3Nfb3BlcmF0aW9ucy5w + ee0ca2/bOPK7fwXhfrCzUBS36AJ3BnxAkN32CvSFXPcWhyAQaJl2tJElHUUldYvsb98ZkqJIkU6T + btJHagJBLIqcGc4M50Xaj0haLrJiNWvEcv8fg0dk/84aADsqqw3PVmeCjNM98ipLeVmXSwH9vCo5 + FVlZxOQwz4kcVBPOasYv2CKGuS+zlBU1W5CmWDBOxBkjr168a7tj8h/GzIN4L0hWyDEVL/9gqSC8 + LAVZlpzkagy8h6e1wilJWzCyYgUDMgDJfGORNz7eI4eNKI9ZLdTA52pgyeXUM1qsWE3WdENS2kjY + ack5op2zM3qRAVpaLMhlBkubM5KXACdbSvpSBJfhUg3y+G7ZvuTlmohNBVIl2Rr4LMhhsYnIYb0p + 0hcCcM5zFpEjmufq0y9ZKiK1xCyNyJsKeUTziLzbVOy/lEfktwJ6BhrYJeUFwK4HChP90HAWw/pZ + TBFDUtGVjVpjXb+lK7bQVLzMauHNZu9TJlHX7dyjPGOFAEmcwb8slbL7lfMSKPq3EBWIp4LRTHfB + Y9nwlP36HqDXvc7XpXhWgibp7jWtEoYfPSqqrGJ5VrCWhrf6uUW2dUIsOC1qOcdeuk1oS/b/GxZY + f1XmeZ9xL4/fvIVuxjXjXpdv1Sj9rJ9eMXFWLmyI69VabGPr4fEryYZncj+EZ2litEgpXych8gCS + pkArQxzH7YA1KHpeE1qTRH0cDN6RWatT49G70d7gKK/xGbpbpTtp1fLkpM/5E4t5kc/cU9BXpcsn + tUB+FZvTU/1vMEhzWtfkWV5evixX9ZuKKetTTwcE2nA49F8RuXZSmo54IAf/r2xIfVY2+YIUJdqd + WlBQT9jJsMFhZytUiwztQb6JyQsYwCio/qabmHKG46lWcQ0kRQggEcRigQXBKVOGANCuUCFoeqb6 + gb+0wB6ezRvBNI3T7IJyLYIpWNgMholSdSgCYXaD1lWaTaDaLJOseNlUsQIjUDotmD8tJSmYuCz5 + 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 + veyi2nS0tufVbamsAIuCyg1/6BYVtcAS8suvpV0b9ONn6E7ZdcF/z1gH/+/3/36m/T87kJlf9lUy + U8xMxt/IhABL3/mx38QE8UDG80Klq/nn8SqFSHkkgdHReUqxSpSZ7UjWWUcGCYwvgn47m/e2BqRn + rwRM3pFdAqsh4c0PJyc2gd7+uqE/1PcW4C4uCBEkRn5q8cO7y3ruPvZETI/kvBWsL8DiTtTc3pby + O7UhQJFFCI4GPB+Igp1A7KjyctVMHGGsDBkMRd2goyTFsr9W/wk2KdDr2Hd1LOnvNbhI6JogEpt/ + hkPDWzvucw1if8i3T/K+Fe8P+X7o613KxX+WG154VvUI/3t8Dw6srnlko37ZY45qhoL7/cU3Cthp + g/8ewU1nC1DCFWdT7ncpeyX3GquSxekKd+P3Jyb3+ica+/OFn+x8Af3+Dk4U3OrnPh0OuDPbHwIM + FvJm4I+49X/v9vRvtvnegXH42dfbP0G9/fU21bMi3u+jm89+H/2L9tFVKrqP1eX/AVBLAwQUAAAA + CAAwMHhTC3ivLtAHAADZIgAAewAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJfZnJvbnRlbmRf + aXBfY29uZmlndXJhdGlvbnNfb3BlcmF0aW9ucy5wee0Z227bNvTdX0G4D1YKRXaLFtgMeECWrV2A + NA2ybMBgBAIj0TYbWdQoKo0beN++w4soURfXCdJ2GyYgsEQenvuVeYYiFtN0OSvE4vC7wTN0+GQP + IDtm2YbT5UogLzpA72jEWc4WAtZ5xjgWlKUBOkoSpIByxElO+C2JAzh7SiOS5iRGRRoTjsSKoHcn + l+VygH4lxH6IO4FoqmAyzj6QSCDOmEALxlGiYWAfvtaapmItJmhJUgJsAJHrTY097+IAHRWCXZBc + aMC3GpBxdXSF0yXJ0RpvUIQLhTtinEuy12SFbymQxWmMPlIQ7ZqghAEeulD8RRIdlaJa4sHTqn3B + 2RqJTQZWRXQNehboKN346CjfpNGJAJrXCfHRMU4S/fYTjYSvRaSRj95nUkc48dHlJiO/Yz4wWD5i + ngLSfKBJ4E8FJwEITgIsUYcZXtZpGnLrc7wksSF/SnPROk3uIqJo5uXZ44SSVIAJVvBDI2W0nzln + 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 + J7HInsnM/Stockn0r6Dd5xW0eiL7kRC7Ts2CLvLvCdNPgf9HCQq2dUwG1eOnEn4DcayJaTdANEr2 + GPz2GHwT6paG3wLOrpzjEaF1/65df4b8hM+Qrbjdnxo/y8q4ZVL7U+P+1PgRT42rvPpgB8VUhBc/ + +VHxcz8lftanrm1p8tmiNsRrMdQ+wXQVuFn226Fbx+ln+YuEG0s//NHAE1kC145B8UFOoDrvxgc5 + LhHawE7fBYA9Gp7AMx+hfrYSJvOSOSdA6095Klvf57zH/j1I3/0hyHse+lTyNY5/nhZesZ32J0Au + t8IcGFwyzmDJYciVKXOYsM8igCB8OZGGdmP1usoNr2+s3lqHbqeywkse1ApiNGseTHSBr/Ky6vX2 + YHxrPFZet8Nl5fVo+Mww/A7wqLxu1pn/znBp3VS3oKby+jb01DX6IVBUeW31r4vwau63V3Ng1tCW + DbZ1JXRxqOlWVqt2wUETTkMR4Kp9uNPSKu20l8Y2Exla0nnAYrZ0fwh05l/RuGD1qNZ6yFqjgkWC + 3bTxVNU3c4wVh/qJD/Nb0TVSLWbFsxaksD6RVPPdmX9qrv6wOFDJdHcsqCfijngQr4fGhFKjbeNC + y2UaJmoAM7fOdE8oSy/xnGVouihVNqTaJ4DpNqG2Loz2YAhM/noDArC1R0UahNlGsiFYj4t6XNTj + oh4X3RkXPTQK6kFJD0pa5qAHJT0o6UFJD0oeDZR8EwTZEr74G1BLAwQUAAAACAAwMHhTlbKcOh0M + AADxVgAAYQAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf + MDVfMDEvYWlvL29wZXJhdGlvbnMvX3NlY3VyaXR5X3J1bGVzX29wZXJhdGlvbnMucHntHGtv27b2 + e34F4X6wPciKW3TAvQY8IMjW3gJ9Ibe7wGAEAi3TjhZZ0qWopG6R/fadQ1IUqYfzctY2sYAtNnV4 + Xjw8L7J+RsJ0ESWraSGWo38dPCOjnT2A7DjNNjxanQkyCIfkXRTyNE+XAsZ5lnIqojTxyVEcEwmU + E85yxi/Ywoe5b6OQJTlbkCJZME7EGSPv3nwqh33yX8bMF/FZkCiRMBlP/2ShIDxNBVmmnMQKBt7D + t7WiKVlbMLJiCQM2gMh8Y7E3OBmSo0KkJywXCvC1Aky5nHpGkxXLyZpuSEgLiTtMOUeyc3ZGLyIg + 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 + o+05sqrQ+xtsLz5O1hxyFxDOghKE3l+DcuyxMvLUT4SxRZAmQpnd909z4IxtMM5WC/6NnNeOnAkC + mz1zpmv6FmE/e/Ds2R48q1rXpz99pnP0bI6gVd2kIG3PobWoUQoS9iQa2d+TaEulJ6VS2eNotixo + /wBcScCeQNvnE2hVR3egRRCXpQ1uDKsC4o68GCbW8JdSt18LMfwdtji8Ymxeci4/Iucy/ezcFqW7 + VoAkBkTfjzgiFQspbv9Nl3N01sKKBxY/mBTAwooWVlwZVsTATk4VxHYIZ9VT4KXRxwX+qTsvoKkM + piFQFrLcf8iS3Tbm3GV0U3h78/OcSyCejBxnY/fgT9zCu4B0tgogdjvQ58ZFMTetX5xpkP3wAv1K + 6VsP9zudDqOZEj4NpJgGAhHw98CPJR64L6Dijv25uz8apr6ySLEZceT4F2+rcC1Xtr6Sa4AMF+iq + RQ4tcrgp5BAXev0goYYUHRLQpwlmkbyWhT9BxqJ5ZN/QvMXRdqlDFrizhTcL3JUELHC3z8Cdya8d + bk4P4kbxDsJ3c5L5KFZyeQvWHT5Y16igFqs7sJDBtP4Wq7NY3faOAM53N/YgoEXV5GVRtXWjaos9 + /Y4H4GgsVsLUapLve/C9GECLYoufLYGfXe48fhbFOwCfqQpq0TOLnln0zKJnjN9dQ89alN0EFQue + EQueWfDsGVXCLHhmwbO9BM9qbu1wUvf/A1BLAwQUAAAACAAwMHhTJzcI6ZIZAACh+AEAawAAAGF6 + ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29w + ZXJhdGlvbnMvX3ZpcnR1YWxfbmV0d29ya19nYXRld2F5c19vcGVyYXRpb25zLnB57V1vb+M20n+f + T0G4L+wcHG+66AH3BPADbLft3uK22yC7DfAgWAiKzTi6dSQ9kpytW+Q++82QFEVJlCw7tiPZI6Dd + WKLImeGQ8+dHUt+xSTD1/Nl4kdyd/ePkO3a2tQsqexuEy8ib3SdsMDllv3qTKIiDuwTuR2EQuYkX + +CP2Zj5nolDMIh7z6JFPR/DuB2/C/ZhP2cKf8ogl95z9+v5zenvEPnGufyR/JMzzRZkwCv7NJwmL + giBhd0HE5rIMPIdfD7JNQdqUsxn3OZABjdwuDfIGV6fszSIJrnicyILvZMEgEq/eu/6Mx+zBXbKJ + uxB1T4IowmZv+b376EGzrj9l3zxg7ZazeQD1eHeCvglW5yGruvHRdsV+FwUPLFmG0KvMewA5J+yN + vxyyN/HSn7xPoM3bOR+yt+58Lv/6yZskQ8miNxmy30KUkTsfss/LkF+70ZD97sOdE1XZNzfyoe74 + RLbk/rmI+Aj45yMXW3BCd2Y2rVp9uHRnfKqo+ODFSelt/seEi6bj9N23c4/7CfTEPfzjTUTf/RxF + AVD0zyQJoXtCKM3VLfgZLKIJ//kPqD0u3PwYJL8EoEnq9oMbOhz/LFEReiGfez5PabhUv9PGKl8Y + JZHrx+Idk3WT0JTs/19wC/9hMJ8XBffh6rdLuM0jJbiPwaUspX6rX7/y5D6YmjU+zB6SKrG+ufpV + iOEXMR7sbyliVJe60YNjIw9qUhQoZRiNRmmBB1D0eczcmDnyz5OTz2yc6tSg/7l/evJ2HuNvuJ0q + 3U2qljc3RcnfGMIbloX7BfRV6vJNnKC8/OWXL+qfk5PJ3I1jdu1FycKdf+TJtyD6+g4G3zd3Gf8W + cjkXxRcnDK5er7eqIBNyYYG+MToRr/5fsGDxfbCYT5kf4JwUJy6oLrwPgx9GvSRj6uFcMV+O2Hso + wF0YFsvsxUnEsbyr1F9VMsEaoLewFaNa6FQ5zWEFOOe4SeJO7uV9kL3r453Iu10kXNF44T26keqe + C5h9PSiWBPKGJBDeXuDMK6ZUoFqzyWZRsAhHspoEey6t5j+GAvlSaqPH1+evz53zvzvn34+UCogX + QzdyH6Al5O4i5RJ5wMkfZmuYG0Unx6Nc+cC/82ZQXvy7UAQFd/otWWHuHXjkuXPvTx4Bo1D4VpgG + yWn2LPfKlNe9ZD4dpcoixar0fZypO96d8jvmOJ7vJY4ziPn8bqjoHCqGhgYhw1z9p+zsf9nHwOdS + K/HCCkaOrABakn8UnuoKoEBWWaGQ0Q4UM1sttiWIxLbEH5IpqfyCNamsThA5i3CKfyGrUNUgV89Q + /4rUfOwITXJ894FfMByvusSjHHqO0iJnJgefrajoMQ4WDRSwp8Q+sg7dXvbS3/72FSzYTOqikPGK + VzPxT0T/ytdhhgwHfbjTH4pOOmXsO7S6HDVazGo3K+r9ousVlsgBmwS1/6Xv4vXD+fcXdWbwh/Mf + Lqps3A/n/3NhM4q6gacyASPZiwOTR/0QOP3r6fRUv+WGnvMIwsdxOGY9HO1n538/O/++l0ks8BMg + 2knkLG9U2zMf9Yas54bhXDH36t9x4PeMhiZowrCNUqETXQhdOpgXowUM1t+vPuj7i2guRoLQ5gpt + HYEWuXDDvelD8f6XrC+9mQ/m0NC45N6RfiQYxdniATiIS73WT7X8HSr5R9DR/kVxdI6goUHPMhxA + Fpa7Q9YH3vqnw3xDjzbNqmuwbnRBy3WPK0iIF7fxJPKE/X4/rWrXnE1G5iuON+0NWd3jcrtP9s6V + 87/qHWwV/hvCeLd22qldc7IpRT8GWxQtnewBdvdTpiF5j6PyrZs+DJczNVxAw8YlOYk3Bj1jVIFg + jF+pHOyE34MbYVItf69Ndum1m/5bOVDPcE6zEi7fKY1o86emvaadN2KU17YgJwIUi/ijLJHbYLp0 + 0oblbNOMb/NFCwH4eJARCw1b53SDQQslN331W/BoFjDMo/B8ijodLhKpzEWtGpYFiRpvaTyjLA1Y + nEh5ztCa+80FfzHXpqMDm2jhD6LU7wbRcfdh/Is7x3gmNaanBge60lJDo3vw1/WvrNcgNNZFwLNN + FrEjwmTpQrOb1+fnQ/b6/PsvF7mpRwdxA+Olsa2moa5fPx5mRm+s/zrN1R+5HvBRijQHlXXJOWac + j69OV/M5HgN353nmDJ9sqtXBuDmo0MBhWexNKfh+TxSA05RvKeLJIvLx/qD0as4nngoP5OSk8KJZ + QjxbbehxVhC2/oL1X5kGJ371V96iPb3KWXN4XrLuT6/CKHj0cP59pbNIIyWWV1YbDdVU2u6n/lPJ + ASn43bd85vklLrvkdOfTGyt95UxhIOB6K/iGuDRiknGIc1MWmGKBKRbSvGAc8ol354Eqp9JIg1ld + s4oArdL6DFXgXxhwYnXFSnQdwtOtEnixqXqxF9us4LDY+Mq+LFJh9uhl5i/EC3S2QWBJkOYktMAr + pa1TBUWqzEaaJQvsqpBV+5Uv4f6UTVTGSMwr7A2bLOJEZkAFwXcLfyJSBZg+0SnZENMcUyFWmY3R + 82K5ARCZcGY8fyFYc5LgK/dFU8ZdJu6isKCmxI0S0MlQKDeTGTYWu48ca3MxFVNqReXXoNujBRfp + kCy7NmTC3oq7fpAWHSJ7bjaTphk6lbHAwtAbMabV9DPgBZqfLQs6ILsopeA2COZY93/K2cmRJe1Y + YsUDH0qVh4kX+vzRnYPnxe/cxRzzxzAVAymJB6p9C53LUWzfJFuxIBvmBSO3hjYDuL7iSbQ8e3MH + 9SmvB/PoIWIGadpHUCGNgsjd6NQZjKD8hCO1QRaNGfdAESJ7ehAFoUY8Uh8I+zXILFvWrpywK4WW + TXbP0f8vRoPon8S5BrNk76jkt+Sm0Gw6V4qRz2uou2DLURuN3IZAAm5QQWwZ6Iy4XaVK5lEAPsgc + uiVXez4kLepePx+y5oLNYlldMutZHOVyzBdZKk0KZQ51YhtGXsYGekFZraDG+TwfXpH7zVE6V/DP + V6bcdBVlMzS25RZKL9aZkHFtjqBUVTbvj40YpVQMtGM8dx9upy77Y7gc/nkB/5QK5byIrJ/0z6qs + legSaykzRtUFdUn0tGY8ceYBKAhEQQh7OcEiwXCs7OPuw3tOdafoQcveXs+Ltrybc6Qp6dWypJc5 + e2g0LhYz9IW2tw9iIobeKQB0Az1zDsUkGkgzMf6rf+fB9HQm3JKzR8/FiEhYlDMRbpxpO9x/GtpV + YWy9O2SW7ABoZY524dZUEa/BzoFZgbW8umGfX63BZt4kj9BFc8rzeXlOzTc9zv+0zGulKscZYbZp + EHMvYzMRUy6UjVJZLTrAt+7k67hiripMlzlRrhbNIEeMYZaGVXPjsCAk2aQ9ZD2UgBxEsZfo+xno + FXh97zhM3PlouCqQu11SoLzHWDMNWqydONwwBnlmgC3ji4vGAYY1viDMdF3MdFtoJ0xJhGt2zMWz + dCPhmjvCNbeBN1bgdegNNMXrOg7MdR2T6zDKZU7wHXefMTLle149Vnal80m4NT0XvE3uibqaLMbK + dzm5KuSqkKtifW2nroochcfireAyotf4vx+67res72GggTI8i6r5t+OehEwzKq1+GTeigPYKxyCX + hvtJUNcwE0d5N1rjkY1yWuMhqNh8jQeOxh0s6ch7/4e0NCPPGa2/qAxV9YstWHVxcMspNlv0UHB5 + 8KLwsR3hozkUd7uYYR5MaP2Cvmj9wrPWL8jJ/1CCpXQFYeLO4pffufsZqPhN+LW1Owe0RW++Z2BN + l6dxC8eQ723ZFl6LxlLquGO239avlDqm3bv7272bmZqdbdl1k8k9bdo9f931RHthgQC6DCtlsNcN + vXvYTltndDvuAku33mCw9f7vc3bO/r5yuyyK4Kghh8Z7YlfshJWCzJOxwSbYTCkIFSFUhHa+ygYP + B16hna/NkZfabJV+uwXwC216pU2vlCvqGE5Em14JNNoNaGTYrW6HzWgb5l78jK2uFeFseiz5CncI + zw2/Ev1QiGvFxlbQiKpoLG7Nfta97STFICCRh9ZDn33luZCgzu3PhPycAMA8C36UPwT+WVFARl0p + HmjTTlVTU48AJGwE7+HsAUErDDb00URqeuDzP2A69fyvYyHm/NRch5DgtSFKYn11OwgGXiJmT5jm + rOy0VuGc6WXgYjjbNsY306uZ75pee/NhdYMv4Eim11OdsNcGIes61oJFptdmmGTV27vAJtNrq/tb + 8Sr7X1kf6BGzZYFtnQnlMqp6M6llqAJwErmTxMFRu6uoOTMx9vjZbAKnESe4c/icP+QP/J+OHt35 + ghdnMGuwXagFnQHz1sroeqR7GD0LuThTfw+mUJVFqOh5Yw31RiPr7UpbU1D03WKrkqb18VXVEWvu + v8Zr1xCr4GjbMKuhMiURlRDKvD+Zj1dTLRnmBmEhuZkzqy8eiq0Kt9DK+VzEA/uBJ58fpb3NKK4P + 2OQ3sXRhVOtKcPKoccluBI6lfm9rDFkitPXhpGVIUWQpL4osLXw1iCxNw3JwUebLIyaaFAp4KeC1 + 9AEFvGsHvCUjSLGvteMp9qXYtyb2tRr+F4+D6yDJVwbFDTa24dq4ZK9b2tJHj15YWPukVo3TnrZu + BRVNdqPl1Iz2oXVsbZGtR9u1Dw2MoDGv4OIhNH/lJZNlF1m9du2FdR6yUTnIz/hV2vJ1ODvidniY + WhjER3PwK23uMq4ub+6y27B2O4OC5qabu0Th9vuAz9nXdYUsygPlwsh7cKPlCiCCPou4cgtYrjOv + K8SIVtmdToGz/OYwJExoHxPap2jNRjLEZt4jP5P/sDsO00vEGfcR2ZlWsZCjiM7Jox1htCNMN0g7 + wo5xR1hFmke/14K9YMakPTYDrFJB2g1Gu8EoY9OW3WB0aqB50QawZ20AE2bqsEJrZXofQ18JyYnv + 3YhPHXB86TMuRweB1OoBASMdM7O2fm4XMEJwBMERhwdHPP+jLuvMxh3wQ4ARyYdkA7hYK+lvF0Rb + PwtjJPGvLz8qr5hJuhnQvXFKP8Mnjj61T4lySpTTB2XogzLtS2I3jKR1bS1IbR9cxpq+MnNggSzl + iylf3NV8sd0iHHr05sy4jz4c1y+H0GnubL/fBreez30d+jLhmx0I3exDNegpPH/hPtZyDJnpln1w + ZpU+UnK7Yz6BrZMpuU1fn9nf12cshmRnn6FZBwKgr9C0FhnY30YFHBVt2JbQ2O622xGuYqMpjlH1 + fnfc4EJiM+8Mi6OgJIexiXooLkVi9/L1p/T2mghISSqEgDT/vg02n2pfpcSzLjMgBdV3Ohm/hc/g + WJSOQB0CdXYF6mBHbx/TySEGhwTp5BgjRGeNHJauqgVwDn21ZnOfONUY2pVwhBklQpkIZeogylRl + pQ4+stacC4gNyLrz5oQvEb70oviSTRcJW+qYJ2DrYMKWCFsibImwJcKWWoct1drczni/ioF1ESWT + +e44veuhSYq9Z8JIVRtp2O+IHGDd7//18/Vr5vpQ1J16i5jduvjIzfnHBDsR7ESwE8FOBDsR7LRT + 2Kk+raWrIciJICeCnLqZaCLIiSCnDkNOpoU64IDbmaltXKkxTteBAJcvfEgWgUcve2xWA80g9Kdj + RtnWz4T+0LFZBGAQgLFtAKO59Wi7W5VkHpViA4ltDGZUCqIdx3xZAIpEJA3PUodyukWkosRkilR8 + Fl8GkU34nE9jzBPfZpn2KbvzIpgKFzGGZund69C/VE76MWMXlOinRD8l+inR36JE/xppBV1bC/L9 + lMinRD7lDCiRT4l81vVEfqUFOvTAU/B+OwudkPPIUTmFvW4egXa38YnxH2fhJVT1SXDwwYuTK6EP + W/3IeGUbBBaoqylYUKFxBBJ0zODb+rddIAGadi5j3qZfG8fydfABPgdZ4T/0ZXHCJAiT2CImUWFi + W4NTrDJcrXcTcwJeB5gocN5i57Dq2+MNXMRer4cZ+HcFOWVZVdSOyOOPXH7aJFaP7xiEO+zHd5eC + 5PioAQa1OUJ0Hbb2/lJ/VFy1KQyyyPhLWeZFWdrpIGoiDIMwjB1iGBVzw8t9I7yCoMOERFZP0QSY + 5AGTlSkbXUsLgBIkdCzCJcJQNnVxU6UhXOUI0yyEqxCu0lFcpWCoDjZQxl3fQZTwqUCSpvzRm/D9 + BMnlABgel1fpgYF9mDM5cIEA5TzL+AUdb80AAwaYYuCoA9mdR5lpuCLysWtGGjlKZShw0TgWsIYC + z1nGRLDXKtjLOj8Q3tUxR8zSsS3DuwiAIgAqB0AdGPbU3n0s9TN8u/1dTTuQrihvuHZozt3IB56B + tITvd+lQk2VBissrpG5Hq4KqmiDvSF1NFwXZVYl8JPKRyEeyvkY+Ei3SeYlFOnaL1wYfrIkdabcn + Bgx8kPQL8a61RCfPeDu2DK/hiYnFN559sY3L5vAOpsUkc7Ubie/dmClZDGGIT+aLqYkXqBpUCblE + g5buMFpXQ+tqtr6uxj7qX25ZjZ2eA19VUzX16oppUU2jXIaupAVrao5w4cxGbmeqF7Ru5ghTEebM + QOtmaN1Mh9bN5G3RwQavgld3+sijBPyuF4ER9P4CQhYOFVmoVDACFzpm0W093HZwgfYTE1RBUAVB + FRaoYrVhar3D90azsD5gUWK/PQ5fC2AMqCMVkEjuis+JZQLSH3RDfo4atmi245j2FRP+QfgH4R+E + f1ThHw3yMLqeFkAgtK2Y0BHKpRA6QuhIrvgxoCMlS3XI8TJMA+J8Wik/xwtjPjESWnsFS6xkWD+B + /v4Snjf8DnoZ+qisZpv4SnUjx4CwmM5KXo498xEYljIEYzS0LZymmZITYNMxJ8PW1W0HbLoKsbyV + w/YMp7taoKUwvs2fJQRqR1DObTBdOmnDcu5pxrf5ooUAfDywWykgomrGN/i1EHaTBnaCZbPAVpEp + HAGW1gmwOibAqlJD2wBZrWmj2+2Lx+KbCZIXwUrGSVMMq14eHXbIq9CvJm65OkP3E0/YdUrc+zBX + 3MDGYjybSMBCaVkmGMEA0Jssy58QLApp5WcECyAXPIR/ZvdM6UT2ONUvwtIqtcroQjwyYI7ilbgk + +xFHhOj1Uk+WPTWk/1rRnvaDGpy53tZq0qDTCixXcNAQJ6lSdMIKCSvcFVZYpXMvhxZWUXTgeGG1 + lSPEMIs21s1K6gpbAB3arcO4Im4keHHjuCRVMgIYjzD3RwAjAYwdBBjrDdsxZDfSL2K2AXEsJydW + +2kbY4TruICHiwxude8VYXoHZ9dtXU2YHm2bajEKdWAAVNeAozUNQbtdq9nzgaN6ebTs5LY1QJ93 + zUCfbEOU50vNx7vuLfjmNizIzBNaMaHnYkG6ga5iQlX8Ywk6D44wDsI4COMgjGOzXVFdxTgIpCCQ + gpIZBFIQSHGIIEW9ZTqGSDr7yo4a7QvpzDqSqe0H0dCKz0WgYz1VRJOeX3z5kyDxk6Cp4erLjb7f + mH21keXEwaQ4WhnAliTacH1jNtiyGoQQvt17k3vxpk0GOFHOuI9BD582DYttvV7kz+z7miWSadtm + XynKdChWOqXEqLp5RGNXuj0G9vRpy/bDfO3aALhiOj8skPCtnlQ28bALU1KNs10o2Sa/26ICBCLS + xsDdbgw0Ic5+pZ2k3YCEw3b9a6RNzekeA8TMGFVFhXmz+PRKf400x4Kkqcm5GYgRwZCafIVgeeKG + ICm+36PFDefdevzEpaDtrSTtE5JrZuLVTtNGJ2egz/r8ozGwFnJ993/2RY2iHpbjewQJZVsHk2NL + ju3Gji1m+jNRebHwp8og5ib+b5396ddluAuN5Q5EIJ+5+ydoiNtWBzf1XpQ1L6fxhCSa+92iOklG + +07jaIkz38xBaDfWE8vZxZhvGp+yYWH+QNz3wpKlvBPf6/VEnTGTvDPFOwO/dsMFj61EgfZ8TLzR + qdcVUizIO7RDOnIJoixrIFJZJ1WQvBmkU6drewR2aMXmka3YxI7e/uLMHMR2SAssc4zRCsqGOThd + TQvWTWbT89iILErFjnB55WpvONUWWkl5hImvXMKCVlLSSspurKS0WagDjqmB3yBsCyhWE0wH4bqH + xxME1mkIrFIrCQHrmCNg619CwAgB2+vSrhpzQuu7CKvKLsKqto1VrbbkbXercbbYCKkqsd5Jl3o1 + LBWEhEq1FZUKwpcCpUwFI0yKMCnCpAiTEvS2DZNqkAHTtRAkRZAUQVLdzEQRJEWQVCchqZKBOtzQ + uXCUibFlGZzHOYyZlz1tvOazwdl2tX8KSn+CLvLmH7w4uRJ9v5uPFa9u9Rjgqx2dUV6pfQRCdcz0 + 2/qaQCg6pJzAk03Rj7YBHo0tYitgkXXtTLv9POCmUvybHYJekkhbT0Ffx+uTh7ex68uP6WHlxoFl + kk0QCL6PGWDzUHOjnB160G0QyEIHmRME8WIHma+aDlpwsvkqEg8T9dhk5iaUpOrs8wZpGV1jCxCT + I4RCtuUOp3pDgMkRZk0IMCHApIOAyQpbdRRBtTP1YsW5UzXd4KmAxjF8e4VWVHbNWKEI4S7yq+m5 + kiVqlybmHZg1XUK8fQzgSMv29myumNtGXV7Apop2j8RvIdSlTDht/cFrp1t/NG7Tr7AotOGHMKs6 + zGp9BEgc7JUhP9swce32TTMGr22FcqOu8Wdw15dahzzVQtJW+J65fOlPmnvxQRiDy2d80vaoYZ6U + YdV92KBhZ92I53bKTCvlX+Zf1dgw816hLoRHER61KzwKp5cdQE35iPmQ4KE8Z4T3bCV9pBtpAQSk + Ju1x6iEfPka0GWpTcGXxomyKbOilsymExhAa00E0Zn1LciRB8H8BUEsDBBQAAAAIADAweFPXLQZP + JQwAAFNYAABrAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAy + MF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3JrX3BlZXJpbmdzX29wZXJhdGlv + bnMucHntHGtv2zjye34FkX6wvVCUdNEF7gz4gCC77RXoI8h1FzgEgUDLtKONLOkoyqlbZH/7zpAU + RUqUnTRJr21MoLVFDefF4TxIxs9InM+SbDGpxPzgH3vPyMGDNUB2khdrniwuBRnGI/I2iXle5nMB + /bzIORVJnoXkOE2JBCoJZyXjKzYLYeybJGZZyWakymaME3HJyNvXH+rukPyHMfMgPgqSZBKm4Pmf + LBaE57kg85yTVMHAe3haKpqStRkjC5YxYAOITNcWe8OzETmuRH7GSqEAXynAnMuhlzRbsJIs6ZrE + tJK445xzJDtll3SVAFmazch1AqJNGUlzwJPMJX8xoktQVEM8fFi1z3m+JGJdwKySZAl6FuQ4Wwfk + uFxn8WsBNKcpC8gJTVP17dckFoESMYkD8r5AHdE0IB/WBfuD8oD8nkHPnkZ2TXkGuMs9RYl+qjgL + QX4WUqQQFXRhk9ZUl6d0wWaaizdJKTqj2ceYSdJlPfYkTVgmYCYu4SOJ5dz9xnkOHP1biAKmpwBo + prvgMa94zH77CNjLVue7XLzMwZJ095IWEcOvHS6KpGBpkrGah1P9XBPrHRAKTrNSjrFFtxmt2f5f + xTzyF3mathX35uz9KXQzrhX3Lj9VUPpZP71l4jKf2RiXi6XoU+vx2VuphpdyPfhHaWb0lFK+jHzs + ASbNgTaGMAxrgCUYeloSWpJIfd3b+0AmtU0NBx8Go72TtMRn6K6N7rw2y/PztubPLeUFXeVegL0q + Wz4vBeorW19c6I+9vTilZUn+SLioaPqOieucX50yMHgw5PcFU76oHO8RaPv7+9sAidQLyU1HuCeH + /jevSHmZV+mMZDn6pFJQMF1Y5bD4YdUrNmYJ+op0HZLXAMAoLIt1MzDmDOGpNn+NJEYMMFtIxUIL + k6rcHCJAn0OFoPGl6gfd0wx7eDKtBNM8jpMV5Xp6xuB9EwATuepQDMLoCj2vdKnAtRGTLHheFaFC + I3DmajR/WQaUKa2Fq5+Pfj6Kjn6Jjp6H2gTkwIJyugRKKN24lhJlQOcP3hp8o5zkMnTg82yeLABe + flaaoXxuRimEzhh4ldA0+cQ4CArAUxkalKTNO2fIjG0aZL8Na2NRatX2PmnMHXtnbE6iKMkSEUXD + kqXzQPMZaIECi5HAwT8iB/8i7/KMKavEhgjCSCEASupL661BAAANshaQRQfAbKptWpJJpCW/KKGU + 8UvRQFImmBQQEAyd0YF54toLR9J+oowu2ZjgKjUQK7XgIm07twEp1Kr0gf700xVEqYWyN48eYzlR + CgZcXTEcQM8gkFAjQp5h+GRomtI9nWP3hRks40YEEQRQfDa92F4cPR9vClovjl6M+yLSi6N/jn0h + zBC46TIQVsUMfMDQFsS8BHE+34xGZhQtkmjFeImrZkL2cW0eHP1ycPR8vwGJMVTgW1oUqeb98M8y + z7SNY8PUCfwPr2BR/H72xvRXPJUWp8zLtopwyQQFRun5AIAGF42Ck0UGwcagKKi4jFSWBiFnUS1B + g2VHy4Paml6hMb2D2R+M27YfAqHhvsfs9gOfMQZkABINRoFLaOVEgU2UfOYLpHzdt6KlI85dSNrL + wUPaft3DQllNy5gnMhK/nvXRtf1CaA+Jktl+QDa97tK98ZqP9uTaEpAq/AtgVXsNZOS3TenOwQp5 + aV5DVOHrqHmBpnXTWKObO/SOOh/AUjrQSwmsedLRkxwx3LdWHCjGeqr14Gf8EhICm2v1fGe2O8PO + B8dyfXtZVtDAswRBduWXLqc6NrfnSq14NU9thQVdXhq3VKfPEdd5HGCm1xSyFwd/ZNJsXmVDXmeB + wByjy8lLmmJ2Xbv9kR14aqQdQuElZI/mqZEQCjUDAnmWqMpIFm0qoSPnPx8dBQTcJ/734mLsrCFT + VwytkRMfusAQMa+DxrNPzLeRg5/TBITpFD/DXlxqsUzclH/kCAuhzxWCM1HxDPuHHaWpGClDi0LS + 5+vRSKW7H5PBoe0HysPPrqO5OXQcOrzvOPibQyjrVwkui0NTpofaVx66rhPGd/32zaHXv3ZgLb97 + M7jpBKpW9jNlUOlqBXy7qY9bSKpkpplwyF9/lQKUcnuiLFiczBNI/jVNomkSTTNsbEdnzF4JPwAu + /IYJOuKtgewKQuKQVUSfktqk/Kpq02px3ibWq+9t1Fytb6Ha6Gsz9c5UNvBXbA0gUBDqkliuVHJM + 4qoUaosHiHMyr7JY1kJYH5o9pwLruJnkTJWbxt90CQBVzO9FklUy5YtEfsUyScrqJbIXS0XAJCiU + +JQU0qaI2kIgJV0xxEax1uxQ0RsIoDleMVnvNdsHAZEuXPZmeQ0aoHi08U31FoQuyRAYKtMS9w3M + O5AFyC/WrcmUyjIcTPM8Rdx/dbdfQs++SkeUBMovDQ+ODwLaiqYQiNmcVilukIErBFZEAtYxhXlm + qLZrJVYp2YblaG0eoBcGqc+Y4OuD4zng0xETNwoL3BSt61rJhfLPsjg1ewNghO46V9agQEvCEjAE + Ln03yq1XJDKbywBgAsjIIqNcX6+OWi7FGohBqnQGNptQYSd4Ob6oyQv0fLplmu6F2gaNyCrV5A7l + Oc6rb2esYe5elV/Kc/T2dO2icLPotl0M3CzbyY/bsAaymQZcgWo9tvnuLNiuGGZXDVZFIwbG/AYr + mJhbHGPj9DrSBuKmY331vhnY9eQTX8HVGejzyhNv/bR1qO1SOyicOqiDCoxhktLldEbJx2AdfBrD + RwfICbHNjJnHvnJcTo4XCqeD4YzArBlAA4mpxoKJKM2Bb0h/cfc9yitRVKKboI3cifTld2qe7pDj + YdvV5k+vNrc9htn+L6XrHZv4t5QeFiyhdSIwNN4ykI4zV/5/8nkwT8AlHcg04WCVUKwQ0lxtNg1u + Ar+lTby9AfHUfGDMDrsys+jj1xyoDG0EXnjd4Xej3grKDZMhZklR1213nahLeuI+epxWB+WkYczn + 47CintjldReo2RJWaDEHndL4atLjiFq+0FHldtUMHWas6BP0Ob6gpSRF0i7InlQlClr6dgvQfX0i + EnpP1fad/O8VE7tC9MkVonVF4zWQ4Asrli1nkX5rbFcx41uXMd4q5o7lxpaVsjuD0u0WZ1DgEXfn + Trvcdnfu9GOfO2Hi80QOnb73oybrlsnMuilgOocDb9SDGNLd5LjPAZbNR2uTQw+0IeQ7O5g8hXIi + UnfQIphVFd6/tQs+faDNYh9vKzsepGLZ5Xd3ze/srU5Xdfv2K4gE3QTQIvRQN5X6DH2XO+5yx13u + +A3kjifKKRyg/9yYQba8h/1oeN9A5yFy1Gk+W0c1YeXZbie3PdDDAL4ebg95wJA/gxpt4vC8Pn2S + stsA23JvPH+6be6NK8FD/DtPyfEK2PPvPS/vk3MyAemOXOEeLYfv5+D5V+Lg8auI7cnGU6gt1BlN + WxVPpLBoXZzZVg84RyMnUmUl7oYrnZV4AUuB1n/92Htqsjst6aF6/9ORzVRtwzlt0qGywroFz0Vy + 9Weh6o++zNzW+BqP1DrOaa6P3ZZ1m5OHOSLZXVDcXVB82AuKXoN7hBuL97H/H/Om4623pnaXIG+x + O2pQfN/XIbeHkl6EVunXQfvD3bJ8nKIE25fd3+wWJ56xTn2y2898wvuZtlN83HueMlAeyGLwwKQX + u0ufcuHtLn3e59JnOyY/gT0VjFhpUj7uzc+ePYz6d4S25I34Qz9nclJbmxnynieYV99txRJ3NOiT + 3MX4arctsTwT6metwI6umFOsbSrImlm9T2lm/1pU6P5M1L3qs4a7TqX2Ld3mtJfGEzj3v9WJPXq0 + gjNYb5jNyrOdYcY+QjBIsquJVLMbWDadQWL7wnNI79CHOSPEJndTBDGSddP7vqsLdbNOnjEC3Pq2 + Qt1ul+XX7atl+4bgV8z6Dc3/Q+pdt5tNE3znqwWbjMlzw6BuX3bToG/0Y9w4qNuD3gXF1s1Ymzkw + q/SBFfbgQugkW+NttNYcvYEknMYiQk/xWHsaTVjz727YJNB1Rfk8Yilbuj9DNgtXNK1Y22t6t0Ja + WDABsbu27n2EZoYxm1F/+mp+pbKFyqNUrFUQw+ZA1cx2b3xrGfrjXohQPN39UoSeiDveVcb22Pci + pEQPfTfCMpmOijoH/m4O61b4tZUEziJsbXU7ofz7qFs9tenfUEsDBBQAAAAIADAweFN84IK0hAwA + AE1nAABnAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8w + NV8wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3JrX3RhcHNfb3BlcmF0aW9ucy5wee1c + 62/bOBL/nr+CyH6wvVCUdNEF7gz4gKD7uAJ9IZdd4BAEAi3TjjaypKOotG6R/dtvhqQoUpTcPJxs + spWA1hZFzovD4W+Gir8jcb5IstWsEsuDf+x9Rw52dgGxV3mx4cnqQpBxPCFvk5jnZb4U0M6LnFOR + 5FlIjtOUyE4l4axk/IotQhj7JolZVrIFqbIF40RcMPL29WndHJL/MGZuxCdBkkz2KXj+B4sF4Xku + yDLnJFV94DncrRVPKdqCkRXLGIgBTOYbS7zxyYQcVyI/YaVQHX9VHXMuh17QbMVKsqYbEtNK0o5z + zpHtnF3QqwTY0mxBPiag2pyRNAc6yVLKFyO5BFU1zMPdmn3J8zURmwJmlSRrsLMgx9kmIMflJotf + C+A5T1lAXtE0Vd9+SmIRKBWTOCDvC7QRTQNyuinY75QH5LcMWvY0sY+UZ0C73FOc6OeKsxD0ZyFF + DlFBVzZrzXX9ga7YQkvxJimFN5p9iplkXdZjX6UJywTMxAV8JLGcu585z0GifwtRwPQU0JvpJrjN + Kx6znz8B9bLV+C4Xv+TgSbp5TYuI4VdPiiIpWJpkrJbhg76vmfUOCAWnWSnH2KrbgtZi/69iHfoX + eZq2Dffm5P0HaGZcG+5d/kH10vf67i0TF/nCprherUWfWY9P3koz/CLXQ/coLYyeUsrXUZd4QElL + oJ0hDMO6wxocPS0JLUmkvu7tnZJZ7VPj0elosvcqLfEemmunO6vd8uysbfkzy3iBb9xz8Ffly2el + QHtlm/Nz/bG3F6e0LMnvCRcVTd8x8THnl6e0KN8XTMWhcrpH4Nrf39/WiUh7kNw0hHty2H/zipQX + eZUuSJZjLCoFBZeF1Q2LHla7Yr9IMEakm5C8hg6MwnLYNANjzrA/1W6vicRIAWYJuVhkYTJVeEMC + GGuoEDS+UO1gc5phC0/mlWBaxmlyRbmelilE3QS6iVw1KAFhdIURV4ZSkNqoSVY8r4pQkRE4YzWZ + Py3HyZTFwqsfjn44io5+jI5ehHrq5cCCcroGTqjdtNYSdcCgD1EaYqKc3DJ0+ufZMllBf/lZaYHy + pRmlCDpj4FFC0+Qz46AodJ7LLUFp2jxzhizYtkH207B2FGVW7eezxs2xdcGWJIqSLBFRNC5Zugy0 + nIFWKLAECRz6E3LwL/Iuz5jySLyQQBgpAsBJfWk9NQSgQ0Os1cniA91srm1eUkjkJb8opZTzS9VA + UyaYVBAIjJ3RgbnjOvpG0n+ijK7ZlODqND0E7Wz+/vtL2GZWynE6DBJLi6s+EKuK8QhaRoHsNSHk + O9z/GPqYjC9n2HxuBsvAH8EWACS+mFa8Xh69mG7bdV4evZz2bSkvj/457dqDDINrX4CwKhawmMe2 + IuYhqPPlejIxo2iRRFeMl+j+M7KPi+zg6MeDoxf7TZcYYz0+pUWRatkP/yjzTDsrXoh9IJDwCrz7 + t5M3pr3iqXQd5Sf29IZrJigISs9G0Gl03hg4WWWwWxgSBRUXkYJZsGesqjVYsPSsPKrd4lf0incw + +6Np24lDYDTe7/Cf/aDLqwIyAo1Gk8BlBN61jXztfECz/tpDqKzmZcwTuUm9XvTRs5dOaA+JksV+ + QLY99vled06MDnbaxsgV/gWwXjpNP+medRnxYH55aR5D4OWbqHmAk3bdzLO7rfaOOhuBkx5oJwU/ + mXl2kiPG+5Yvg2Gsu9oO3YJfwJ5pS63uby22N+xsdCxXTqfIqjfILLuguPKLL6nevtpzpdaSmqe2 + wQJflmbB18gy4hriAGX6kcIG79CPDALlVTbmNUAC4Rhdz36hKQLPOqBO7NhcE/UYhRcArMxdoyHk + MKYLQBFRlZHMZxTmIWc/HB0FBAIT/vfyfOqsIQO5x9bIWRe5wDAxj4MmZs7Mt4lDn9MElPHygnEv + LbVYZi4anjjKwqbiKsGZqHiG7WPPaGr3kUFbEemLouikMpBOyejQjgPl4Rc30FwfOqESnnuh8/oQ + Mt6rBJfFoclgQw1eD688LHv4RQfF69G1F8dbu/ycQSantXiELd7NeNSm3ZgfANdPUpJS5tFlweJk + mQBa1ToSDT+RX9jMooZ3nWKeAh38hmgSadadbLgraUjI26dpm1Wjb5t+p6QuE8dYzbNLtoERkCPo + 7Eh6JjkmcVUKle0DE06WVRZLeIwpgyk/FAjtF1IClYGY9eUzAK4I+USSVRI8RCK/ZJlkZbUS2YrZ + A1ASFLI9Sgo5a0Rlk6SkVwypUUw/PC46lwQL8YrJFKDJJAMiQ5ZszfK6a4Dq0WYt1tmoRunYGZKV + ElNI8wx0AfarTWuCpLGMBPM8T5H2n34mHnak2J4qCSBy3R8WOgTwK5rCxsOWtEqxVgJLH0QRCXjB + HKadodk+KrVKKTY4vJVPYtQBrU+Y4JuD4yXQ0zsE1owKrI/VqY6UQsUjma+YdBGczV1JyhtU15Kw + BByBy1iFemu/R2FzGfBMwJxYbFSU6LVRa9FaAzEol87Aph4ResHaWe3NPqjn0wX8uhVQMjqRBfpl + seoM57WrSNIId68cIuU5Bka6cUm4qLHtFyMXVTp4sN3X9GymAVegWo9tub0F66thCiywKs6dPa6h + Ci7mpll4cfox0g7iwo++FNAM9OPlrAu6ewPrGDgzoNzrAjM1S+l6vqDkU7AJPk/hw+vk7DCNOc1t + X9YlLdfZC23F0FxgUtPR9MQtc8VElOYwj4DFsEoa5ZUoKuGjhYlr5S6woYx4C8CB15CC7TIFsxeK + KYCWMuJMTdhfy8ACNm7VRMcmSAQyXuQq7M2+jJYJrMQDuTseXCUUgWCaq2x9dB10z+GsszUgHdAe + 3MQRV26offKakvLYJtDZXzd0R49OoOzuDiGCg8iPVn7scFnP3NuOcOCRnDWCdUUPTJxmdhbld2qK + Y4osQq85jS9nPUu8FWUcU37dNGNHGCvoBn0hJWgZSbG0IfvzSzhA1UfIM/Z1pTb0Kv37DgD5lUHk + tI4NCZ2D6Z9l9vGEM48awnqTEdwRnn7lLMKf9TZcnd4Yr3bC1Vviyi3eOJSs9XWDkjWEjqFMPZSp + hzL1XcvUuPd+IzXq516Zts5tF9aRnWkcj7y9BCKzn4Lep9Zty9BKQfVAu4d8ZofoZwNJI/VaRgTT + ona+BzvzbpbXdBtEvTeyHfDJbfCJXfJxzbZvP4J46wMYi9GuDub7vHHAPgP2+Ztjn1dquR1gVNqK + gFrr0r41sm/hswuMNc8Xm6hmrGLGzfS2B3YIgI/HNjTr2Okn26Q4q2vYUj+7w9fwIVaxb4oP0ds7 + mD9z2IhvNbx47tixT8/ZDLQ7cpV7EJzZz/3FI3B/eJT79S362WBfVUxu6/MUgW/rFHobZnVKvK+k + biVWGpVyJaF1JZLoUeT0SZZ07/dCiaJsW/5Ds0OXFYJULNzm6m9W1JvpxkhdfJt3GNoS2EzuX6Id + 3oQZ3oTZ7ZswnrM9wGsxd/X7v+erNDcqKQxv2Nyg9GRIPOC7Nk38nlkI3+v2t3slZ/f4s/aH27/o + 4+PQjrEOFB0KPs/8hSAZ5w8kGD8wu+LwdpB06eHtoPu8HdTeVp5fYqq3Q0FX5c6zUWzuzEhPgdt7 + CbLvfwYDmOy3Ot/MOhAoavZEc87b5phte/bkmTqz7DOFz/AOaWUzg4+YTw7vNw3nh0/m/NAKnMOJ + 4XBiOJwYfhsnhu5+CcybnfDBjgupiC++8QPD535W+ExP4Lo2uSee2mBSkwI+iQCF9mU0Pade9S96 + bQFa+HNbJxJkto6/5F84AEsJQ/3fPUI/psQ2j52TPBpyxpK+UD+/Bka6ZE6Bv6+I3+h8n3K+/Ytm + oftTZneu6TeSedX9p4LMbYf5BjD6jdA1LtGCM9izMDzJjWWcsU8igoB1OZMmduPaNoyD1x1xTufQ + 3WAQvOSpmyBGM79S3Zdm1JeFbOuQduNco75ulnPU11+B5Ovrepv+t0b222zdAfDr625Av2/0QwD+ + +trpHx/g5VdQmzkwTrxjg+1cCY1kNN3Gak3FEzThNBYRLqKHOLlqIn43grPJy1WdLyOWsrX7K3KL + 8IqmFWsHlM4DrxYV3JPtpq+ecIVmdnGDV38Jb35ctEWqw6BYN0cK22N4M9O9ob/l5A+bqCiZbp+s + 6Im4ZcKC10MnLVKjXSculst4JvLyBxfWuadNtZcEzgI0XZQq3i53m2TjdpnEV/OH+SZyK2l3Px95 + avnGI56BDKnNkNqoa0hthtSmudqpjRdtHzrReaxDFsNwyKyGzKpjDobMasishszKmoghs3qwzKp/ + k/1LD3U6UrH/A1BLAwQUAAAACAAwMHhTb7MUFVYOAABajwAAYwAAAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3ZpcnR1 + YWxfbmV0d29ya3Nfb3BlcmF0aW9ucy5wee1dbW/jNhL+nl9BpAfYLhQlW2yBOwM+ILd9W2Bfgly2 + wCEIBFqmbTWypJMoZ91F+ts7Q1ISKVGOk9hZZyMBbSyJ5AyHw+HzcGjvd8SPJ0E0G+V8evTPg+/I + 0dYuaOxNnKzSYDbnpO8PyPvAT+MsnnJ4niZxSnkQRy45DUMiCmUkZRlLl2ziQt13gc+ijE1IHk1Y + SvickfdvL4rHLvkvY+UN/8xJEIkySRr/wXxO0jjmZBqnJJRl4D3cLaRModqEkRmLGKgBQsYrTb3+ + +YCc5jw+ZxmXBX+VBeNUVJ3TaMYysqAr4tNctO3HaYpix2xOlwGIpdGE3ATQtTEjYQztBFOhn4/N + BdjVUri7XbNP03hB+CqBUSXBAuzMyWm0cshptor8txxkjkPmkDc0DOWnnwKfO7KLge+QjwnaiIYO + uVgl7HeaOuRTBE8OVGM3NI2g7exASqJ/5ilzof/MpSjBS+hMF62kLs7ojE2UFu+CjDdqs88+E6Kz + ou6bMGARh5GYw5/AF2P3c5rGoNFvnCcwPAmUZuoR3MZ56rOfP0PrWe3hh5j/EoMnqccLmngMPza0 + SIKEhUHECh3O1H0hrLWCy1MaZaKO3nVd0ULt/+fM0v8kDsO64d6dfzyDxyxVhvsQn8lS6l7dvWd8 + Hk/0FhezBW8z6+n5e2GGX8R8sNdSyqghpenCs6kHLSkNlDO4rlsUWICjhxmhGfHkx4ODCzIqfKrf + u+gNDt6EGd7D48LpLgu3vLysW/5SM57TNO4V+Kv05cuMo72i1dWV+nNw4Ic0y8jvQcpzGn5g/CZO + r7OPCZNBKBseELgODw9bSxBhCRKXD9wDUed/cU6yeZyHExLFGIUyTsFZYV7DdId5LgVPAowO4col + b6EAozARVlVFP2VYniqHV4342AKMD0rRmoVhlIENG8AoQzmn/lw+B2vTCJ+kwTjnTOk4DJY0VQMy + hHgbQDEeywdSQaidY6wVQRS0LrtJZmmcJ65shuNYFc38pblMJM3lLn84+eHEO/nRO3nlqkEXFROa + 0gVIwt4Ni15iHzDcQ3yGaCiGNXON8nE0DWZQXvzNlULxtKwlGzTqwKuAhsGfLIWOQuGxWAxkT6t3 + RpUJW1dJf+sWXiLNqjx8VDk4Pp2wKfG8IAq45/UzFk4dpaejOuRoijhG+wNy9G/yIY6YdEe8sAHX + kw2AJPmh9rZsAApUjdUKaXKgmC61LksoibLEB9kp6fyia9BTxpnoIDTQN2o75V2q4q4n/MeL6IIN + Cc7LssRSzjRP+Y6tyPffX8NiM5NOZDGOL6wvy0DESvo9eNJzRKkBId/hKsjQ30SUucTHV2VlEf49 + WAigiS/lU7xen7warlt7Xp+8HrYtLK9P/jW0rUSlgNumAm6eTGBi9/WOlC+hO19uB4OyFk0Cb8nS + DKfCiBzihDs6+fHo5NVhVcTHiI9vaZKESvfjP7I4Uo6LFyIgCCppDp7+6fxd+TxPQ+FG0mf0oXYX + jFNQlF72oFDvqjJwMItgzSibSCifexJswcoxyxdgwaxh5V7hIr+ih3yA0e8N6w7tgqD+ocWXDh2b + hzmkBz3qDRxT0NKI6esk2XwSRNket8jK8nHmp4FYzd5O2uToM83Vq3jB5NAh61435d5ax07FRjUM + KBX+c2BKWUdnYHcMESDBBdKsfA1xOl151Qsc19vKFcz1t7XWZQ/8+Ej5MbjSqGEnUaN/qLk7GEa7 + K+xgV3wOS6yutby/t9qNape9UzG5rCrL0qCzKILqig9NTdVqVx8rOd3kONUN5jR1qWJCAUG9VGEh + aJneUMADRvteCVXTPOqnBZIC5RhdjH6hISLUIuYO9FBeNNoQ5M4BgZV3VQ+B7JRFALnwPPME8ZEQ + iVz+cHLiEIhd+L/XV0NjDpXYvK/VHNmac0oh5WunCquj8tPAaD+lAXSmQSD6rW3JyTIyYfPA6Cys + O2YnUsbzNMLn/YbR5AIl4rpspC3QopOKWDskvWM9DmTHX8xAc3tsRFN434iut8dAjZcBTovjkuq6 + KigemzES6jeD5m3vthHya+BgzID6qd48MTIw6ZJc66shAcz2k9AqEyQ8S5gfTAMAvEoWKRBsNaoK + HVrVvYA28BOCUWyvKKSjZdGGQMxtPa6Lsve7LquhsSms1XhVuWu2gldAOxTVEt5LTomfZ1xuHYCw + lEzzyBeIG1lIuZeRIFuYCE0kqSnnYFMASEUUyYMoFxjE4/E1i4Qo7SkRT5GQQEucAnWkJBGjSCQ1 + JRldMmyNIqNpSFHEFCyV5kywioqWOkSENfE0iouiDnaPVvO1oLYK+GNh4D8Z8tHyHfQFxM9WtUET + xio1GMdxiG3/1aT1roWvN7oSAMhX5SEYQJBf0hAWJzaleYgbLxAeQBUegDeMYXwZmu1GdisTasME + 0CgqRibo9Tnj6erodArtqVUEN6AS3Gwr2JPQQsYsQYFKBgpOZ84s6Q2yaEZYAI6QiniG/VZzAZWN + RVAsg+pAEyMjSKuNapNYq4iBOzMqVpsbbiOgG7O/WivVeJq8QT0FsI1OpHEHsfN1ieNq23GplHsU + FQnTGIMmXZlNmMiy7hc9E3kamLFetixZDQPOQDkf63o3JmyzG+VuDcyKK2MdrFoFFzPZGl4pvfGU + g5gQpY1VlhWbMXRkYwCNirZ4OLIC+kZVGMFRSBfjCSWfnZXz5xD+NAoZK1Fl5vK2jdQJi1pLoQ0Z + mhFMXRYsS+IyO2PcC2MYX8BxuBXrxTlPct5EGgPT+jagIo17D7CCV8fwnpjh6XOs3IjNRLAalivG + QsQkGIba3my/jC+OCDWxjJijL71pAJP4SCysR8uAIs4MY7lf0Lt17MM8sj51iIU5gCcZ6oq1uE3f + cmu7rzdgLa8e2AOPFYebC4uLuMJrBrpm2DFFj8xbS8RoNDmqFLMFGORlI52kNQtVW3WyWURtY+pf + j1qiQC0QGaa82zR9QxktXjttUcepGUmK1JnA8+Uz0OWd0hj2OaHRpLaegpVEyF1Ddg7VjrNrpisO + DcjzK+N3sB3MetapywvgP1JaYfufxV9MyE5ZygDzTkqFs3rjRZ2npVMFLjcH23kg4L4jYVNzqTr6 + Hm4Mv63o+54wuc3Pu118dW2wiw8xrNu531dcZxmvl7NzX4gA+CYDK2JE3CFu8samFv+QVdZpIEuA + cPnhG8wYID55IemC554k0DLuEy3BWj7s98w1DlaMJp1/TM5BV6BG51VFvYR4py8dzw67e/JUjQdj + I1fmJzmyUM23YStKfxyy7yCUvDaAUPpOmmmzQ/0VxN0mxtIEbes4RZtDdvCsg2d7CM+eGCa9kTPy + CKPWWrBUm7r6bQNa7giOjePJyisEy7CyWb/1ihYF8HVfR3F1UDBYp8JlkToQndML3IUjMXmwKY5E + V7cIf+bwEg+ivHruGLOtn6MR9O7E7Nz28Wi76Fe7Fr17KHz34v3sALLcoq/3a6/Rce18QCu2NfbB + 34geZrhdKruYEdrYCVffHqq2yl/svrg+RmfVsp7lCH5xqzqW32OS31kojdqwaHkMpa6JLuCRe9Ld + SabuJNN2TzKZnraDM00P8vhv8xDU3VsT3cGoDXaxyia+whGpKpaPNIbQKPbNnaTaMoQtnOT+h7Oa + UNZS10Cz3W7St3+ISywORwLqH5WLaHeiS3h9d6LrMSe66svR86W/ajnldJY9Pee9AKkfBUZ/ZDYI + UN2nVlKLfeuYq85cW7iqNJQp9gE0tRrVJ6So3emwLrX5tVObWiztkpn7Cj8t49YlM7tk5hMmM6v1 + cWeJTMr9+QtPZT73LOZzTA/aFsBnwoiQC4WAYTwAqG1EqCUTV/yYXBsSw595Oxf4s5aSE19NAXl1 + IJ6hD1OiW0fnL0+GpTFvwOUP/oFtrpmRRbBmCqquPiZnoP+Anmv+ct7DEgeVWo0Uwl5gdd1DXgBq + 3whv44RMUgbLFAYlsZb0I/aZexCmrkfCvmY0Wwdp8HogrLFW3Q7kwEtk9Dgpe9bc+W4jHsWlAdki + gG3MPoprMxZSXF8DuBfX7br+3xvIr7O1Bc8X18NwfVvtXeD74trqNybwam63VmNQOvGWDbb1Tij8 + otqtrFZti0JPUupzDyfR1tNgVbi3gza9bTGl46nHQrYwf7Fw4i5pmLN6NLFmz2qt4FKsP7ozXeaW + Q4vruvwphPInbGtNWayJO+zYwvoAXg1za9yvefhuiYnU6f7kRA3EPQkKXrsmKaJH2yYqmss0TNSg + DCaaM/NShZc4xuwri8iuNJa4+/CLe5CHu3jCw5MlT8wi9uIEX0dZOsrSUZaOsqirRll2TVeeKnlS + Cuz4UcePLGPQ8aOOH3X8qBiIjh/tih/tQe7l7oNn/pz5116QeHQyAVmZR5c0AHIQhAFf7fQoWiXz + TmZWgt+3Z6eyyqmmpcK/5tessFsZuZkzwTUozNVgiYet3p4RJRVPjKrOhvKbLHnGXtABNd3+F+Lf + qmpYiMdI/GD1Ft9Cq0uqDeBXoJlr3GFXR87WiNwTgrhujnQcUV0bHCNbGxm7g2XdwbLtHSwLEjVl + 19GqyhPBKtVN42DWt3Nurfutsu4E1ia0dc2Ktw/HsTZbSPbsgNaxQNBWy955divPgDV9jX9xZZPk + zSdUzprBwbf4Lw/Ce/Gl+JfxbZU9zwlpw7V3iSFNt/3NDhn+3sF/eXUpIku/NjnVJqLjN5coekJS + VMrsklNdcsoyBl1yavPklLa0dRkq61h3GaouQ7XuBJ+5nO8bBRXabZDDwv6OaSbWvXkMoPOJuWeJ + vv8jlfgNdNAOZtWPCRIqjI8ERmlNhNYCymVZINJR+AttSHZmwZJF3T8IugtCah2tXeWNrML2hDTa + 3bYji+ra7J+1MSNQlx/q8kPdDw90CZwugbMJtbMuQPuQummP6/uGlceVCW2I+W9QSwMEFAAAAAgA + MDB4U6URXVs+DAAAJlYAAGoAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1 + XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL192aXJ0dWFsX3JvdXRlcl9wZWVyaW5nc19v + cGVyYXRpb25zLnB57Rxrb9s48nt+BZF+sL2QlbToAncGfEDQ3fYK9BHkugscgkCgZdrRRpZ0FOXU + LbK//WZIiiIlykmapI/UAlpb5HBmODOcB8n4CYnzeZItp5VYjP+x94SM7+0BZC/yYsOT5bkgw3hE + 3iYxz8t8IaCdFzmnIsmzkBylKZFAJeGsZHzN5iGMfZPELCvZnFTZnHEizhl5+/pD3RyS/zBmXsRH + QZJMwhQ8/4vFgvA8F2SRc5IqGOiHt5WiKVmbM7JkGQM2gMhsY7E3PBmRo0rkJ6wUCvCVAsy5HHpO + syUryYpuSEwriTvOOUeyM3ZO1wmQpdmcXCYwtRkjaQ54koXkL0Z0CU7VEA/vV+wLnq+I2BSgVZKs + QM6CHGWbgByVmyx+LYDmLGUBeUHTVH37LYlFoKaYxAF5X6CMaBqQD5uC/Ul5QP7IoGVPI7ukPAPc + 5Z6iRD9VnIUwfxZSpBAVdGmT1lRXx3TJ5pqLN0kpOqPZx5hJ0mU99kWasEyAJs7hI4ml7n7nPAeO + /i1EAeopAJrpJnjNKx6z3z8C9rLV+C4XL3OwJN28okXE8GuHiyIpWJpkrObhWL/XxHoHhILTrJRj + 7KnbjNZs/69invkXeZq2Bffm5P0xNDOuBfcuP1ZQ+l2/vWXiPJ/bGFfLlegT69HJWymGl3I9+Edp + ZrRKKV9FPvYAk+ZAG0MYhjXACgw9LQktSaS+7u19INPapoaDD4PR3ou0xHdoro3utDbL09O25E8t + 4QVd4Z6BvSpbPi0FyivbnJ3pj729OKVlSf5MuKhoepJXsAyOGdg72PH7gilXVE72CDz7+/vXwBEp + FZKbhnBPjvxvXpHyPK/SOcly9EiloGC4sMZh6cOaV0zME/QU6SYkrwGAUVgUm2ZgzBnCU238GkmM + GEBXSMVCCypVTg4RoMehQtD4XLWD5GmGLTyZwTw0j5NkTblWzgR8bwJgIlcNikEYXaHflQ4VuDbT + JEueV0Wo0AjUW43mb8t8MiYuc34Rrp8dPjuMDn+NDp+G2gDkwIJyugJKOLtJPUucA7p+8NXgGaWK + y9CBz7NFsgR4+VlphvKFGaUQOmOgK6Fp8olxmCgAz2RgUDNt+pwhc7ZtkN0b1raixKqtfdoYO7bO + 2YJEUZIlIoqGJUsXgeYz0BMKLEYCB/+IjP9F3uUZU0aJDyIII4UAKKkvrV6DAAAaZC0giw6A2VTb + tCSTSEt+UZNSxi+nBjNlgskJAoKhMzowb1z74EjaT5TRFZsQXKMGYq3WW8TlgvNBFGoR+rp++eUC + QtJSmZdHbLHUi4IBv1YMB9AyCCTUiJAnGCsZWqL0RafYfGYGyyARQbgAFJ9NKz7PD59OtkWo54fP + J33h5/nhPye+eGUIXHUZCKtiDkt+aE/EdMJ0Pl+NRmYULZJozXiJi2RK9nEpjg9/HR8+3W9AYowL + 2EuLItW8H/xV5pk2aXwwTwJ3wytYA3+cvDHtFU+lgSlrso0gXDFBgVF6OgCgwVkj4GSZQWRpNErF + eaRSMogvy2oFEiw7Uh7UxvMKbecdaH8waZt6CISG+x4r2w98theQAcxoMApcQmvb528j5DFWIORp + 7SGkTXkbCdvaAbf92oO0rGZlzBMZRV/P+/Daqzq0h0TJfD8g27q7dK+81qD9sFYsUoV/ASxSr75H + flOTzhiMipemG2IC30RNB1rKVWNcbtzvHXU6gJUx1isDjHPakZMcMdy3FhAIxnqr5eBn/BzCuc21 + er81251hp4MjuVy9LCto4FmCILvyS5dTHVnbulILWOmpLbCgy0vjZerUN+I6BwPM9JJC7uHgj0yK + zKtsyOsMDphjdDV9SVPMjGsvPrLDRo20Qyg8h8zPvDUzhCLLgECWJKoykgWXSsfI6bPDw4CAN8T/ + np9NnDVkaoKhNXLqQxcYIqY7aBz11HwbOfhls+U1jQKHOmcIdXSocbrDOU1AFp26Z+hhRaJTbNR8 + qYU3dVP/kSM4iIquQDgTFc+wfdhRgAqfMuooJH1hAA1eRoIJGRzYPqU8+Ow6rasDx9dDf8f3Xx1A + eb9OcIkdmHI9fKcyzgPHg8PwjkeH4TqXP/hseeGrwVUnSrUynRmDmlZP8btJc9wKUSUujQYhNf1N + 8lvKfYeyYHGySCCv1zSIqvvqmogoMYWNSeiU2DutD4ARv2EGjthrILtEkDhkmdAnmTYpr3zapNr8 + uqT6RNwm5Qq6TUP3tpF3tNP0X7AN2CCUb7p8lauJHJG4KoXajgHknCyqLJaVC1ZzZn+owKprLimr + 4tC4gC4BoIrZuEiySmZskcgvWCZJWa1EtmJhB5gEhXKckkKaSa32kq4ZYqNYGXao6GIfJMMrJquz + ptQPiHTZsjXLa9AAp0cb/1FvF+gCCoGhjiyxxjd9MBcgv9y0lKNkXXMwy/MUcf/d3SoJPXsgnakk + UCxpeHBOYBRrmkLgZQtapbiZBe4KWBEJaH8GjoSh2C7VtErJNqwwq9RHTwmzPmGCb8ZHC8CnIyRu + 6hW4gVlXoZIL5UNlKWkqeTAyd+kqa1CgJWEJGAKX/hXnrZcXMptLJz3sxocJV86rV0YtL2ENxKhS + OgObDaOwE20c99J4La1Pt8rSrVCaoBFZlZbcTTxFvfp2sRrm7lS4pTxHf003LopWKt6yi4GbVTv5 + cBvWQDZqwBWo1mOb786C7U7D7IDBqmimgXG5wQom5ta2+HB6GWkDcdOvvurcDOy65amvXuoM9DjZ + qa/+6Qy0HejUqWo6oKDqaUpXszklH4NN8GkCHx0gJyY2+jCvfbWyFL0XCoXNUN6gEwNoIDEVWDIR + pTnwDcks7oNHMOGiEt0UaeSqyZdhKS3cIsuSQtwVzj964Wwvb7OvXko/OTHBaiXdISi2tdU+NK4t + kF4uV856+nmwSMB/jGVMH68Tiil3mquNncFV4Decqbc1IJ6CDGzTYVemAX38mpOKoY3AC68b/D7P + W5K4MS3ElCbq+tiux3NJT91Xjw/qoJw2jPlcFpa7U7v27QI1dZ9CiwnjjMYX0x6/0nJtjiivF83Q + YcYKFUGfHwtaQlIk7frnkZV2IIfvpqLbr3cCfAdQ+07y9YqJdmHnVkbkuC5idhVdm0YjG5fWtyzw + 6krBp/rgCwuBaw7kvGbWrg0mNy4OvLXBLZP47Stgdy6jnxucy4Bf253F/DwppccCdmcxP95ZDGYj + P8lBzO74xd5YMOzMvTwOfPEQokt31+EuZzo2G61dBz3QhpB9dph5HAVBpK5gRaA2Fdq/8f2WZsFP + rikQ7qO02OVrt8zX7B1DV3L7dheEgm5CZxG6r9s4fca7ywV3ueAuF6z77i8XfKHW+Bi94daMsOUM + 7FfD+xY695FzzvL5JqoJK0d1s3nbAz0MYPfQTlX92cpoGyOn9dGLnKINcF3KjIcvN02Z0eA9xH/w + TBpvMz3dpdPXy2w6BUkduoJ6qNS7n4GnX4eBh8/9r082HkdFoE4/2pP9ocuB1q2Qa9J45+ThhZRD + iVvSShC7cwib1AOfQ2gilhEcN0lMWWHxgCcNufpjQ/XHREZTPeQbL2HuOXU4sgjey+HC7sLc7sLc + /V6Y89nbA1ygu4P1P857dzfdAtrdyLvBzqJB8T3fzWuCwdQqrTpgj+4K34Nk6vh82d3AbsbuGesk + 7btNvsezyWc7pIe9Qyhj1FiWQ2MT13cXCuU62l0ovMuFwnY8fBT7Bhhh0qR80FuFPQV9/esu23My + /PWVE6m0VmWPHSUB++mpE0vccGz/xZiZz+Mv8L/aHUAsfoT6wSEwpQvmlEJbyp1Gs3cpfOyf8Qnd + 3++5S/XTMNepg76jO4b24vgJTq9vdO6MHg0qdVhpmH7Ks45hxj6Cu0+yi6mUshs6th294fOFx2/e + ofdzNIaP3KgQxMysm4/3HcDXj3XgihHgxmfu9XOztLx+vlp6bgh+rTTdEPwGmXX9XG3T7q2P07dZ + kudUvX6+7HS9b/RDnLLXz73eZ8Snm5A2OjBL9J4Fdu+T0Dm0xttIrTlbgplwGosI3cQDbUA0Ic2/ + FWFTQLcV5YuIpWzl/jbUPFzTtGJtj+ndt2hhwdTDbrp2oyI0CsY8Rv0NpPnhwBYqj0yxEkEM24NU + o+ze2Nay84e9HKB4uv0FAa2IW163xeeOZ/j4PPQ1AymUB70rYJlgR+SdI3A3G3b3A2qrC5w13dqU + dtKC77PK9dS1/wdQSwMEFAAAAAgAMDB4U+XrAuFcDAAAhF0AAGIAAABhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL192aXJ0 + dWFsX3JvdXRlcnNfb3BlcmF0aW9ucy5wee1cbW/bOBL+nl9BpAfYXihKWnSBOwM+IMi2vQJ9Q667 + wCEIBFqmHW1kSUdRTtwi+9t3hqQoUi/Om5M2rQS0tihyZjgcDp+HVPyMhOksShaTQsz3/rnzjOxt + 7QJhR2m25tHiTJBhOCLvo5CneToXUM6zlFMRpYlPDuOYyEo54SxnfMVmPrR9F4UsydmMFMmMcSLO + GHn/9nNZ7JP/MmZuxKUgUSLrZDz9k4WC8DQVZJ5yEqs68BzulkqnNG3GyIIlDMwAJdO1Zd7weEQO + C5Ees1yoim9UxZTLpmc0WbCcLOmahLSQssOUc1Q7ZWd0FYFamszIRQRdmzISpyAnmkv7QhQXYVeN + cn+7bp/zdEnEOoNRJdES/CzIYbL2yGG+TsK3AnROY+aRIxrH6ttvUSg81cUo9MjHDH1EY498Xmfs + D8o98nsCJTta2AXlCcjOd5Qm+qXgzIf+M5+ihiCjC1u11rr8RBdspq14F+Wi0Zpdhkyqzsu2R3HE + EgEjcQYfUSjH7hXnKVj0HyEyGJ4MajNdBLdpwUP26hKk57XCD6l4nUIk6eIlzQKGXxtWZFHG4ihh + pQ2f9H2prLOBLzhNctnG7rptaGn2/wvW0v8sjeO6494df/wExYxrx31IP6la+l7fvWfiLJ3ZEpeL + pehy6+Hxe+mG13I+tLfSxughpXwZtJkHkrQFOhh83y8rLCHQ45zQnATq687OZzIpY2o4+DwY7RzF + Od5DcRl0J2VYnpzUPX9iOc9rOvcU4lXF8kku0F/J+vRUf+zshDHNc/JHxEVB4+O0gGmQf8yYykH5 + eIfAtbu721WBSD+Q1BT4O7LJ/9KC5GdpEc9IkmIOygWFUIVZDZMdZrlSO4swN8Rrn7yFCozCNFhX + DUPOsD7V4a6FhCgBRge1WGJhEFVaQwGYY6gQNDxT5eBrmmAJj6bQAW3jOFpRrodjDNk2gmoiVQXK + QGhdYKaVKRSsNt0kC54Wma/ECBypUsxfVsAkTFyk/NxfvTh4cRAc/BocPPf1kMuGGeV0CZqwd+Oy + l9gHTPaQnSEXykHNfad+msyjBdSXn4U2KJ2bVkqg0wYeRTSOvjAOHYXKU7kUqJ5Wz5wmM7apkf3U + L4NEuVXH96QKbyydsTkJgiiJRBAMcxbPPW2npzvkWYZ4jvwR2fs3+ZAmTEUjXijAD5QA0KS+1J4a + AVChElarZOmBarbWui5pJOqSX1SnVPDLrkFPmWCygyBg6LT2zB3XWTeQ8RMkdMnGBGelqbFSEy3g + cqa11fjll3NYaRYqhlp8E0rnqzqQrrLhAEoGnqw1IuQZLoEMw02mmBMsPjWNZe4PYBUAEV9NKV4v + D56PNy08Lw9ejrtWlZcH/xq3LUNGwVXTAL/IZjCvh3ZHzEPozter0ci0olkUrCAx4UyYkF2cb3sH + v+4dPN+tqoSY7vEpzbJY277/Z54mOm7xQvgDOYUXEOi/H78z5QWPZRSpkLFH2l8yQcFQejKASoPT + ysHRIoEFw4jIqDgLFNKCZWNRLMGDecPLgzJC3mCAfIDRH4zr8eyDouFuSyjtem0B5pEB9Ggw8lxF + Kzujb1LUEpGgqKW0Q1FeTPOQR3Idezvr0mLPMt9uEkSzXY9setzUe9U6cDov6jFArfDPg/nUOjSj + 9qiQyZHhImgeQ47m66B6gIN6VcWBu/J2tjoZQBDv6SCGOJo0/CRbDHetWAfHWHelH9oNP4Pl1bZa + 3d/a7Eazk8GhnFmtJqvaYLOsgubKL01L9UpXHys119Q41R3mNW2pEkIJPgOuURBIphcUsIAjPzAg + lRfJkJcYCoxjdDl5TWPEpmXCHdlpvBTaUOSfAfYyd1UPgeaYKoBaRJEHkvIoeEROXhwceAQSF/73 + 8nTszCGDyodWy0mbOM8oMY+9KqdOzLeRI18WWwnODOBQr+G+TuSlTLc5pxH4osE8hi2mSHHKjNIu + NfEmLvgeOY6DBcx1CGei4AmWDxsDoFY6uUAoIV0ZGwNeJu0xGezbOSXf/+omrat9Jy3D80aavtoH + gr2KcIrtG8Lsf1AIcN9JttC8kXyvBleNlaMGMaYM6KPuy+PiC5dxKcRQjQcAv9+kUbnk8XnGwmge + AWrWnIGoXvrViGqE2WrsZxCB3xDQoriyko24pQyJurv6W1fV2uu6qrq9rqoux1XVztkaBht4i2Zq + MmzJIQmLXKidB1DFybxIQgnZkcaYrZAM6cZM2qFYkZlrTQWgFWGoiJJCophApOcskaqsUiJLkdGA + JEGBeVKSyREkitmSnK4YSqNIiRpaNK8FP/GCSVpSsVqPyNwoS5O0rOph92g1UUtmrJkDVgYClSOd + Nc+gL6B+sa6NmHSWsWCapjHK/qu5K+C30P1GVyJgCbo+ZAEYvhWNYYVjc1rEuG8DeQFMERHEwhRm + LEO3Xahu5dJsCH6L42JKgl4fM8HXe4dzkKeXIty/ynCvrqRf0gqVrCSHMhQWQs6dVSoaVNWcsAgC + gctEhv3WEwGNTWU2HDYT8Zir5NHpo9oEthpi+s6dhtXeiN9I687MrxZcPZ4u89ClANcxiCz2ITfO + TnBc2zZsKuPuRWZinmK+pGtXhAtP63ExcOGrAzzrdU3NahhwBqr5WLe7MWGb3TCbPTArTp0FsJIK + IebyPbw4vQh0gLg4p4uWmobNBDpp4xCNhi3pcNLGCRoNYfwmMV1OZ5Rcemvvyxg+GpWcNahysrnt + IoXSn6210IMMnQiONhVNTVxfF0wEcQqjC1AQ93ED6EVWiCbAGLm+b8MnyrW3wCh49QzxMRmiPb3M + Fm4u89TYLBZLmY5gDGq7ukOTWjyZZVKVLCdfB/MI5u+eXFP3VhFFbBmnarNhcOW1j/GktdQjLcwD + wsgxVy7DXfaaTfGhLaC1vi5ozzmt2NtdU3yEFEEzxzUzjqt64t62pIuGyEllWFt2QV43sUles1JF + cJRYBGxTGp5POlJALQs5rrzeNUPHGCtVe10px6s5Sam08f9T5TDQ4YekLuwyo8msto6Ci2Sy3UBw + dkua6xxz7DpI5w0TPzvBUapKJ7+Sn3hgO2ecAaidGWvzuuyyzePypRJ4O6Pq3RFQX3Oi44ZOHVyP + b4yuW8H1LVFwRzj3u/z6usEuPySqfmf/u8RtLYP18+zslyoAnqmUihgQd5CblLBpxT9Uk00WqBqg + XH35AU8UEIH8JMcJ/SGCTfCNObNWGwfOWgkrT5P23+dIwtZfo/26oV1DPrOXoCcG8wP16k4AA6PW + 98d4L6Kat+MuQH8vDtCDMHndAITZe22uy3btR5C8myjNUrStFza6grEHeD3A+94A3iMDrSM1Hfcw + Y22EW7V5a982wOkDAbppOlsHpWKVU27Wb7thiwH4eGjjwBoUGG2y4KQ8WJB9sytcB0TxaOGmQBQj + vUX5E8en+KbL8x6kXu+zyQQ8deA6auuAtlvz8wfW/PBQ+noI8MQAtjoLqPfqO0bXtTcQusCxs+N+ + JLuX436t6l+//46q7JH4VEGAvECUjFviqfp7KvXXE8Z512i3pd5vx7t/Dap/DWq7r0E5gfYA70Pd + Jd5/zPenrt206F+pusHelhHx6C9XVVl8YrGHRrUf7h2s7WLSMkJu/1ZXE5u2tHXgab/J9IO//SVX + hT0J3ffM2tm/CiZDvn8V7D6vgtUXoqdFZjHdx1Euguk6cLPS3WlsB+8sf9uhA97gjy4cy2GoEVB8 + kBOIiBp3ynEHizaY4zehn4/2EhXCdqF+6wPG7Zw5IL4NqFduvQ9kt386w3d/M+NOuL2yqoHgv4eX + tOxY/AlOCm90xoeZAugkTCqEWnLPepiwS8iXUXI+ke51c++msxO87nh+0tp0O2cbeEk2LYjpWRN7 + dh12lpd1YtaeWW984lleNwOl5fVo4NQo/AbYsbyuNrn/1geWm4a65dyyvO52ftnV+iHOMctrq69j + 4dWEXNUYmDm0ZYdtvRMaJWq5ldeqnX7oCaehCHDWbpsGV4tNOyG2RcuEks4DFrOl+0spM39F44LV + c1kre65JQRhgF11Ll30zsogp1N9QmR/OqolqcSaCbJSwefmoRrlz1akF+MMevyqbbn8Eqwfilq8J + 4nXPU1K8HvogVzrlQU9jrRBsuLxx5OgiU5fqllHnOZO5ttF5zYL9zSjddfSti6xtmYrJv75BJtY8 + R9NszPaCzcV6gtQTpJ4g9QQJrxpBemg61LOTnp20jEHPTnp20rMTPRA9O3kq7OROXOReRONvUEsD + BBQAAAAIADAweFOedX3BrgwAAMBnAABfAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF93YW5zX29wZXJh + dGlvbnMucHntXG1v2zgS/p5fQaQf7CwUxS26wJ0BHxB0X65Amxa5dA+HIBBoiba1kSUdRTl1i+xv + 3xmSokhJzludpEklYLc2Rc4M543PkIxfkDCL4nQ+KcVs/x87L8j+1h4g9ibL1zyeLwQZhnvkfRzy + rMhmAtp5nnEq4iz1yWGSENmpIJwVjK9Y5MPYd3HI0oJFpEwjxolYMPL+7UnV7JP/MGa+iM+CxKns + k/PsTxYKwrNMkFnGSaL6wHv4tlQ8pWgRI3OWMhADmEzXlnjD4z1yWIrsmBVCdfxddcy4HLqg6ZwV + ZEnXJKSlpB1mnCPbKVvQVQxsaRqRiximNmUkyYBOPJPyhUguxqka5v521T7j2ZKIdQ5WJfES9CzI + Ybr2yGGxTsO3AnhOE+aRNzRJ1Kdf4lB4aopx6JEPOeqIJh45WefsD8o98imFlh1N7ILyFGgXO4oT + /VJy5sP8mU+RQ5DTuc1ac11+pHMWaSnexYVojWafQyZZF9XYN0nMUgGWWMA/cSht9yvnGUj0byFy + ME8OvZlugq9ZyUP262egXjQajzLxWwaepJuXNA8YfmxJkcc5S+KUVTJ81N8rZhsH+ILTtJBj7Knb + glZi/79kHfPPsyRpKu7d8YeP0My4VtxR9lH10t/1t/dMLLLIpricL8UmtR4ev5dq+E3GQ/coLYw2 + KeXLoEs8oKQl0M7g+37VYQmOnhSEFiRQH3d2Tsik8qnh4GSwt/MmKfA7NFdOd1q55elpU/OnlvK8 + tnLPwF+VL58WAvWVrs/O9D87O2FCi4L8EXNR0uS/YKgPOVMJqBjvEHh2d3c73xKpAZKZBn9H9v9f + VpJikZVJRNIMs08hKDgpxDOEOcS3YhjFmBWStU/eQgdGIQDW9cCQM+xPtaNrIiFSALsgF4ssmE8l + NCSA2YUKQcOFagct0xRbeDwtBdMyjuMV5doQY8izMXQTmWpQAsLoEnOsTJ4gtZkmmfOszH1FRqCN + KjJ/Wa6SMnGR8XN/9Wr0ahSMfg5GL31tbDkwp5wugRPOblzNEueAaR7yMmRBac7Cd/pn6SyeQ3/5 + b6kFymZmlCLojIFXMU3iL4zDRKHzVC4Caqb1O2dIxK4aZL/1Kw9RatWePakdG1sjNiNBEKexCIJh + wZKZp+X09IQ8SxDPob9H9v9FjrKUKVfEBwn4gSIAnNSHxltDADrUxBqdLD7Qzeba5CWFRF7yg5qU + cn6c2pyJoTPCM9+4zrGB9JkgpUs2JhiDpsdKRVZwQdOu1z/9dA6Lylw5jVTGrlatX8Xk4dFurRyw + xDEDV2cr8F9cVCMmaAwmAR+hpB6iw8CyeaeoJwtmXii/J/gCqSHxOi34NTkZEpsm3uTanj6y7OJx + eAR4AbMs1/OLmjw7VVn3OWdriEhILTqNgudg6JOwLISCBcCTk1mZhjKqMNMYnJJjRoiURmXiwhmq + Vc8wAMFKno4tiT0kKJQOy0TglIDpsBq6Z41F9jfNIJbpLQo0hpxlSDQWOL+FCmyXMZ9DGbzK5WCh + y4cDaBl4MgL3CHlBlJh6cTrt8sUzQ0yiiADwBJD8alrxeT16Ob4KwrwevR5vwievR/8cdwEaw+Cy + LYBf5hGsE0N7YuYlTO/r5V5tC5rHwYrxAn1gQnZR+/ujn/dHL2s10RD1im9pnida9oM/iyzdreMK + gTSsUbwEZ/l0/M60lzyRWQkyC2QOfwkBCsLR0wG8GJzVSo7nKdjQDMupWAQKpwPomJdL0FrR0uyg + CrzfMe6OIAoG42ZO9IHRcLcjQne9rrj1yABmMdjzXEa1ya/i0oxJYNFs2kC/KKdFyGPpvm+jTfTt + BO3bQ4I42vXIVa/bfC+7bKRXGl+rHrnCfx5k5k6L7HU7gMx2DCqMwryG5Z2vg/oF2vKyNr8L1zaO + Oh2Av+5rfwX3mbT0JEcMdy23BsVY3yo9dAu+AGRmS62+31rs1rDTwaEMok6RVW+QWXZBceWHtqQa + JDVthSuyNFJTW15bkDrwq3IlqPIzkKUXFDCkQzwwZQ0v0yGvUDdIxuhy8htNsJqp1u09S1RDtMXI + X0B2Nt/q6UFhbLoA2hVlEcgiWcFqcvpqNDobO2Fjqreh1X/SRcQzpM1rr86YE/Npz6EvV5l2iTnc + SEvFx8QtrCwLWrArMma0GodWooFM3VLdnqMtXNJdeeWaLFfd1lAHaUZyFbA9Sw60e8h3dspG15dZ + e0wGB3Z2KQ6+uunr8sDJy/C+lacvD3KerWIMtgOz3+IfKRBwsKoLsIOvbuq9HFy2Fo0GQg1UORWA + PdRKKME4TOvecCs21zE27kStd0e5PUy5EUyBdU+A0IFQGwkW2V37FeTXNo6xGG0J7Gx0wm1DoEdA + DpLvc4BePQRqC35/EOiNisJ9zFJXAqFGuNpfjexX8NkG1Jpm0TqoGKtUcrN52wM7BMDXQ3e58GwX + t2bWIcLpQH+Xk7M7XIcR8/LmGBFdvYP5E4eOHnk1evnU8eOmeU4mMLuRO7ntYs3NbF/eJ9v7h7jX + L9RPBvhO2TxOW/P5blGve7DVjVudvd43cmaFs7Vbb9iCt0AGijJWpANBGIJQAuQYUWpQG8SyGfdV + n8XmsDJ1hPuuapK33SVWnJuG/Fiv9UWJKBj3grPqlMowc3Tosm1S/Iad3nvfyK4YgGIk1IjTUoL+ + QGTnLJWsrFYiW1EdQElQLsAbc+nARJ2fkoKuGFKjePzW4qJPT8G4vGTyCKw+O/WIXBRla5pVXeW2 + Oq2TYHX+qk+psHMOSsZDU/MO5gLs5+uGpaWyjATTLEuQ9l/ts2e/41C5NZUYEI7uDzkTDL2iCeAi + NqO4+494AEURMTjwFGzOUG0XalqFFBti3zpPxQCGWeOBznr/cAb0NDTBWxI53gipjvqkFNX5w2Fa + H5dCnLhJRXmD6loQFoMjcDuM7nZg0dZUncVu7elnFhd5qHHjMw0nN9bgTLuAu2OgW2HBRb+zdg3k + jY5TdIWumwS1cFvdhEh4BpAgoWuXpFv3NV1r4NaFTsna7Gt61jbEIFYh3ZxHK+bb0zK3EiCw6mkg + Pqmpgpe6R7f4cHoRaO9qYORr96gMifb6MemqnlsDm7l/0iqIW0PcvD1pFCqt7uACk4QupxEln721 + 92UM/7Q6OQt/bRfzddP+jzRBZy+7IDQdrT1WeUgdJBk4BFQeeEcpyEqBJVAbbd4beK0cpAlglUlv + B2I7xjo4tt8zesg9Izv+zWWoQibWsVkQlzJ/guob96OGJvd5Mg1mKrtPvg5mMSSYfYkb9lcxxWpD + LgT7EuDvm4VycOl123nS2eqRjhobXM6RXeKOTcKbu2ZDm0Bnf93QnSE7Czl3+fQRQwXtjNzOii7r + ifu1I1O1SE5qwboSG+5gTOztjHanOgQVWUSoUxqeTzZkn0YCdFR5vWqGjjDWwuJtynZeQ0mKZXeR + +PSKXb1sCjovHr7CPQGuHyT+/oZzHUBtn3Rp6lS0OKUnXJQ+QCX6qVl/ap25HO9YhNa2fcAitL9N + 1R9TPsYxpZVF+4PJ7wlkdtiqP5jsDyYf+GCyXgvv7WCSinDxgx9NPvVTyad25Ne16D2Zugc3D9gD + 3GlrVzPu7uYt4R42/wjwbmv3x1wz9+CsB2c/Jji7x4vzKsR+lLvzeAHqFf7v9VPHG7cHCbj6WOBg + U3J9MiBAbeJq/304BNA465ZrurOf+YuUqHguf3ypFPzd/ellf2PlB7uxgoF2D3dVXEz+nK6fuDPr + r5tsLBrNwAe8ZPLsbo3c7ZpHA5Pg0xdvitEzub6RZGF/Y8M8/Y2Nb7qxoTL4UylVMJ0mcSGC6Tpw + 4/7u5cqGeqT6JbP6RBl/VayWsziWSm/8LQH2gToFQLeL/Assl2mjEnn8EubBLiAgOBXqJ+7AgOfM + gaoajnbq91vwqf17cb77Q3E3vVDdKVML3D7SFYcNDtlvh6sHkwWUSxBZiI/kLtkwZZ8hRcbp+UQq + 1023V+084nPH3cfOodvZgcRHVouCmJm1AeOmc4Hqsfabu5PrjY8JqudmiLN6Hgt5Gv4PhUDxubxK + /bfe7r/K1B27/tVzt93/TaPv4xSgerb64zT4tFFWbQMTQ1tW2NYnoYGhpltrrd7KhZlwGooAo3YL + f5/QudR0H7rbhGU6yWYBgMyl+/OAkb+iScmamayz4G1QQQBgN137hwy+sSuiCVUgm9+JbZDqUCWi + aqRw9eJR23jjmtNw7/s97lEy3f7IRxvilpdL8LnvAx85o20f+lgu01JR68qHiyHdWrTyEs8JvcYW + 3jXL6+NUX9cVW5tKq4csnOzZ22VTX8D0BUxfwFRPX8DIAuYZlyt99dBXD3310FcPffXwg1YPd6oV + 7l4I/A1QSwMEFAAAAAgAMDB4UziwhoRkDAAASlQAAGIAAABhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL192cG5fY29ubmVj + dGlvbnNfb3BlcmF0aW9ucy5wee1cbW/bOBL+nl9BZD/YXiiKW3SBOwM+IMhuewXatMi1BQ5BINAy + 7WgjizqKcuotsr/9ZkiKIvXiJq2zbbMW0Mbiy8xwOBw+nKH9E4n5PMmW01Iujv5x8BM52tkDxE55 + vhHJ8kqSYTwir5NY8IIvJJSLnAsqE56F5CRNiWpUEMEKJtZsHkLfV0nMsoLNSZnNmSDyipHXL99V + xSH5D2P2RX6UJMlUm1zw31ksieBckgUXJNVtoB7eVpqnEm3OyJJlDMQAJrONI97wfEROSsnPWSF1 + wxe6IReq6xXNlqwgK7ohMS0V7ZgLgWxn7IquE2BLszm5SWBoM0ZSDnSShZIvRnIJDtUyD3er9oXg + KyI3OcwqSVagZ0lOsk1ATopNFr+UwHOWsoCc0jTVn35NYhnoISZxQN7kqCOaBuTdJmcfqAjI+wxK + DgyxGyoyoF0caE70j1KwEMbPQoocopwuXdaG6+otXbK5keJVUshWb/YxZop1UfU9TROWSZiJK/iT + xGrufhOCg0T/ljKH6cmhNTNF8MpLEbPfPgL1olF4xuVzDpZkilc0jxh+bEmRJzlLk4xVMrw17xWz + 3g6hFDQrVB936K6gldj/K1nH+HOepk3FvTp/8xaKmTCKO+NvdSvzbt5eM3nF5y7F1XIl+9R6cv5a + qeG5Wg/dvYwwZkqpWEVd4gElI4ExhjAMqwYrMPS0ILQgkf54cPCOTCubGg7eDUYHp2mB71BcGd1F + ZZYXF03NXzjKC9rKvQR71bZ8UUjUV7a5vDR/Dg7ilBYF+ZBnpzzLYKGiPt7kTPugYnJA4Dk8POxr + QJQeCLcF4YHq8l9ekuKKl+mcZBx9UCEpmCqsaljssMo123mCviHdhOQlNGAUlsGm7hgLhu2pMXdD + JEYKMDvIxSELk6jdGhJAH0OlpPGVLgdd0wxLRDIrJTMyTpI1FWY6JuBtE2gmuS7QAkLvEj2tcqEg + tR0mWQpe5qEmI3GmKjJ/OgaTMXnDxXW4fjp+Oo7Gv0TjJ6GZctUxp4KugBOOblKNEseAzh68M/hC + NalF6LXn2SJZQnv1tzQC8YXtpQl6faAqoWnyBxMwUGg8U1uBHmld53WZs22d3NqwMhKtVmPf09q8 + sXTOFiSKkiyRUTQsWLoIjJyBGVDgCBJ49Efk6F/kjGdMWyM+SCCMNAHgpD80ai0BaFATazRy+EAz + l2uTlxISeakPelDa+HFoSyaHXo/AvgnjaSNlM1FGV2xCcCXaFkuw3xu66aqK7aLrqv3552vYdJba + nJSaDo3SQ2/BHtaag2k6Z7AO2BqMG/fdOZM0gfkCA6JknWcOS7NOHKPoHMu7K2Yr9MIgWIEUkQFI + 8kIPMKzJqTXTp5kmV18/yM6lv+wm3lJqk2pLtU3CTWX49Ltmpm5yzTaw9MGHGa8NJoo+hsRlITUK + ATaCLMpMkVAuzcKiHF3PXM+O8pCoKb3JWgaCyVJkE99zB0hT6ukoU4kDAb7DqvfI6Y4S3NVb+cbk + EKEJuEhLpbGrhi0o4hphbeHKV2g7ht01Hw6gZBCoBT8i5CeiJTU74kWPgV9aegq9RIBjgOonW4rP + s/GTyTbo9Gz8bNKHi56N/znpAlKWwW1bgLDM52CEQ3dsthJG+Ol2VM8IzZNozUSBxjAlhzgHR+Nf + jsZPak3RGFWLtTTPUyP78e8FDL9eqAjgYVcUJVjN+/NXtrwUqfKD4MvAV4UrWPUgHL0YQMXgstZz + ssxgGm23nMqrSJ8PAOwsyxVorWhpdlCUsyIWiZr4l/PBpOmCQ+AyPHQ9aeh2iZL5YUC2VQfAQ4rB + KPD5Vh7kBTqQM1iGfaw7XA1w7CjtYWS8yTYWrsMB2u5rD9HahWyj23A0h0HT9bSp33ZNu9kuQzOb + SBv+BbCJdE7yqNumlO9kcFgqbDVgFLGJ6go0j9vaonzk2dvrYgBL4MgsAbDIaUsbqsfw0FkpoAvn + rdJDt+BXAC9dqfX7vcVudbsYnKh12Smybg0yqyYorvrQltQgveZcIaxQk9TUVtAWpPYl1ckrqhw/ + kKU3FICwRzyyJzRRZkNRHSBAMkZX0+c0xYNZBTFGjqiWaItReAU+377Vw4Mzvm0CkF2WRaTO+/ps + QC6ejseXE29x2IPo0Gk/7SISWNK2Oqid8NR+Gnn01d7VPi0Pe2np9TH1z4jODDrYcW6n0SkcDrwd + C/x/S3sjT2GIGHyR1ZavdvRWVw8xz9Xe4hqX6ui2UHXuRoDWr/aCCRkcu863OP7ke/fbY8/rQn3L + C98e54KvE1xvxzZ6FJ5pgHG8toAQ+jqO9RZrnFPm8SffQd4Oblv7VAOGR/rMGMF86c1XnThgzN8A + nMNgIqdFvVAnfSj9q4D9Hkep5w44CiZFgtCR1BEWh+yhWwXeug20HEY7QmO9JrvHaHuMtsdoO8Jo + p3phH6Hv24rUGh7AfbWyb+GzCyw44/NNVDHW3ulu43Y7dgiA1cPeXQnk8AHKaJtAFwPzrobqNvgc + pM3Lu0NaNPwO5j840g3I0/GTHx3u9o1zOoXRjf3B7Rwa93N+8sCcHx6Ufx4PPA6oPmPLJGsN9ofH + 6X52shdmewH5U6WEohV/x2wUJUVMdQgZK80o0RTByc05K7KBJAyBNAE2jGg1qtB+jaSxGlOU+9A+ + ry4bfFlYX5PfYjFva6hSlHguwDg+r1KZXJD3an5gWj+8PSOnvWJsYfF1MfsHT0xUDEBvCj0lWamO + RpHk1yxTrJxSokpRRUBJUiFBM7laOkSn30lB1wypUczbtriY5DvMsCiZyp3WqfeAqJ1dlWa8aqpy + JLT24VX63qQ3sXEOesacu62DsQD75aZhCEpZVoIZ5ynS/rN9dSHsuJPQGkoCoM20B5cPc72mKUA9 + tqCYykFQg6LIBKx4BtPOUG03eliFEhu8jpOIRxcBo8Zk3+boZAH0DL7CSzY5XiiqcsRKiiqfdJLV + eXZYLL4709agmxaEJWAIws9AfWECqq2s2oV+ib1fOoxUkurOOSrPMdc40xiCH2AxpYAa0PqcIIu6 + FnSBBtF1HaUWbtcxm1RwQDcp7A8eVf9E27SxgX/i9U74zba25cjdXKVe282htBZ/e2T2dgussHoY + iLNqqmCufvIfH0FvImNjDcT/2QCgJdHeoqZdwYZWR3f7mXohhFbTxm4ybUYFWh16/f60/+DW5poW + 05SuZnNKPgab4I8J/Gk18qBLPa32tS/apmaws5V7VrYNnfi4uiURpRzsCY5heFUu4qXE82AbdD8k + jMenC8rjc18439HXQ/T7IN0PHqRznZK96Vcohz+x2/VK+XWYzcblv6F1yIHyzVzvOtNPg0UCXu9I + oZqjdULxKKc2qCN1QDqy2/jgNug2nWlnaUA6whhgxZ7sChX1CW8vUg5dAp3tTUG32+48Jfs7e4gI + L2pvE21X7bOe+q+dXrdBcloL1uUuMUg0dSNG7Ub1qtZkET/PaHw97fFpDbfqqfLzqhl6wji7XdDn + Q4OGkjTL7kP2I4sk4Apj3zTV1w4D+IjlnjgPi/8OibidpdB8A9gnzh75ntxlAvvE2Q93uUmv2r/L + /SbM+jzF/549gtTPPdMguKE56Y8+f/044IjGXMa4vwcs0oinKXThhbl+VbK28w/7JMH3efd/H2L/ + m4XYcck+QGTdP2c8pki5P7J9WLz3iGw7fo/B8EcXx/6yqHMDPeGzP7lqRj/ayfWviyanPN4HkO2z + DyB/VQBZ7x6P4pyG7jtNChnNNhGmVA3NBzmo9RzFqp8aqfP5+LMf/i8snKvJatwTq7+4DbbTOKtp + fEoxhCWTuEypIOtEyBIg9g3N3Ltjj/VU95d95Rrxu9S/egOmdM08NG8Qe9+Mfg2Kd39FJvR/Puau + l2T6xGqdAr7Rl7r7F8I+HaIf9F9wtIQlhBBRhTSHGfsILj3JrqdKv/72sC1MjM8Xhoo7u+4mXIyP + OllLYkfWxsx9eaHqcZIDHf7+zjmi6rkb4q6eb4W8Lf+/CoFbhg+BxPG53Tax9876bDOijuRP9XxZ + Eqiv90Mkg6pnp98jx6eNN+s5sKtzxwrb+SAMRDZ0a63VQXsYiaCxjNAl7OA6Wt8+1n0zzaWtfBVf + RIC4V/4vEs3DNU1L1nSTnQGFBhXEGG7RZ++thXZqEbDoAIT9gboGqQ5t4hEDKWzfmepp7t3QGhb+ + sIk/LdP9k39mIu75Awf4PHTqT41o1+k/x2RaKmp9vcmHqf7BvLKSwFt9jVjqtr37OzyHdhw7/w9Q + SwMEFAAAAAgAMDB4UyjksSBKDQAAyH0AAF8AAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz + L3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL192cG5fZ2F0ZXdheXNfb3Bl + cmF0aW9ucy5wee0da2/bOPJ7fgWRfrCzUJS06AJ3BnxA0N3uFegLuXaBQxAItEw72siSjqKcukX2 + t98MSVGkHs6jdlI3ErBbi4+Z4XA4Tzp+RsJ0GiXzcSFmh//Ye0YON/YAsFdptuLR/EKQYXhA3kUh + T/N0JqCdZymnIkoTn5zEMZGDcsJZzviSTX2Y+zYKWZKzKSmSKeNEXDDy7s2nstkn/2HMvIgvgkSJ + HJPx9C8WCsLTVJBZykmsxkA/vC0UTknalJE5SxiQAUgmK4u84ekBOSlEespyoQb+oQamXE69oMmc + 5WRBVySkhYQdppwj2gm7oMsI0NJkSq4iWNqEkTgFONFM0hciuAiXapD7m2X7jKcLIlYZ7CqJFsBn + QU6SlUdO8lUSvhGAcxIzj7yicaw+/RaFwlNLjEKPfMiQRzT2yKdVxv6k3COfE2jZ08CuKE8Adr6n + MNGvBWc+rJ/5FDEEGZ3bqDXWxUc6Z1NNxdsoF43Z7EvIJOq8nPsqjlgiYCcu4J8olHv3O+cpUPRv + ITLYngxGM90Er2nBQ/b7F4Ce1xrfp+J1CpKkmxc0Cxh+bFCRRRmLo4SVNHzU7yWyzgm+4DTJ5Rx7 + 6TahJdn/K1jL+rM0juuMe3v64SM0M64Z9z79qEbpd/32jomLdGpDXMwXooutJ6fvJBtey/PQPksT + o7eU8kXQRh5A0hRoYfB9vxywAEGPc0JzEqiPe3ufyLiUqeHg0+Bg71Wc4zs0l0J3Vorl2Vmd82cW + 87wmc89BXpUsn+UC+ZWszs/1P3t7YUzznPyZJX/Aibuiq/xDxpQCykd7BJ79/f3WXiI5QFLT4O/J + 8f9NC5JfpEU8JUmK2icXFIQU5sMxh/OtEE4j1ArxyidvYACjcABW1cSQMxxPtaBrICFCgH1BLBZY + 2D6l0BAAahcqBA0vVDtwmSbYwqNJIZimcRQtKdcbMQI9G8EwkaoGRSDMLlDHSuUJVJtlkjlPi8xX + YATuUQnmb0tUEiauUn7pL18cvzgOjn8Njp/7erPlxIxyugBMuLpRuUpcA6p50MugBeV25r4zPk1m + 0RzGy38LTVA6M7MUQGcOdEU0jr4yDguFwRNpBNRKqz5nypStm2T3+qWEKLZqyR5Xgo2tUzYjQRAl + kQiCYc7imafp9PSCPIsQz4F/QA7/Rd6nCVOiiA8C8AMFADCpD7VeAwAGVMBqgyw8MMzGWscliURc + 8oNalBJ+XNqciaEzwzNvXOvYQMpMkNAFGxE8g2bEXB2rtq5ffrkEgzJXAiMZsa/Z6lfncb9iDOzC + KQMxZ0uQXTSoUyZoBNsB8kHJMuKioDHYqIQss6RErM+DtfmtNH+6YKZDHQCCHQgaMVX0+BU4eTa6 + OFDH6vIB0dnw5+3AG8yr+i/ZCs4fKBKtNEFO8KCTsMiFcgIAOCezIgnlGUK9YrySDM//VPFQqilc + hrJxBgFnouDJyFq6hwCFYlQRC6QdkA7LqQfWXER/W31hbbYFgUagoQyImjnzGz6ALSTmcyiPqhIy + MGvZcAAtA0+etwNCnhFFpjZFZ23Sd26ASZ8hAO8BQH4zrfi8PH4+WuewvDx+OeryRl4e/3PU5r4Y + BNdNAvwimwJ5Q3thphOW9+36oNoLmkXBkvEcZWBM9pH7h8e/Hh4/r9hEQ+Qr9tIsizXtR3/labJf + HR50m8Ei8QKE5fPpW9Ne8FjqINAjoCf8BRxJII6eDaBjcF4xOZonsIdmWkbFRaC8cnAx5sUCuJY3 + ODvIi0ke8kju+pvpYFRXfz5gGe7bWsy3pwTRdN8j67o9wCH44MBz8Zan+g881O/h9HWhbjn+gLGl + tQORPuHrUNhKAGDbr02g120bo42Jr/mNUOE/DxRw6zYctO+61GMMgojcdIMF56ug6sANvK723PXI + OmedDUBID7WQgsyMG3yQM4b7liwDI6y3kg/thF+A82VTrd7vTHZj2tngRJ6cVpLVaKBZDkFy5Ycm + pdoPqu8VGl25SXVueU1CqtNeRiRBqZQBLL2i4CY6wAMTufAiGfLSsQbKGF2MX9MYA5bSPB9YpBqg + DUT+Bahk81YtD2JfMwQcWlHkgYyDledMzl4cH5+PnDNhArShNX7cBsQzoE23V6nJsfl04MCXpqUZ + RQ47YanzMXZjJ2sHLc9qarbRahwOKoMC6rnBugOHW2jHXXqlIZamtjHVcSanUvXbkiUn2iNkn62n + UfSlqh6RwZGtG/Ojb67yvT5ylCL0N5Tk9VHG02WEh+3IpFT898ryHy2rGOvom6X3rgfXDTNR80AD + FS4FsBnK9klnG9a0Fb8UCA3K7uqQjVq90/t7s71zcivnBMy2AKIDoZIFFth9uwsUbNN7sRBtyMXp + FMTe8ekdnyfk+LxSR+8QVdNa96d2Ru1XQ/saPJtwsCbpdBWUiJX+uN267YktBGD3sN1WABGWyT9Y + R8rZQL/LRdoDbvIQs+L2HiKKfAvyHXccPfLi+Pmue49d6xyPYXXH7uI262l2o32+TbTbd3BvttK7 + 4fZO2DxKGov5oX1et3TV7rU6Gd1XcnV5dwIXRQbU0DRleTIQhKEbSgAkI4odKhUsm7FG9ZOnfRXU + rt36WFn2vEBHF5O8aVlsSjn5LFnWZHZ1HjtI6sL4HSnerWewSwTAQOl4REkh/f5ApJcskaisViJb + kV0ASVAugEuZlGKiyqQkp0uG0ChW2RpYdJEUNpkXTFa6qhKpR6RplK1JWg6V+XRasb4ss+piFA7O + gMlYGzV9sBZAP1/VJEIyy1AwSdMYYf/dLDH7LbXjxlIi8Hf0eNCcsNFLGoOXxGYU0/7oFSApIgJB + nsCeM2TblVpWLskGBWCVTfEEw6qxdrM6PJkBPO2g4GWIDC9+lBU9SUVZeDhJqqoonBdXsyhpUENz + wiIQBG4d13tWKpqcqlTZnSX93MIiqxm3LmY4CrJy0bQIuEkD3QpmF+XOShzIixtnKAptFwYq4jaa + h4h5Co5BDBvggHRDv7poDdzQ0Ila62PNyGoP8RCrI11fR+PMN5dlLh/AwaqWgV5KBRWk1K3Q4sPp + VaClq+Yp35iqMiCaNmTcFkA3Jtr2YeyExY2h7Xp73BG2NKaDKIxjuphMKfnirbyvI/inMcjxAqr9 + Ma9dqSC5Fa2j7DDRDLTyrbImHcQpCAbEIXglKUgLgQFR0/fcmitbCkrdnVVbezeXtmWu49X26aOt + p4/sw28uPOVSq46MNVxI5Qn8rt2BGhrF50kdmCrVPv42mEWgXQ6l03C4jCgGHNIKHEo3/9BYycG1 + 176549ZWj7SE2SBnDu3S6egi3twnG9oAWsfrhnb12BrLubbTRwcqaKrjpkp0UY/d1xb11AA5rghr + 02aYxBjbGY3moOrcKbDonk5oeDnuUDk1reew8mbWDB1iLKvidak4r8YkhbI9VNyxeFcbTEHn+eME + uZ8A8wfpfX9HYQd8ts86Mu0KaXGFfYRqRahFR1xa45hLxHfGpNVmP2BM2t+q6guXj1G4tFRrX6p8 + dF+zZYP6UmVfqnykUmVlCLdWqqQivHjixcpdr1PuWhGwzeLtRhiEiQS25TtuzaDGTXHe0cnD5qfg + 1G3sHpm7xb1L1rtkT8gl2+K1eXWunsrNebwA9QL/93LXvYu7uwRocixXoEuj7obJV+lbLbwPY+9r + 5W1pwZ0k5m+SmjU3c37WDGZ/MaW/mLLZiyl4uLZwJcX1un+mWybuyvpbJZ0hoZn4AHdJfrrLIPe7 + vVFzPPDpwzKFaJdvZcRp2F/EME9/EeO7LmIodb1jQQguGJb6sGlHYypv+KrAHR2I9WD7VKV+bpOq + dKRi05nKnTVNEugjGPQ+U9kkfCczlVmaP5m/8CHzlLueoqwVQNHw3MiD7X+J8wG+TdluAH4En+ZI + knbb9Koc/DjZ1Zu/B3mKxOX679hGC8pXZQLT+S6k+ku3ecbCaIZ3J93Eap+R7TOyfUa2/6rgj5HE + 7b8qqJ7OpG5HvG3m9Tnd/gt+fdy8qbi5TyX3qeQdTCVLI7FDURcq7zjKRTBZBa6auX/o1RFflb9o + UXka+OsS1t/yP5Vsr0VaOCYnIAG1YCfH6Ir+cBHVg30lDZ1ooX7qBDbwkjkutXabW/n7PR60/bsh + vvuDIbd1o1tpanjUj/Sltw6B7OsP6kFlAWEdnCx0n2SScpiwL6Ako+RyLJnrKtx1aV987pn6bZ26 + mfQvPjKqFcSsrOlPdhViysdK9rcr11sXZsrndo5m+TzW3QWD/6EcXnyu17H/zrWWdVvdUnIpn/uV + Xrpmb6MEUz4b/Qvm+DT9rGoPzBnaMMM2vgjtGmq4FdeqrDSshNNQBHhqNxDXtpqa9hDXBizVSToL + WMwWxPmZmKm/pHHB6pqsNR6uQUEHwG66MQD2zb6iN6GuWJnfC6uBamEl+tUIYb3xqPa40+bUxHu7 + 1TZF090rbnojbqq6nTe3adtFN7miTRfeLJFpsKhRvnJ9SDcaLaXEc45eLU94g3l9nADspmCrK7R6 + yMDJXr0dNvUBTB/A9AFM+fQBjAxgfuJwpY8e+uihjx766KGPHp5o9HCvWOH+gcD/AVBLAwQUAAAA + CAAwMHhTHOmmO0MHAABdFwAAZwAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3Zwbl9saW5rX2Nvbm5lY3Rpb25zX29w + ZXJhdGlvbnMucHmtGG1r4zb4e36FyH2Ie7hu7uhgC2RQut3t4F5GrxuMUIxqK4lWR/IkOb1c6X77 + nkeS5dem2zhDiCU97+/WC5LJnIvNsjLr0+8nL8jpN3uA2KUsD4pvtoZE2Qn5wDMltVwb2FelVNRw + KRJyURTEAmmimGZqz/IEcN/zjAnNclKJnClitox8eHddbyfkM2NhYb4YwoWFKZX8k2WGKCkNWUtF + CgcD57DaOZ5WtJyRDRMMxAAmt4eWeNHVCbmojLxi2jjAtw5QKou6pWLDNNnRA8loZWlnUilke8u2 + dM+BLRU5ueeg2i0jhQQ6fG3ly5AcR1UD8+Tbmn2t5I6YQwleJXwHdjbkQhxicqEPIntngOdtwWJy + SYvCvf3EMxM7FXkWk08l2ogWMbk+lOx3qiaeyj1VAojqiWNBv1aKJaA4SyiSTku6afP07Ha/0g3L + Pfv3XJsBNvuSMctT17iXBWfCgAu28Mcz67SflZIqJr8YU4JfSoBmfguWslIZ+/kLUNe9zY/SvJEQ + Qn57R8uU4etAipKXrOCC1TL86tc1sycREqOo0BanrXpb0FrsvyrW1X+32ZmnjHBx9cEK/caGrTd6 + kiT1+Q4iqdCEapK618nkmixrp0Wz69nJ5LLQuIbt2qur2u+rVV/DVUvIeKjEDQSEC5aVNmBKCKqb + G/83mWQF1Zr8Xor3XNxdSiEgG1CbTyVzia4XEwLPdDo9BkRsKBEZNpKJRftDVkRvZVXkREhMdm0o + hAakD2QVpJNjn3NMwuKQkHcAwCiE3aFBzBRDeOrDyxPJkALYF7m0yIIbXP1AApjM1Biabd0+2JwK + 3FH8tjLMy7jge6q8WxZQ1jiAGek2nICAXWFJs7UKpA5qko2SVZk4MgY9VpP5uxUogpl7qe6S/ev5 + 63k6/y6dv0q86y1iSRXdASfUblFriTpgVYUyCEXHOlcnHXgp1nwD8Pa/8gLJdcByBDs4cMRpwb8y + BYoC8K2tuU7T5qyDkrNjSO3TpA4UZ1Yf58smzHE3Z2uSplxwk6aRZsU69nLGXqG4JUjcoX9CTn8k + H6VgLiLxQQJJ6ggAJ/fSOw0EAKAh1gNq8QGwNtc+Lysk8rIvjVIFFLH09pDuS4FAPkWiDnocVsqX + udQGUCroji0IpmeA2EAw39PD2FFDfuz05cs7qPgbF1vWZp0Ospp6fyRY1CGnP3PDenkNpaMqzPSm + MTR49YpB2rA95AJUIgJqEg2YoLe4a0mkbeBSAsEDHaAqILP2XJmKFtCHhEXzmuH7iEo+KVsROGqr + 6y0LBy4LCR5g/GO7Br3eOjZJQ84m6FOW73Pt2h/ZtelvxokPnNanOnBdnzAaqG2MLv0xzzcgd+wA + dQYKpm8VkA9Y0EhWaeNmC2CjyLoSloStn2HYKbHO5VYGV47RUq6DBgaKmUoJWwW4cYMV+P+ONSUZ + tGAcaCjyXHShJMY50a7WKG1U8zxpMUW5Q0EdzC1Jd2BZ/bvC+2zw37QEoBw6QFeCpu0ng8mmnTRN + gNtS6DIzKWUZzWBnFtt6dkLIC+K09I3/vyRpYGHnoxQmJWD0EHbxOZ+/Whwbzs7n54unJq/z+Q+L + sVEtMHgcCpBUZQ6ZELXVDYeg9MPjSeNgWvJ0z5TGiFySKbrqdP7d6fxVYzyaobXxlJZl4WU/+1NL + MW2qBRbhUjHIM5b6hhkJ9sWkWKGW1s6LjlXwYwLiVlUQ61sYOkCGzrnbS23iMgh3dODDY+Or7kh1 + HHU1u7A6zG5sF+r0pcRBR1On5jT2+sZkBtRhGuyQhu8RnKSCZl2d+nr9dvV+cF6pohZivGklIDMF + B9LVDGBB5KAy3wiI/gHFkppt6j7TUvB4tYMI04MorJ+Zrm51prjNn3f5bDEwCHCNpu1+m7RRUp5P + Y3LsuLZcPM6/bgFvsQN8BA89JcJIrwDOI7vPMPRt4RirducAHu3lM8Qbvx2j3+sc07jfS57m8ngs + gvzwlXjvIy/4xTCFjAbFydFobfJlAAb5rA7/KxfHsFczqDqnvuqM5qTFgJRsihPmZbMaT058fO3p + G2jDjLNMX5Z4WC26VoI2wIZZ7nwQysA3Ntg3V8KNDjXdxmruuxFrN2iiaGZSLDxR/ZGehoGga4HW + hJ4HIVub0ey5xgltaMikw8MWR7lOWcF23Y+CPNnTomL9uozj1sCSPSo45LS3Rq3UYRVcjBMTtrHW + nUyP1IhVwWMpUjjeCht3P9lBe5E+sB3g0nsKH9mdgEnDbYuqRKTqSwoIPEZ3yze0wEuW+oulb4tA + eMAs2cLQFVaDBhnAYCo1lU7t5Z27fyCr1/P5zdBN4YIpauEsxwjFgXw4jpvRZxnehqXODpLDm7Do + SXquei67N0o9R/iQGZiogfIQ3Tk56hCpoyTuZGEAcao8MyxggbHzwoLMztoNWZ89dDv+41mnA8P5 + oCM/npVK7jnOZGfhgjf56Ob5s334ugPcVnN9xJNWpp89dJujPe9Vg9njYLz5B1BLAwQUAAAACAAw + MHhTUeMIW/wIAACgHwAAiAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVf + MDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3Zwbl9zZXJ2ZXJfY29uZmlndXJhdGlvbnNf + YXNzb2NpYXRlZF93aXRoX3ZpcnR1YWxfd2FuX29wZXJhdGlvbnMucHntWW1v2zgS/p5fQbgfbC8U + xS26wJ0BHRDktr0CbVpksy0ORiDQEm1zK4s6knLqFtnffjMkRVEvbrbFosABZyCIRQ3njTPPzNBP + SCZyXm6TWm/O/3b2hJz/ZR9gdiWqo+TbnSazbE7e8EwKJTYa1mUlJNVclDG5LApiiBSRTDF5YHkM + e1/zjJWK5aQucyaJ3jHy5tVtsxyTXxnzD/qTJrw0NJUUv7NMEymEJhshSWFp4D087a1Mo1rOyJaV + DNQAIetjoN7sZk4uay1umNKW8KUlFNJs3dFyyxTZ0yPJaG14Z0JKFLtmO3rgIJaWObnnYNqakUIA + H74x+mXIjqOpXnj817p9I8We6GMFp0r4HvysyWV5jMgVLQq6LlhE/skzHVmbeBaRtxU6hRYRuT1W + 7D2VEfmthJUzt/ueyhKYqTPLmn6uJYvBYBazTxkzm1Uj6argrNTgvB3845lx9y9SCuD5L60r8GgF + 1MwtwaOoZcZ++cSVVr3Fa6FfCDh8t7ynVcrw60CLiles4CVrdHjnnhthJzfEWtJSmT2No9SxzEJF + G7X/U0MsDBmJogjdjLtf37x9B8sMVDbP1+KdpXLP7ukN0zuRhxz3270+5dbLmzfGDS9MCI/vcsrE + FKWkVO7TMfWAk9PAHWccxw3BHmKzUIQqktqvZ2e3JGmiYja9nc7PrgqFz7DchM2qCazVqu/5VeC8 + aOjcO4g4G40rpdFf5fHuzv07O8sKqhR5X5W/IibIK1Fu+La2qKEulRIZx+z5wPXuPZe6psUHWr6t + mKNYnhH4TCaT7+ZAjCeJ8AvxmeH5b1ETtRN1kZNSIPAoTSHYgRVkOKS2VTznCAjFMSavgIDRPCLH + dmMmGdJTlzCOSYYc4HxRSsAWwsBiGTJAYKFa02xn1+G0aIkrkq9rzZyOS36g0h3oEiCWA5kWdsEq + CLtrhFeDm6C1N5Nspair2LLReNYNmz+CkCuZvhfyY3x4tni2SBc/p4unsQsas7Giku5BElq3bKxE + GxDhAZIBAE1YqLhDb44I6MOjImLjd1mGnT3witOCf2YSDAXitcF/a2n7rrMlZ1/bFL6NmyiybnUZ + krQJgqs525A05SXXaTpTrNhETs/IGRQFikQd/nNy/g9yLUpmwxU/yCBOLQOQZL/03noGQNAy6xEF + coAslNqXZZREWeaLNcoGvzGtAHQ25sH2WWdv5J+kQ+3URE9a0j1bEsxqT3GwKZbe03Ls9U8/fYRC + s7XhY9ziAWbivB2fSOUGTyZ3rRczc0yWJUBjNZvCyjQyvp4T8gQrJMPANHC2+g5Zd16WKUspFCiQ + +MWv4uf54unyazXx+eL58lTBe774+3KsQnoBD0MF4rrKATBmod3+JVj/5WE+97toxVOwT2GKJWSC + iXy++Pl88XTSkmRYifAtrarC6X7xuxKlSwj8YDMFYCVryKDfbl779VoWJjwxxMIQivdMU1CTrqZA + Mr1rT4NvS6hknkFF9S61XRvUs229B/+pgY+nql6rTHJzgq/y6bKfIzFImU3CUI/DLSnPJxH52usI + ZGg5nUdduU3Iv8SIv4aIPiV6JDdA4sjqCUEucz5cXn9NSj+/QER/acj/YfS0HMo61yN3+IsgRUdP + ZD4eCgZqmYYA868B8eUxbV/gWT60x9/tBE7uWk0hcs9d5EL4JAN/mB2zSRDg4IzgqfHDuOI7KNah + 1vb5m9UebFtNL006japsqUFnQ4Lqmi9DTV3d7J9VBTOGPaW+u6KhJi0GNK1wKh2uAV96T6Gv6HBP + fcss63Imm44OVGN0n7ygBXbKDYLPw6LQMB0IinfQCfqn1j6YkzwJdEC6VqmZmWyrRVbPFouIAFYF + WI8fPx7Mgk3JGKfI8/evoxZBE/9t3uEvKQc7BjPM7CQvmyVJt3MPzjGoxzn4B+vSoz5IErB80TW8 + x2dQ+mfTRyoZlIXB4cw75wGVsytTMl3LEtdng62d/iY3JScMXrMxpDDvxusD5pkpEUsyvQgxWV18 + 6YL+w0UHjOH9AJwfLiopDhwz+8KP+vG1bWMvDr7/h71dvH24OIw7cPowqFy9zmnNtrw0tv3Atqk7 + hX5X8wT97kt+gAkBbyxQfWzBT+wHc5tBitzDJEXcKEXAl5iw1NvYDBZejOvGR31wu2O9jQRfxO1m + M5qc8l9fxtCLKAC/oWlo5nt/6OR+JyDXA7tOmc7bIkFKxnK8y+nqN3p6Lc1HdoTwg3HQjdAm1cgl + yWql7S0O6CfJpi4zMwnhdOivlSqc4nKjvB02PWgMBYBU7O41L2uje6rFR1YaUcEqMas4KAInTSVM + l6QyYUTslQNR9MCQG9XhUTRS3IUDOFfWzEx77XVDREyZMKulaEgjNI+2XmyuLNxAhsQwlypszf07 + sAXEb4+9MzbO8hqshSiQ9x/D65p45B5mYAqH4cvRAy5B0TzQAko929C6wCsxQCpQRXMIoDVgCEO3 + 3VuzlFEbMjC4OkAYBatvmJbH88sN8HNVGe8CK7z3bKZao4XFSTOa+psBiNNuattosKSKMMg9WHsk + y9El2qYW2iEMuM9a2G81sLh20n0twPy5W4HH4OcuEI2lVnVEtzdi8aAEd2CrbWxcsHRnQLcKJQ8j + NJgDzYXnCoNm7JquVe4bx8o/D75eQiEFlO+CHrtyuhNBPzKn3YmhM8z0aT1le9qIARYR+sYNIGNo + qx+dIS9bM7BtaLlCkHcvOfAj6X3q4rDbdI7fN/htQ8hPxmapwcY+FieD8WiwBQ43Keh+nVPyKTpG + n5fwb0DUKcGtc/3jqWHc+HGUCj3H0HngYE8YdI4bsmU6LQScKvTjeDmfilpXtR62Y/Mf2y02R9/v + GO3BfVvXOLK30zj+/57gR94ThJntf1hQBkeXvlLuDVyC63u/Ncw8qkUG4IQF8+TLdMMBOs5NQ3F+ + 4BRb/ULYe6bpQzR+tMnoakRGJlCIso66pgc5pa//qWYWMhildwvjcDc6LHWrZoz9VDqE1yHcdUUn + 3ccRxBqwTFrFxgAO5/skHPaHRG3WWbbYra5p9jE5gUI9IOy48nHXzDrKBFUiOoV6Uc9JVmQ7fP0P + D5T/BVBLAwQUAAAACAAwMHhTkpkAmswMAAC6bQAAbAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk + X3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3Zwbl9zZXJ2ZXJf + Y29uZmlndXJhdGlvbnNfb3BlcmF0aW9ucy5wee1cbW/bOBL+nl9BZD/YXiiKW3SBOwM+IMju3hXo + G7LdBQ5GINASbWsjSzqKSustsr/9ZkiKot5sJ3XSJJWANhZfZoYzw+EzJO0fiJ8EYbyc5mJx8o+j + H8jJwR4gdp6kGx4uV4IM/RF5G/o8yZKFgHKeJpyKMIldchZFRDbKCGcZ49cscKHvm9BnccYCkscB + 40SsGHn7+mNR7JLfGDMv4rMgYSzbpDz5k/mC8CQRZJFwEqk2UA9va8VTihYwsmQxAzGAyXxjiTe8 + GJGzXCQXLBOq4b9Vw4TLrisaL1lG1nRDfJpL2n7CObKdsxW9DoEtjQPyKYShzRmJEqATLqR8PpIL + caiGuXtYtS94siZik4JVSbgGPQtyFm8ccpZtYv+1AJ7ziDnknEaR+vRz6AtHDTH0HfI+RR3RyCEf + Nyn7g3KH/B5DyZEm9onyGGhnR4oT/SvnzIXxM5ciBy+lS5u15rr+QJcs0FK8CTPR6M0++0yyzoq+ + 51HIYgGWWMGf0Je2+4XzBCT6jxApmCeF1kwXwWuSc5/98hmoZ7XCd4n4NQFP0sVrmnoMPzakSMOU + RWHMChk+6PeCWWcHV3AaZ7KPPXRb0ELs/+WsZfxpEkV1xb25eP8BihnXinuXfFCt9Lt+e8vEKgls + iuvlWnSp9ezirVTDr3I+tPfSwmiTUr722sQDSloC7Qyu6xYN1uDoUUZoRjz18ejoI5kWPjUcfByM + js6jDN+huHC6WeGWs1ld8zNLeU5TuZfgr8qXZ5lAfcWby0v95+jIj2iWkT/S+DcMMPw8iRfhMlch + KHufMv1pckTgOT4+3tmSSM2QxBS4R7Lvf5OcZKskjwISJxiVMkHBeWGew/SHea8ECUKMFtHGJa+h + AaMwMTZlR58zbE/1BNBEfKQA9kIuFlkwqwp0SACjDhWC+itVDtqnMZbwcJ4LpmWchNeUawNNIP6G + 0EwkqkAJCL1zjL0yqILUZphkyZM8dRUZgbYryPxtuVDMxKeEX7nXL8cvx974J2/8wtVOIDumlNM1 + cMLRTYpR4hgw/EO8hugozZy5lfbSFNDeNglJFqaXIljpA1UhjcK/GIeBQuO5XBzUSMu6SpeAbetk + 17qFtyi1ao+flg6PpQFbEM8L41B43jBj0cLRcjp6QI4liFOhPyIn/yLvkpgpt8QHCbieIgCc1Ida + rSEADUpitUYWH2hmc63zkkIiL/lBDUo5Pw5tycSw0sMxb1zHXk/6jBfTNZsQnJumxXUae3LF55qN + Nmpb2x9/vIKVZ6k8SGrmWOvZbZ+sx6XWwEQXDOYAuwbHxlU4YIKGYCtwHtoRFfRcsRyjdTwfV8xU + qMlBsAIpI6Mu2oa0nENdmqpLsENfKMtu5oBIMI5zrZCgLsxuo5QdrtgGJjpELB21wSExohA/z4RC + ISAMJ4s89iVrDGAGFqUYaAJlDxkPUQ9qkTUMQMqcx5OOoThIXCgL5JHAcYMAw4LMyKKDouwbpDoc + yqJGQwiRhlxtnXUb4MR2RPPZl7FCOTWst+lwACUDR074ESE/ECWyXiNnu7z90hCWwMYDiAPkv5hS + fF6NX0y2oapX41eTLsj0avzPSRvGMgxumgK4eRrAEjW0B2kqYahfbkaljWgaejCqDP1kSo7RKifj + n07GL0qVUR91jLU0TSMt++mfGQy/nK2I7WF55Dk41O8Xb0x5ziMZECGoQdBy1xACQDg6G0DF4LJU + eLiMwZ6mW0rFylOpA+CgZb4GrWUNzQ6yfJ75PJQe8DoYTOqx2AUuw2M7pLp2Fy8Mjh2yrdoBHoIP + Rk6VbxE6/o2R4x3M0C7WLTEGOLaUdjC6bnW7bRy3BhLgvbW+KcVNmyX1UuhqAyFf+OfAatFqt1G7 + m8joyiA1ykw14A++8coKtPhN6SRVnNnZazYArz7RXg1ONm1oSvYYHlvOD5qx3go9tAu+AuhoS63e + by12o9tscCanWqvIqjXILJuguPJDU1KN4uq2QsggjVTXltMUpAwPRZ7lFdEdyNJPFEBuhbhn8jGe + x0NepAsgGaPr6a80wjSswBIjS1RDtMHIXUE8N2/l8CCjN00Ajos882R2r3A/mb0cjy8nlUlk0s6h + 1X7aRsQxpE21U8bVqfk0qtCX61IzNx520lLzY1rNCC0LWrgwMGa0CoeD9tUIYntDjaOK5hAoVGWX + K71cvxtdK7A4kOuG7WWyo91C1tlBHqeBjPMTMji1A2t2+qUauW9OKxEV6hsR9uY05cl1iBPv1Gwa + ue8UnDhtj5NApzuA3gxuGstPDWZ7Kif0wGZqTZUZBQz3YcB3Z9typk524vHDYPkeNt0aNoHJBAjt + CbXXYpE9tqsgkjdxlcXoQOCr05V7SNZDsh6SdXWbDc7VXD3BuLYVmNUmtf1qZN/C5xDQb54EG69g + rALOfuO2O7YIgNXDPVYjkKgDmYy2yTgb6Hc5ervBLlCb5vuDWpwLLcyfONZ1yMvxi6cOeLvGOZ3C + 6MbVwd0fOO4W4cVDiXD/+Hw3DnjyqH3OlmHcGOczgezVA8rdQLuyHX8udZJ17r6Xe+rgixD3goRl + 8UAQhgiaABtGlDLVfr4sxmPIgsX3uaevPC0gVnqh1fRVu/w7BLUd6kMJc7Ic0wTc4E+KE82Ea3FK + 8fZT5l68D7S5f+9nGgUD0LHEZmGcq8GI5IrFkpVVSmQpKhEoCcoFzJlUTjmiTu5JRq8ZUqN4wNvg + os/twZN4zuQha3lq7xAJEmRpnBRN5akKLU1UnPzrc1BsnILC8bje1MFYgP1yU3MaqSwjwTxJIqT9 + d/PWg9tynaExlBAgoW4PawUY/ZpGACTZguLhD+IjFEWEMFvmYH+GavukhpVJsSFaWSf2GFpg1Hgy + uDk5WwA9DdXwfk6Kd5GKw2QpRXEUdRaXB/IwKathUHmDapoRFoIj8K45e7ezq6bWyhj8VTPg0uIo + z7f2Pt6qRPYSxGrXqG7W6FIAIOiP1oaNvGM0Qxdpu9tSCndv+z8RTwA6RXRTJV9NuevuN6im5JXd + gnpb07K0LU50Ne3rY2rEheYQzZ0ZmHzlMBC7lVTBk6sXCPDh9JOnva6WV+zcZDQkmqvbtG3jotFx + 67oz3b7/sD+xclnoJmnlYw3C4FLTiK7nASWfnY3z1wT+NBpVIFFpW/PatX0nzdjays7UTUNrM15e + t/CiBJwKMj68heclucDUs4nmHyRRKByuniwoF7ldwtDSt5Iz9Nt/j2/7z4465oJgJkP7xCzVaxnB + wUC1O4NDE3EdGXwTtb5MvwwWIYS1E4loTq5DivmfXIpOZGp1YpbwwY3T7g3T1lKHtOyGgGNWZJeI + qEt4c/9yaBNoba8L2uNya2pdXcxdRHdecx1oxuIq62n1tSW2NUhOS8HaQiHuNU3tjadmo3KiKrKI + nefUv5p2xKtayKyocrdqhhVhrOXM6YqPTk1JimV7ev58th/0Ii7oMnuMew4fQa73Mqc40NEgoM/f + 9aZAB+RGVTz3TYBHkfDvl+Zre+wp6B1y/dLFHjC/7+8s9ofvj/Xw3VoS+uP2p4e3WyzaH7f3x+2P + 4bi9XGrv7YidCn/1nR+yP/Xz9ad8YN22dj75HBE3YNhDXydtJnnVTepbwkws/h6g5MFuYFZt3gPB + Hgj2QLCr271+FUZNxO/l2zB4Q/Al/vfqqcOY2+MNXKMsnNEVgp88nlB76tqvvxGYqN2KkPCgskv8 + sxSv+/bZc98iVuZ53N/87m9JfWe3pHCa3sOdqGpy8JyuNlVH1l9f6kxlTcdHcWnp2d0tutsFoBog + wqfPLxWjR5Bf2vPxfi/2RInf3+UxT3+X56vu8qgV4KlnUxiMozAT3nzjVaPG3TOqjiyp+D3I8qge + f5ux49fvLqRhat/kwfaQSQGwR+DWoQbcAaC1XOlxJVkPdisEgbFQPyYKRr5iFZisofBOG3wNTrZ/ + pdOt/jznvl8g2ClfA3B/o3snezhzf26gHgw6kM7BTESUJjcKhzH7DCE4jK+mUtHVcL5t8xWfO27A + tnY9zCYsPjKbFcSMrAlbuw5Qisfacm8P0nufpxTPfri3eL4V/jX8HwoH43OzTf23PvHYZuqWg4/i + udsBSFfv+zgIKZ6D/uIWPk0UV9rAzKEDK+zgg9DAU9MttVbuWsNIOPWFh7P2AN+l2bnstF9nsJnI + 0JIsPAC06+oPtAbuNY1yVo9qrSl4jQqCBLto55duXGNjRBwqZTe/4F0j1aJWRPBIYftCUtq7c/2p + ufr9nn4pmW5/AqYNccsrPPjc9/mXHNGhz8Asl2moqHGZpoozq3lv4SVOZRrWtht3LLXfPtPblcx1 + pW4PlJh19FSJma0hOy3rk6I+KeqToj4punVS9IxToD4j6TOSPiPpM5I+I+kzkrv9wPRhkov/A1BL + AwQUAAAACAAwMHhTGgru14gGAAAhFAAAbAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3Zwbl9zaXRlX2xpbmtfY29u + bmVjdGlvbnNfb3BlcmF0aW9ucy5wea1YbW/bNhD+7l9BuB9sFwrtFimwGfCAIGu7Am06pFmBwQgE + WqJtNjKpkZRTN/B++46kRFEvdlegAgJL5N1z78djnqFEpIxvFoVeX/wyeIYuftoDYNciP0i22Wo0 + TiboA0ukUGKtYV3mQhLNBMfoKsuQJVJIUkXlnqYYeN+zhHJFU1TwlEqktxR9eHdXLWP0iVL/ob9q + xLilyaX4QhONpBAarYVEmaOBffjaOZlWtZSiDeUU1AAhq0Og3vh2gq4KLW6p0o7wrSMU0rJuCd9Q + hXbkgBJSWOxESGnEruiW7BmIJTxFjwxMW1GUCcBha6tfYuCYMdULxz/X7WspdkgfcogqYjvws0ZX + /BCha5JlZJXRCP3OEh05m1gSoY+5cQrJInR3yOlnIgcl2yORHFDUwGGSb4WkGCylmH5NqOVSlYjr + jFGuwWtb+GGJ9fNrKYWM0B9a5+DKHKhpuQSfopAJff2VKa1aizdCvxEQ9XJ5R/KYmteOFjnLacY4 + rXT4s/yuhJ1kwFoSrixP5SF14EmoaKX2PwUkQQi02+z0KSdc3X6wSr+xmVa6DWNc7e8g+JlCRKHY + vQ4Gd2hRuX08uhtNBteZMt+wXMVlWUVuuWxbuAyUjLpG3ENIXbiXSoMrIQ/u78ufwSDJiFLoc84/ + MU3fM/5wLTiHJDYWfcypq081HyB4hsPh9wjBLBCPhF/AA8v6tyiQ2ooiSxEXpk6VJpAikPlQEFAJ + To2UmfrJDhi9AwJK0ggdasZEUkNPyjQrQRKDAH42UgJYCIcrfQNg6pBoTZKtWwffE25WJFsVmpY6 + ztmeyDI8c+hIDMi0cAtOQeAuTDeybQa09maijRRFjh2MNpGrYP4NEoZT/SjkA96/nL2cxbNX8ewF + LlPAMuZEkh1IMtbNKyuNDaYhQgeDfmGDrHCDXvA12wC9/S1KhcTacznABg9sMZKxb1SCoUC8su3S + WVrvNVhSeo4p3MVVsji3lvm+qNPdrKZ0jeKYcabjeKxoto5KPaPSoChQJGrgT9DFb+hGcOqy0jwG + AMcOACS5l9auBwCCGqxFFMgBslBqW5ZV0siyL84ol/zGtA3V4wZH5L9k2eFimzMxJzs6R6YyPcUG + 8veRHPq2El90fbvQFR7i8yTPnz9AR9+4jLOeHJZxwb21PaydDBG9pVAydA91YI6xlGrCILSQawTt + c44UsFslAj3L4goyqdcBd1vqN1w1IbNhsI0o0O2t8wqu4WyhnXJnW2rTqUZciL/pB+9Eoo3acXYb + 2LgldEYTvy9WbRH9Qf0xOScTo6Z7oAdoTtBly3MGish0QZQUSrtZAmRJtC64hbBN1w83uWmOqUsK + 28NNWNzx6wVIqgvJ5/1nTWSwtcuBItPGKpA/rlAmAYzR5P/21f6cDsAIg6bu0VonOu4MLWEt1DVp + u5srK5yLfDyClVFkW9QEoWfIaVye6cvv1Nu9x7XzTgyTD6A/+VXzXM5ezM8NW5ezy/mpSepy9uu8 + b/TyAo5dBXCRp1AJ49BGvwmWPh0ndYRIzuI9lcokyQINTUwuZq8uZi9qj5HEuNjskjzPSt2nXxSY + X3cLM57DeS4LyKa/bt/79UJmtoNDF4Yui3fQhEA5shzBxui+9jfbcAinZ8uJ3sZu+o/BimIHXlMd + z45UsVKJZDYB3qWjefvwwCBlPAzPAByyxCwdRujcdgQytBxNoqbcqo29NV3sBsrzlOiefgcSe1ZP + CCpb2jkRYdcD7PDzBGjdWs7hthrQMGr3vxPoWaNCzkno63Mgpm+5K+vYl2LlUIHLzDFS4C+Cc7Q3 + oSb9+Ws7OdVQFX4bJjl5iOsNk4rHOnub8/pJruUIyu2iLDfI/kXHL5ZjPAyqEhwSfFV+6Fd8C0N4 + qLX7/mG1O2zL0ZXtAb0qO2rQ2ZIYde1LV9NyHm7HygxfNkhtb0VdReq+Vd0L4+rQAVjySOC60ACP + /f1RFnwsq2sXaEbJbvGGZObaWE1Zk0BVD9oRhLdwzviv2jy29mwYLja6ULH9z4G7QaHly9nsft4o + FX9NHgf0iz6QyEP77ahu+Av/Nmng2/Oye5cfn8Ry9bFo3omDCAYTdurDGCyOR72nJJw5HS9OGo4z + 00tTdTt+2Kmiw9q4X6T2PAuTzDKGFHYvPHxMFdjzZ45G07Dhq+lT80Q5ThudHvY7nf84zaXYM1N3 + U///KHzjhpzp3k/CwBs086PZCe7k06dmU7b7rXv79KnbWo+jY+cM/Q9QSwMEFAAAAAgAMDB4U7yN + +UX1BwAAbCEAAGEAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3Yy + MDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL192cG5fc2l0ZV9saW5rc19vcGVyYXRpb25zLnB57Rlt + i9s2+Ht+hUg/JBk+X1pusAUyOLq2K7TXcrsVRjiMzlYS9RzLk+S0acl++55HsmX5Jdm13K1jTHDE + lvS8v/sekVgkPFvNC708+WHwiJzc2wJkT0W+k3y11mQcT8hrHkuhxFLDvsyFpJqLLCTnaUrMJUUk + U0xuWRIC7Cses0yxhBRZwiTRa0Zev7yqtkPyK2PuRX/UhGfmTi7FexZrIoXQZCkkSe0dOIe3jaVp + WEsYWbGMARtA5GbnsTe+nJDzQotLprS9+MJeFNKArmm2Yops6I7EtDC4YyElkr1ha7rlQJZmCfnA + QbQbRlIBePjS8BcjOo6iOuLh/ap9KcWG6F0OViV8A3rW5DzbBeRc7bL4pQaaNykLyFOapvbpZx7r + wIrI44C8yVFHNA3I1S5n76gclFg+UJkBUjWwJOinQrIQBGchRdRRTlc+zZLc5i1dsaQk/4or3YFm + H2NmaKoK9mnKWabBBGv44bEx2jMphQzIL1rnYJccbrNyC15FIWP27CNgV63NC6GfC3ChcntD84jh + Y4eLnOcs5RmreHhbvlfEDgKEWtJMGRhfdJ/Riu0/CtaUf7Pa6ENKOL98bZh+bty2VHoYhtX5Bjwp + VYQqEtnHweCKzCujjUdXo8ngaarwHbYrqy4quy8WbQkXHpNBV4hrcAjrLAulQZXgVNfX5c9gEKdU + KfIuz37lmr3i2a16kzMb4mo2ILCGw2H/MTHuQ4TbCAcG4HdRELUWRZqQTGCAK03BHSBkIJIghCzJ + hGPgpbuQvIQLjIKr7WrAWDK8T0uXKpHEiAF0ilQ8tKB6mzMQAQYw1ZrGa7sPeqYZ7kh+U2hW8jjj + WypLU8wglXG4poXdsAwCdIFpzOQn4NqJSVZSFHlo0Wi0UoXmT885MqY/CHkbbp9Mn0yj6ffR9HFY + mtsA5lTSDVBC6WaVlCgDZlJIfZBojEFV2LgvsiVfwX3zW5QMiaWDsggbMHDEaco/MQmCwuUbk2et + pPVZAyRhx4D807ByEavW0rfntWvjbsKWJIp4xnUUjRVLl0HJZ1AKFHiMBA38E3LyE7kQGbO+iAsR + hJFFAJTsQ+vUIYALNbLWJY8OXPOptmkZJpGWebBCWedH0VZMjxsQgXuTZTaLjM9EGd2wGcEodDe2 + eRYpiK2jZxDtt30XvvvuFpL7yrqUUdWwVHzoheyw1h0Y6pJBJLAtuDeWtYRpysFi4EKUvHt7QZAe + QXploHhe0SvM1Zq5AxsZBA8QIeIv2QhrXCZiDumlTbKlHSR2B+xdnR7E62n2AHLUIDQDWCFlqbrk + IMGmoepbt2wH2QDSWpnEwWsx7ZC4UNpWfSArybLIYhPRmOVcG5JjNkqsuUzSRPXZ2uYIAGuFzGY+ + 0wFi1NY8RapRLKA6rmAnHjDSv2v68j3LQ0E5ZEyHo1Uaw0719z3SPccmdViXDnORj0ewMwpM/E8I + eUQsn2VxXPT6+rXDZtqFCBoHwPnZ7eI6mz6eHetVzqZns0ONyNn0x1lf5+II7LsMhEWeQJka+5K5 + Q5Dv835SW4PmPNoyqdAN5mSI+j+Zfn8yfVzricaoWDyleZ6WvJ++VyIb1kGLrTKUSFmAv/x2+crt + FzI1SRESGySucAMJAJijixEcjK5rLfNVBkZ0YDnV68h24hFIUWxAa6qj2ZEqblQsuTH7y2Q0a+fj + EKiMh35aDX2QiCfDgBw7DoCGlqNJ0KRbJZQXmE8uIAAPke7JPECxZ/cAoa31tWMkGukHkDfej6NF + F74TapdofPxus0tk32f/soiGpVmRAvwFUFZ6rT3pdy6TURnMJ8odQ+cid1F9gH6yr12r2YsehFqM + IBZOylgA15x3dGIgxkMvZEAd3lulh37G19B0+lzb9y9muwO2GJ2bAO1l2d4Gns0VZNc8dDkt+7+2 + rbDZMEZqayvoMlInlWrmiarsD2jpBwrtcQN55GYjWWRjWY0UwBmjm/lzmuJIVDUdE49Vh7RDKFxD + 6ndvtXgwVrsr0MjrQkVmxLYTA1k8mU6vZ40YcSPg2Ls/70MSONTuOKiz8dw9TRr4TQnrzqnjg7hs + fMyb855nQa+jTJwZvc3xyCtcUAY6ups01IUtQ5NhU/NNUe+ANrroxJQY37UMoH/DnPn1AH3flIQZ + GZ36OVidfm4m+f1pI/nCeScZ709zKbYco+3Ufa4JL2yPcVrmPgD0kuv+1EuJ9VGVIPejfadUuVkj + haoc3eyiKjE+THfebb4bX2rq9gQ/nvgT9KXpx4bXjbYcL8GkCh0ftmy+7BgOtN1j46RI8Zpp2P+j + vfo/1jXDhMu1/VAIznPL6s8NwDzjgEOSfit+ZY/d+foWNj+7Le7Yi/czde2R/ZZ9+SHH/79Ftwtz + VS4ZhA8mblNsxxn7qE0jNzfabWb8Y90Lrq/sYHpB76eLwQW1C6u6k6wpU1suf1aplteztnP7nQeY + at1tkKnWtxpoHP1/arBxBB9mwMG1P2bXL55FjvlQz0hSra8bTQ5BP8SIUq17HQBwQUpm3dizNnDB + ec8Ku3chyt61xFtrrf4cC5JIGusIk0K3MW5l1L/v0fuLWH+77mM2iUosI5ayTfPzchJuaVqwdo7s + 9Pc9WLC58Ld6ddMg5QyLnQqWFO8/ei1UPboEO0WI4XhZqo18sJq1/Pth51HL05fPpKUhvnAuxfXQ + s6mR6L7nU89lOirqDIvN/nTcQFJ5SdCIPXfFinKwcP+7Js2eufIvUEsDBBQAAAAIADAweFN8Ycuy + KAkAAOYfAABqAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAy + MF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fdnBuX3NpdGVzX2NvbmZpZ3VyYXRpb25fb3BlcmF0aW9u + cy5wee0ZbYvbOPp7foVIPyRZHE+6dOEukINhbtsrtNMy2+1xhMEojpJo61g+Sc40LbO//Z5HkmXJ + dqa73N6HhQsME0nP+6se5RnJxZaX+1Wtd/O/jJ6R+R/2AWI3ojpLvj9oMs1n5C3PpVBip2FfVkJS + zUWZkuuiIAZIEckUkye2TQH3Dc9ZqdiW1OWWSaIPjLx9/aHZTslPjPmF/qwJLw1MJcUvLNdECqHJ + TkhSWBg4h9XR8jSibRnZs5KBGMBkcw7Em97NyHWtxR1T2gK+soBCGtQDLfdMkSM9k5zWhnYupES2 + G3agJw5sabklDxxU2zBSCKDDd0a+HMlxVNUzT/9Ys++kOBJ9rsCrhB/Bzppcl+eE3NCioJuCJeTv + PNeJ1YnnCXlXoVFokZAP54p9pDIhP5ewM3LYD1SWQEyNLGn6pZYsBYVZyj7nzCCrhtNNwVmpwXgH + +MdzY+4fpRRA8x9aV2DRCqCZ24KlqGXOfvzMlVadzVuhXwpwvts+0ipj+LUnRcUrVvCSNTK8d+uG + 2UWEVEtaKoPTGEqdyzwUtBH73zXEQp+QKIrQzIj95u7de9hmILJZ34r3Fsqt3eot0wexDSke90d9 + yazXd2+NGV6aEB7GcsKkFLlkVB6zIfGAkpPAuTNN0wbgCLFZKEIVyezX0egDWTVRMZ18mMxGN4XC + NWw3YbNuAmu97lp+HRgv6Rv3HiLORuNaabRXeb6/d/9Go7ygSpGPVfkT10zdiHLH97UtGu8qZr+o + 5YjAZzwefwOOGKsQ4TfSkcH8l6iJOoi62JJSYBFRmkLgQlpCtkKaWiG2HJO7OKfkNQAwuk3IuUXM + JUN46oLfEcmRAvgKuQRkwaW2LiEBLBJUa5of7D5Ynpa4I/mm1szJuOQnKp1zllAuOYBpYTesgIBd + Y6k0NRCk9mqSvRR1lVoyGv3WkPk1CJ+S6QchP6Wn7xffL7LFD9nieeoCwCBWVNIjcELtlo2WqANW + ayivUMyMi1UawRtPAHzoESJ2HssSjHDgiNOCf2ESFAXgjanlVtP2LELZsqeQwtO0iRVrVhftqzbY + cXfLdiTLeMl1lk0VK3aJkzNxCiWBIElEf0bmfyO3omQ2KPGDBNLMEgBO9kvn1BMAgJZYByjgA2Ah + 1y4vIyTyMl+sUjb4jWpb8VAWgm6NikBiGuEnfiVdFc5MBGUlPbIlwSz1ECcudU2L7IGWQ8cuJpZk + 7OybvmJ6MEtdgRi3uN999wmazt6G34BZc+M3CwN1r5pOYGeSGKgZIc+w/TGMVFOr1rh975FNE8mg + nQCJr34XPy8Wz5dPdbAXixfLS+3pxeKvy6F+5hk89gVI62oLJWEaKuIPQZ2vj7OZx6IVz05MKkyi + FRljqs4XP8wXz8etWUSpQehM2wIdkB2HR+OEjGlVFU65q1+UKMcBoxy7D/LoAY08EF6goKjJGjLt + 57s3fr+WhQljE7OdUEuPTFNQmK4nADa5bx3F9yV0ME+kovqQ2dsa9LF9fQTJVc9bE1VvVC65aUOv + t5NlN59S4DIdh2mRhigZ344T8tRxAjy0nMySmG+TGq8wM24h8i+xHsgh4Diwe4GRy7B/Xt8+xaWb + h8Ciu9Wn/zjoMVeRnemROvwlkI6DHpkNh4Mpy0xDqPpjyG95ztoD9OVj6/74BnARaz2BHJi7HIDw + WfXsYTCm4yBVwBjBqrHDsOAHaOyh1Hb9u8Xuoa0nNzb75liNBgW3OL00DZde9if4XJvUfZKDzW40 + i/nSt8hGbM9Zw9iWkN+md4g4IAAeT2VzF5x8oxkEeg4ItJ64tVE1BOi2n25oVzCK2aDuRlfSNyhG + /gD3VrRmkMiku9ECO/pA4SYXMc38wCHrsrUBmJDR4+olLXDOaHreLFDBE+0xSg9wj/ar1nswZXoQ + uHPqWmVm4rSXW7L+frFICPSO+2VUavxwNQ2QVkOUEk/fHydtR1v5b7OIvqQc9OhNgNOLtGytWcVz + zyzSE1p+rIRkupYl7k979rJ3A9NSLZHL3Qmj3TSoJZlchR1BXX2NW87jVdQK4LzXGh6vKilOHOvK + lX9gSG/thfuqKfAUacfV/vHqVJVRZkweew2zc7nbsD0vvWJ/kptdPDTbu1rrV7itv+InmG/w7URR + Ncd2BcNPo6R7Uwl4KjOZgPHmiptxCwYqr3MzD3n6bogYtMmHA+sgEjxIW2Rz0bpkzy6PvlWRAX7D + oQj1+OgjwOjwcOD5IVYOIWHaDtVr+xUpGdvic1Is36A3+wZwPn3fdjtV4/0PxsrQ3i3nSLC+URy9 + 3zZnfiuCWuqf2BlowNDtHh1MGSDXJK+Vtu9eYE5JdnWZG4PhDO4f4iqclW3M2JHeF7M+AzCS6b+8 + rI0kmRafWGlYBbvE7KKFgJKmEmZ4UplIJvaRBoL2xJAa1WHkNFzcEw3EgqyZ8Xr7QJMQ0xrMbika + 0ATVo63Tm0ceN/YiMEz/Cl9m/BnoAuz3547XjbG8BBshCqT9a/+BKx14ueqpwqHtO3ioqRBBJ1rA + ZYHtaF3gIyJUWRBFc4j3DQQCQ7M9WLVszkIRCB5osMSD1ndMy/P8egf0XIPG19MKX4qbtwMjhS3+ + 5gHAv79AssTVxUaDBVWEcQgEaRoD6q1tuqOwwnQX351mARtbfy/aqFPIAkTsgCpCbJ/50l5njCpg + e99w/oxnX7cLAyMGUTD/mlfcNfp16O2xFe6/GqcLKTJIYXqOScSTTDcuJvGkEw1hXVgP2boBM9Dm + Y1fuXsL21fDvlpAVrRp4oWipQojFLw74kfQhcwESX/Muv6l41H6PWA3NgT3EbvFe9Ua7AV6mZK6a + e2YPAJy7Kuhxs6Xkc3JOvizhXw8oatStB/zy0puFMfYgVDjMeEAPifeXPdNZIcD1cE3GXxwyUeuq + 1v3b3Cx2zNBl0Frid1wI8fP/hwfL6H/68BCmnP+FQpnatfQN5GhKFJi+86PF1JebxFQeYQvo6utk + xyGn56bPzk+c4u29ELm7OSfDrl0N7iZkYBiD6InENa35krz+N59pSGAQ3m0M16HB+SbuMyleM7J+ + 3evXoJj1Kl4OVIkeyVUr2FBRwVF3Fc69faD23dqSxUvchuafVhcyv1N8IlN+2zTTSJigfCeXKk3S + MZJlGY9Vf8Y58T9QSwMEFAAAAAgAMDB4U3Y1AsGhDAAAwWYAAFwAAABhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL192cG5f + c2l0ZXNfb3BlcmF0aW9ucy5wee0caW/bOPZ7fgWRfrA9UBS36AC7BrxA0Dm2QJsWmbbAIggEWqJt + TWRJK1FO3SLz2+c9kqJIHbnGTutGAlpbPN7Nd5CMnxE/CcJ4MS34/OhfB8/I0dYeAPYqSTdZuFhy + MvRH5G3oZ0mezDm0Z2mSUR4msUtOooiIQTnJWM6yNQtcmPsm9Fmcs4AUccAywpeMvH39oWx2yR+M + 6Rf+mZMwFmPSLPmT+ZxkScLJPMlIJMdAP7ytJE5BWsDIgsUMyAAks41B3vBsRE4KnpyxnMuBv8uB + SSamLmm8YDlZ0Q3xaSFg+0mWIdoZW9J1CGhpHJCrEFibMRIlACecC/p8BBciqxq5u12xz7NkRfgm + Ba2ScAVy5uQk3jjkJN/E/msOOGcRc8grGkXy2y+hzx3JYug75F2KMqKRQz5sUvaJZg75GEPLgQJ2 + RbMYYOcHEhP9UmTMBf6ZSxGDl9KFiVphXb2nCxYoKt6EOW/MZp99JlDn5dxXUchiDppYwkfoC939 + mmUJUPRfzlNQTwqjmWqC16TIfPbrZ4Ce1xpPE/5bApakmlc09Rh+bVCRhimLwpiVNLxX7yWyzgku + z2icizkm6yahJdn/L1gL/2kSRXXBvTl79x6aWaYEd5q8l6PUu3p7y/gyCUyIq8WKd4n15OytEMNv + Yj20z1LEKJXSbOW1kQeQFAXKGFzXLQeswNCjnNCcePLrwcEHMi1tajj4MBgdvIpyfIfm0ujOS7M8 + P69L/twQntMU7gXYq7Tl85yjvOLNxYX6ODjwI5rn5FMa/xFylr9LmfQ++eSAwHN4eNjsIoJ3kugG + 90AM/l9SkHyZFFFA4gT9Ts4pmCesZFjgsLIlqiBEfxBtXPIaBjAKpr+pJvoZw/FUmbgC4iME0Ahi + McCC4qQrQwDoVyjn1F/KdpAvjbElC2cFZ4rGSbimmVLBBDxsCMN4IhskgTC7QO8q3CZQrdkkiywp + UleC4aidEsxfhpHEjF8l2aW7fjF+MfbGP3vj565Ss5iY0oyuABNyNym5RB7QwYNHBv8nFJm71vgk + nocLGC8+C0VQMtezJEBrDnSFNAq/sAwYhcEz4f4lp1WfNSVgN00ye93SPKRYlU1PK5PG1oDNieeF + ccg9b5izaO4oOh3FkGMQ4ljwR+ToP+Q0iZm0Q3wQgOtJAIBJfqn1agAwoAJWG2TggWEm1jouQSTi + El8kU9L4kbUF40NrhqPfMuVdPWEzXkxXbEJw9ekR6zT2clhXbX0//XQJsWQhLUZI4lDJ1VWr8bAS + C+jgjIGRszVYLgbSgHEagjLAOij59P6UIBpl/oauW0n8sGS6Q9o7wQ6EhaAVdreCJdZBF7d1lDWe + EVkLdEgM0J1miqmgjq0puWrAJdvA6gM3opwlWAkuc+IXOZfBH7BlZF7EvlhB6FV0NpLi6g+kDIWT + QsZkbNMIgKoiiyclrQ5C41JoRcSRE8A4LOeNjImI+66uolSzMZ2G4Jn0/FoAcxtR3zQP/d0XS1Ta + FgSydDiAloEj1tmIkGdE0qiCz3nD6C40JJEieJAsALyvuhWfl+Pnk5vyk5fjl5Ou5OPl+N+TtmxF + I7huEuAWaQChYGhypTuBt6/Xo0oLNA29NctyVP2UHKLcj8Y/H42fVzKiPgoVe2maRor24z/zJD6s + lhBmyRCGsgJs5OPZG91eZJFwPOA8wDm4K1iJQBw9H0DH4KKScLiIQYF6Wkr50pNJOGQUi2IFUssb + kh3kxSz3s1Co/HUwmNR9ngtYhoem63LNKV4YHDrkpm4HcPBsMHJsvOXy/h1X9yksui7ULX4AMLa0 + diBaSzu7CYW1+AG49d4Ee92mGhVDXCVxhAv/HHC7rYoYtetduDQGVUOuuyFwZxuv6kAVXldat1Ow + zlnnAzDTI2WmYDXThiTEjOGhYc0gCeOtlEM74UvIuUyq5fu9yW5MOx+ciLXTSrIcDTSLIUiu+NKk + VKU/dV1hrBVKqkvLaRJSrfeyBPFKhwxg6RWF7NAC7ulSJSviYVZm0kAZo6vpbzTCCqUMyiODVA20 + gchdgkfWbxV7UOzqIZDH8iL3ROErE2Zy/mI8vphYq0JXZENj/LQNiKNB626ncpRT/W1kwReRpVk2 + DjthyfUxtYslQ4NGQhVoNRqNw4GKJ+CdG3IbWaLC6G0TK8KviLGNqVYCGQjPb5qVmGiOEH2mm0a7 + F556QgbHpmvMj7/avvf62PKJ0N/wkdfHaZasQ1xpx3oDxT2VIf9YeTqYaPi868F1I0TUUk5P1kce + qEHGPZFdA0O7SUR1X7W4Js1c9IGJa5+N3J6NQJzmQLTH5WaAAfbQ7AJ/2kxXDERbymk6ra/PdPpM + 50llOq/k4jtCz3RjvlNbpearpv0GPNvIqGZJsPFKxNKD3I1vc2ILAdg9bIkQQEEZ4Ec3EXE+UO+C + PXPAbclgWtw9GURjb0G+5zmiQ16Mn+97otjF53QK3I1t5raYVHbjfL4znLtPZG+PzXuQ3s7YIowb + nHyvua19ENWSoFqbtK8EVznuyap9Tr3RCgYC7iZIWB4POGGYahIAxIjkX27rimbcGNWbsPu2oyv1 + GuCWqWTsXlu7NYSm1t5XAT0vMMPFXdykPEvS6LqYbYX50I3ane9AlwhAOCKdCONC5PMeTy5ZLFAZ + rUS0ojQAEqcZB/tLhb0SebxJcrpmCI1agimxqMNNUG1WMHFOVR1tOkSEPdEaJ+VQsSVOK2dXHo+q + oyQcnIKE8UxT9wEvgH6xqWlbCEtTMEuSCGH/1TwadlvOfBushJDFqPHgG0HLaxpB7sPmFHfuMeIj + KTxcob3yK4Ziu5Js5YJsWOrGoSeuWuAaz142RydzgKeSD7zEkOKFjfI8TlBRHhycxNWZJqwS24dI + a5BDc8JCMIRML6KHnTQ0xVR5rPvZ+IWBQpxG3PkwwvKDVeKllG/vAahWCKloccY+gLhqcY5G0HbE + XxG3vW2FKEsg3Ed0Y8OzK7m6RQ3sSs8qQutj9chKe7h25UquM9FY6k2e9F0BWE8VG5h+VFDBOO1j + VXwyeuUpu6olv7duN2kQzYgxbauHGxMtnz+1q9zuwZWrnraVII2JYAPTiK5mASWfnY3zZQIfjUFW + iK90o1+7dnWEGlpHmfWeHmjslIpDZC9KwCigrMDbQ15ScKxvmgnlbpLT0kLqCarU6f2S1Ja5Vp7a + bwM9wjaQue711aRceNOJjn8r4TRB4rXbSkPt8xzh/hLp0qdfB/MQHMuRSBOO1iHFIkJ4/yORvR/p + uDi4dtrVO21tdUhL0QyWZtEu0owu4vXNr6EJoHW8amj3jK31mR0wXUyZvKYnbnpDG/XUfm3xTg2Q + 04qwNmeGWxJTc3+iOahaeRIsJqQz6l9OOzxOzelZorxdNEOLGCOgOF0ezqkJSaJsrwD3qYZVgZLT + Rf4tCtcPgPedSLUfei4DOdpHVXeWqScys3/15qMUmXZpqSTVgfAB9WWlzkcsMftLTuLpjxUf51jR + 8Jj9QeJ3kEG2qKg/SOwPEr/FQWIV/nZ2lki5v3zip4n7fpC4Vwd1bdFuD8oa3BVgu75v1qxT7L3K + e+Z22PwU0rmt3e+yddwnY30y9qSSsR3eX5cr66lcYcfrSS/wv5f7nlrcPyXAoGOkAl0+dQ9CvtyL + VZb7SPG+dkItIri1NfmLIMe4RrN/+5JSot/X3zX2t0qe2K0SXFk7uFJip9w/0kURm7P+bkhnQagn + PsqNkB/uYsfDLmPUsg58+qpMItrvSxZR4vf3KvTT36v4R/cqpMv+/msQ9J9RmHNvtvHshf7wOqSj + 1ih/96s6CMbf4Cp/9OhMyLp2kx8HQAECyTUmTyVnWPvSWonxjWuTR7sogOknl78DB3q7ZFYyqhLO + plj/Sfpp/qKaa/+U2l2vNTcJaiSu3+gqQpsF9tvY8kHXAHUQrCZMf8Q21zBmn8EVhvHlVEjWdqs3 + bR3i88Dtw9ap29lCxEeUgZxozpr5YNd+fvkYG8btrvTO2/vlc7eEsny+VWKp8T9WgonP9U3iv/d+ + /U2qbtm2L5+Hbd93zd7FNn75bPVHXvBpZlOVDvQa2rLAts6ESgAV3Epq1Y4scJJRn3u4arfwFwLN + ONN+QG5CFb4kmXuQSa7sX88L3DWNClZ3Y63FbA0Kxn2z6dY/JXC1UjGJkMWv/gHVGqgWOWLqjBBu + jhyVgjsDTs22d3tYI2m6/4GNUsQ9b4Hgs+vjGsHRto9sDJNpiKhxPcNOHe2Cs7QSx1p3tY25W2Lr + NyixbiuqukqoXRVIn6wCyWTaLI/6WqWvVfpapa9V0EP9wJVJXyj0hUJfKPSFQl8oPMVC4UFlwQNz + /r8BUEsDBBQAAAAIADAweFM1xnp2rAsAANRQAAB0AAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fd2ViX2FwcGxpY2F0 + aW9uX2ZpcmV3YWxsX3BvbGljaWVzX29wZXJhdGlvbnMucHntHNtu2zj2PV9BuA92BoriBBlg1oAX + CDLTboHekO3sYGEEAi3TtiaypKUoJ26Q+fY9h6QoUpJdJ3XSaWsDbSzq8NyvtK0XJEwnUTIbFmJ6 + 9MvBC3K0sxcgu0izFY9mc0F64SF5G4U8zdOpgHWepZyKKE18ch7HRALlhLOc8SWb+LD3TRSyJGcT + UiQTxomYM/L29cdy2Sf/ZsxciFtBokTCZDz9k4WC8DQVZJpyEisYuA9XC0VTsjZhZMYSBmwAkfHK + Yq93eUjOC5FeslwowFcKMOVy65wmM5aTBV2RkBYSd5hyjmTHbE6XEZClyYTcRCDamJE4BTzRVPIX + IroIRTXE/d2qfcrTBRGrDKxKogXoWZDzZOWR83yVhK8F0BzHzCMXNI7Vu1+jUHhKxCj0yPsMdURj + j3xcZew/lHvk9wRWDjSyG8oTwJ0fKEr0U8GZD/IznyKFIKMzm7SmuvhAZ2yiuXgT5aKxm92GTJLO + y70XccQSAZaYw58olLb7jfMUOPqXEBmYJwNoppfgMi14yH67Bex5bfFdKl6m4El6eUGzgOHbBhdZ + lLE4SljJwwd9XRJbu8EXnCa53GOLbjNasv2/grXIn6VxXFfcm8v3H2CZca24d+kHBaWv9dVbJubp + xMa4mC3EOrWeX76Vangp46F9l2ZGm5TyRdDGHmDSHGhn8H2/BFiAo8c5oTkJ1NuDg49kWPpUr/ux + e3hwEed4Dcul041KtxyN6pofWcrzmsq9An9VvjzKBeorWV1d6T8HB2FM85z8wcbnWRZrV3oZcXYD + 5ECEKIxY/j5jKiflgwMCr06ns+0GIvVEUrPgH0gU/00Lks/TIp6QJMUclQsKrgxRD8kAsoBiaxJh + 7ohXPnkNAIxCmKyqjSFnCE91OGgkIWIA6yEVCy0YWaU9RIA5iApBw7laB1vQBFd4NC4E0zwOoiXl + 2lwDyMYRgIlULSgGYXeBmVimWODaiElmPC0yX6ERaMkSzV+WQyVM3KT82l+e9k/7Qf/noH/ia5eQ + GzPK6QIooXSDUkqUAYsBZG/IldLoue/Ap8k0mgG8/FtohtKp2aUQOnvgVkTj6BPjICgAj2WpUJJW + 95wtE7Zpk33XL51GqVX7/7Byf1ydsCkJgiiJRBD0chZPPc2npwXyLEY8B/8hOfoneZcmTHknvhCB + HygEQEm9qd01CACgQlYDsugAmE21TksyibTkm0qoGJJuzwH2zBXXSTiQ7hIkdMEGBIPUQPz00zWU + lZlyCCmoU61GHa1Ef0NArrCqQDYoYtG5qnQEBsEb4PpQjNNp2SQIMCI6TKZjGYo1+DZEh+G2dG6D + SXtEqzQfASu+KynUkRgcMkrWKaQCu2YriBkIfp0OwbYYnCQscqHKO5DiZFokSgzMBabfyDBmJ5IP + lVqQoKpehgBnouCJ9OhIqN4GbHjNqvQCkjDQCfRe2ykd+dGiy6sp8twrKR9apJF7kyIanYPvtgyj + 7VLJlp5xZbFBI8hsLh9VsfQbHYbtUeZ9KENcOS8UzazXhZWuJ+P0kJAXRMmqC93D/dgQkt1KAH0L + kLszq/g6658MNrVKZ/2zwbo+6Kz/j0Fb42QI3DcZ8ItsApWmZwttboLod/eHlbFpFgVLxnP00SHp + oNmO+j8f9U8qFdIQdY53aaWR4z/zNOlUsYcpJuMMIpAFuhz0EnYrAugQrodS2wNHK9jhgyfzArx/ + DiUVeHDuq7VAhjSDAEAz3t1XFnMbic1bR91zKUP3SuZYJ+v6CrrXUWJ2PC2vR7qAHXogBzUMCdgn + GMlcmepy/X75pnG/4HHJBKZkHzikYC466sIdYNAIGM0S8PjG/oyKeaAmJWj7ZsUC/Clv+Fz56paZ + 7BUmsnegj+6goQEg3Ou0pDzQRctqqRivnWBejPOQRzJIX0/WUbOLlW9vCaJJxyObbq+nf79J2boK + +1p1yAX886CytWr0cKNhK9dqgIHr89Wj3LZt96gLAXqkA7TVfeUO8N4qjtGFq6t2P8aXDtO6gmZM + KM3UefGageVqCfImawaEsoGJmB0rbOdCqLpb4q20pgYITHMgCaehCDBqe+V0GZg66mrAatUmhklr + sdfdrtJA3m6ScihhNgnSacBitnB7xIm/pHHB6okMO5aGPmtYsEOwl1p15ZAyhsZ2A/O+daRQQ9Wi + W7BbgBg2147K6GtLTs3fG7qDvfSGwszluE1gDgt4kfR4OcuC+zG6GL6kMZ4RlL1wXRcGcYOYP4de + xVw1KooBg8ZOFHkgj6DUOEpGp/3+VdNM5nykZ+0ZtiHyDHpz26t6haF510x4sv9qHuT01uJTOXTo + Hl/UDKFdpqGiCkpDuE1mz0FSeonnxKIBUaI41RWTiiywA9I9tgtKfnznVqz7Y6dkwv1GCb0/hvlk + GWHLcmwOJf13qvU9toL5FbRhN3S1+ZCie9+o+c7QFgDsusHtaceyV0xPZTg1/HH+sprF5Bxm682e + wvaj0X402o9G+9HoS0cjTHxPPR7tp5X9tNJig/20sp9W9tPKflp53mnFKXgPmVieYxxxvP7xHyTJ + EWK13UdMW3WcHWdkuWSCR2zZ/ARpJT8/InnGwmgaQXaTHwb9vT5TUqQcDdVJqJt11HWlfoVZbJOJ + vEeOV18yNn0Ds9J+QiqB1g0GVkMMSWfrWWC7GeDZPhrpqvDcRMEKYMBsXWmM+IWo2yBmyUzMhyen + v8B1lJTX/Tq9rzDU3LfZ7MFDTKtDtEwvj2vCn2Na2TS6P3Jsf6KRfaejyNM2rI9pVh/eqD51k7rz + BvXLhrX2Ec3WX2Pi0r0u1u7GVuerUBNZJxpNsg0h79lJ/W98Qn98V2Xw+8/3x+r7gAFYUNfSJ2iW + qyAcbNkm77jRvpBC5tjZKSnXtNm8gKYzZ+IH6bc1Sss6Snn4hU3oqJVrTBr4LPid9r779n/f/n/V + 9h/6RwFMB0J9i9xC27FvQZ/SnA8sQjsaIuqZeT9R7CcK9frRJ4oLFYxHmL42zhW1qLUvDe8b6Oxi + chmnk1VQElYZZTu57Y0tDODtnj3wbO6fDzcxNOrqaymqDfC5ASwrth/A0PFbiH/jc5lHTvsn3/pw + tk7O4RCk6+/yU7fPD3LrGTl5XkaefqJcW+G/n/ESDBJD9MvfKIHoz/NRjPuzpge2w7j8IzS7u2pT + axbed6n7LlW9fvQu9QnPvVXI/ShH39hineJ/Z99Bn/XArkJ9y8d0E+uS7ffTMIzZDJKmdvBn6Rbc + RyOo+u+cHv8qmcn14ej3c/z75OetJQGgKmfvKCmkiwQivWaJJGWtErmKZ8+ASVAuCEXmwSZEPVSC + 5HTJEBu2yk0q+pESoBdeMPmL/+qBEh6RSUuuJmkJKs96q+82lcvlj/IROIMgwCdJmHsgC5CfrWqW + KVWtOBinaYy4/2o+kMNvedJGQ5QIRn4ND6EOKXxJYyg9bErxSBrzNbIiIrD9GMKSodpulFi5ZBvc + 2Xp8hPq2M8GvG62OzqeAT9cIfHRMBto2TzaQXNi/WLB+o+DGifIGBZqXv1/A2PmSXyc4OqqFZP2Q + fOszcieW7Qwh7elOBnoVWjl0Ims6kM+sGaFd256VUjH3RcNGzFPMfHTlomj0qY5fdN2+0ukI67AG + sjIDRqCKxzrfjYBtimGeswJRceVUuQoruJg7j+GL05tAO4jbgKwbF83GZqIctvX4jY1WGhzarXsD + EOw1jOliPKHk1lt5nwbwpwHkVJFKqeZy3ZAm9dcKZZ9NGkADWX5/N07BmtCT4SOTgrQQeP72ua9J + r/s68oMaD6nC/cT2/BObHVXmoUm5TE8DUyMWMguBKWrPUeqZjOLJ5JKqHDm8604jCNsjWUqPlhHF + vjFOVQPXvffaTT1sXfVIyyQA3uSwK6vvOn7NY6h6NoJWeL3Qnmpa+2q3lPjYSQTN1NZMNC7poXvZ + kjUaKIcVY21JBuesoT10NYGq80KFFvu0MQ2vh2syQS0ZOar8vGp6DjNWhvbWZR6vpiRF0m7gv4f5 + 5P9QSwMEFAAAAAgAMDB4U51NV+nfJQAAkV8BAEcAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z + ZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL21vZGVscy9fX2luaXRfXy5webVdbW/cuLX+nl8x + QD90F2gX2G1vcVGgHxw7u5l2k8z1OAnQi4tAnqFt1WNJK2mcuL/+kqJI8eWQPIdU82HXQ57nEUVS + fOd5frc5tMe6uf/bebz743+/+t3mj6v942SXbffS1/cP4+a7w/ebd/Whb4f2buThfdf21Vi3zQ+b + i9NpMxkNm54NrH9mxx849tf6wJqBHTfn5sj6zfjANu+2Nyr4h82eMf1j/DZu6may6fr2X+wwbvq2 + HTd3bb85SRsez389yWdOSTuyzT1rGE8Gf8jti5G8766/31ycx/aaDaM0/EUatv0EfaiaezZsnqqX + zaE6T9yHtu/FY2/ZQ/Vc88dWzXHzteavdss2p5bz1HdT+g6Crhavqh/+w7rZ/mrsX/76asP/3fXt + 0+aHL0/8kafhS/fyp039xPN93FxUR/5+D6wZ68OUI7uqr57YyPohATweeRkN+646sIRl151m8l/4 + S36tXqj2dgovWT/Wd+IH+cGiKIdDdWKXbXNX359lxSOzPFf1qbo9sf1w+tCJiFReRSl2PTuyu7ph + x13LzWqWz/a5urs+c1I2DrzGnk8jlel1dXhkzXEu3DL0rm1PmQxvWXUaH4rAb8ex4/kw8hYt9z0k + 0Yfmij3xb7iIpDgv9qI17HMpCvKCfykNb854wFVf1Q2nIDOch7F9etP3LTn9P9c9/9/pdFUPonof + ReX+pW/PXS7Rm2+H03nI+OYVgUhBCbYo9fO3TYb3bTPyarDdFTV7imbHo6lYXol51130eFGJf62H + UfSVVGzhm4vH5rWnqvHY9e0tud7sqvEhp77t+vqZ//WmOXZt3YzLF7waUX6GzJS/1s1jUZEYPNtu + LSb+Su25p49nAIqSHMqpKgIkewr+1I6PSNi7ajyQu9BrdqzF6LUoR6/Zb2c+Xr5uz6LHyanB1+xr + X4+sEHox1dWMBtPg4BlxrPMyQXNkpGD/eCZDhlPByFiMQ8Xokzw29wewZIqbno8QeOfO52kFb/Cx + PxXVWo4XDe67itw9f2a3RqDqrPMSQ6rye3Y480r2QhtUWCh0O8WnYG1f/7siNf98usUf3Ld8Im+0 + kWIsWydb2SgWN72R06L6xF8WZXliV+zE7jEl5gMoSToxp2u9eelS+RFBUh/dPtd8NDaIYszBXOLz + 08a152bss6DoVQkQvR/T7YmekMsKdnGqK+yzTAiyLP597tnF8NIcPnRMthBomGpfCKa09iWCvGxP + J9RQMsLBS2ZsD8npsMnw82/H5qZKTTwBBLqhMrG0yYKF7KY2NVVvTEhWCt9X4/XlBbUcBIpW+jMi + q9Tfs/Fr2z9Sn7igsp66O9/yurbd4RawTGRGhqYHacL6mlWHh7kXumZdevIMg7Yje8oC/srbvubw + sm3u2jx8e8B+Bz4Y226//oV/dE9P5ybZtVDXGF9Xg0i9KNxn3lIP6cUfCIH9TGfs2zbVsxqGpPbG + wBHTNL+JGLDwaQkZh+hDFeCh6pnoF8V4jY6QrzXNIHPBiHe777DLItx0x1gv3v+cqsWmKSEp8wAC + +wX4ANKzMOvAr3mWPn44j5e80O/b/gW3M3H5wA6P/mD9Uz3UqlFAlOvlqT0fp+Xi1+0xkRc8B7q2 + Yc04/Pj33368+fN2f3hgT9Xwrmqqe3YcZAL4QLAZ+eP50KMTE0w2fOQxFa/X93zSOsfyUN6oTHP9 + 6tRpy9TzVSV61/KCSK1we+ZXPDfqBvHde0g1/s+E/VyfxtQ6agKc7pE8ArGGS2jsPPz28FSEx34n + HpB/Ct2ZCsJ2fh7wf86sf8lKZwFol1vl94g1Ux90PvBZ/HDzwHvxh/aU2F3z4DeHonpwwwbKEieI + Ryy6eLjPfGw7iB1zXCu84HkRsXHq6Y7/YMk2UaHoANHJ75uq42WCrEXPvF0lt2IC9LZF5p4w3i5H + NgigYTgj66Uwp36uAoOs+2NVJ3ettNk8B9o2PCl3ydMVQRitfsMcpK0Vuc971QwSs7QnP09FFwdf + HdtBEmDWkIW1WEeQtXZ3qhJJ8+2xPYFA4j5W7NLhFRNDEmxre/Vw6FBnTK7qJ9akJze8eN7zWm4u + jaKyoUHmwpu7u+nbYHNVIixRR6EXw9AeakT2RlmwpR4iSa9maKTY/SLZktM2oQZsq6XGbvOYHPUk + G4Ke0SCOekwmV4y3OqdUuoWl2tNMmD5Xp7M4RpdR9751YjlhytLLuj+c69Q7+oCLvrsR81A60Nxb + IaOx89goFF20PkkBVEyWkweKwjjZz+Sit4kxZxhZ8MbX7I71rEl16hBy+trzKpiB3Z+fnqrUHgxA + MbcBalsF231BTKlVUwjDx6X0Jw3qiywosMHIu5Vo5iLIYsv51jWGVOOtpoGA69thyEqmDczKHZuC + 3rqA+KL3L/rybKqVqhDqCDYAoGXDcixpbibEdv6eePI6g/B1e26OhJYivUTtWufkucC9qw58PELt + snbJ7SLXOid9Ajfg9nmCsNdVc/xaH8cHQu5bBDkJd3qlbOCS+A93ooMmNJQOE/Yt9IYlYrZr28rF + V8oOaRqP2fq0WfLek7ihnADTU52ev/n2xvEF3NEFnyLvfW0kYhKThOcVmlijrUaxJnT6/FDz/yZ7 + gp9P7ddf20QzNxvJxSHsLHYGoZcDZ3v0i0tzuYGHTlPO8Xp1SjS9SmBaYt/jFzZ+6po9L6zBShNq + /+3tzQ3lTYS5PN6fsGu7dG/79nyrD2+k5hbClrI+ye2d4yGIJyAKSFkh5mbc9FPdj+dKHXTBjpR1 + kqkLd6RK6RjP29l8DIw6TuOgeWN5V6cyZNvcihEbb9rTJzkW23QzbttiP5ttd3E6oYZBpiWeHdGG + z0Z4zuS5uG03sANmmLHtnv/iLQxhBqwCWLZKI17X+oxQpyhnVOiLQnPsftrz1nJuZ9Go+bE8AdZh + EglPfCo23mnFMhiWjPv0057+AtR3/nzxHg/pmowiySkP3uFNlyStzCTBa30xKSO9Ck3F4Ozb6vi6 + OlXNIdXNmpaU27xhnGiZse2RyRIYF+VQZWH03/MlpBySD+dx6khy8dO9rBxgcpXUe72U+UE3kagl + IACAf4/7fccO8h5Psiudj2rpy7Ef+Cfc86k0GkUGJO9jGbbDlbjZhLgBNmPm5YDtfOIshRkPD8gb + ZpPtp6qv06PMyVQmP2HIxr4+EMqKj6dQlWexw9aZBZGs+agB4DIaWFqeq7q6b9phrA/YqV2CBTPC + jVPgNjaTHOnsXQ52NCNmMAgACBMJ2hEW1xq91+8C0acUvHMulFlSAoyu8XEa+6K02pJAbru53Llp + yumDXY6bijJJT6GJqaB8orMt8QnopohwGqHk6AqEzcBNfd98oAJ5O21mmOcI07JpldzpDoCIb+vC + 5Vi8jCLZDQVx22YYxZ+4jxQgICb989TfJ+YFti3+Cd/Gt22H7y8ncwzzhzs+5GB/+st/yc4F27Lp + +5JIs6t66E6p4Yq2xmaLBriHHOfhH2FIZc4wEpZfq6G77Aftw+ZN+jbt7qe9u5aDaoblksgCxThk + gjGoJWcXSgChxqPSdG7gsZV5J2bB42XVjec+UTSWKeZqhQXA1joLlPUW08UCubtBfmAmAPthW9D9 + 2PZ8NoXbkt6JJm1aAcPlvG2d/u7EOmbBubskHF38U0OJG+DuetZVvTq+qm5v4T4rOfDkY+l/tg3D + rN7aCMT4BgCgM8H2fkAyRpdYqdsjh4AIQ7vI8O2JbwgiERc9fThpI86H5+eQfSBIOgypEhtJMZbl + riKVA49M+ncSyanuq8knDm5jUZ1MIJXCDJluXahmBXNXg3TJ3jFGT9EdHLqG2LDkKF7Z8wbzrv5G + saWmSKKSCZq66BveJIpdsIe2FVmF7euvq2N9HjCuIq/Zoe2PyYVQfVz5OL9Fhyrza5QfNWX1vnqu + 7+fhd+p8AIxB1w4FR7y4WPcSA3w5O8EWQPq0AHqgYhiiX48yrHGMSc8gGSOar8WOwqw3l1HtnbUi + QlugtKCfavYVWx88IObVFIg/ZGymLSTE4cYACJud+AtOpqWxUIvMCEpNU26Vloek2wcYg24fZrga + uGEWykEIdtMoAS5Kdi6YdG1zBt9U+CN5ICT3qYSSnbyYbFOHw8Xotz4g2vH9+RbXzXHDJtXdSBv0 + voc0x766yKYPt8IVfsKu7dpTe5+o78oKnVgFwLaZyh6Xuzd9JRYSL5rq9MILbnD2UHBrDy4JEbdn + 4pBt22OaC2dkh7oCmTkadGBiyPf0xJojO8qD01Q4oqad+STyRFs1/Nh0+WsVH4fqPlFBJhNx5Rlh + hm5NPr1LxLNeL/9ud+JUMbbQfCQqPc4ewvtpcxpVh6GtEyLi8Ux82NvzLdaOcp86hEpfXTLO4iWu + fjhn7kjGiIEwfKSPhEGaz58bxXY65yg9TmFL2juUqb0jo+7B2iyopX4Qgl0XS4BFRXqDONeDoCF8 + 1TYN6agCyCBdsZKOOAZ5ssHJdRAblfcsgZoadjoUdXkUhOQl9Sbldtozz3sOoscEAOn+cwZNLVBi + qmqZEt9CgiiFYyGIT/t88R5nV2mn2rjZehiHa1Y5kL6f+YnPGTCdVtdcnmrWUBxkmRjC2C8Ik8Pi + IjC6qBXNdifuSWDzUqHIgGv23D6yI9rR/QKkuMe3dtOTptIl0f7Q1x3lhXD9cTctwaA9T872VEcT + 4nOwd5ArvPdZH4w/8rJ8h7iznM41Bblkn1fCPo8MKeEpqacwT0FisG1P4N4HsjTSEx5plJwaLHdA + 0IbYjzQgMTFt3aXXbGE0ZrkihjRaWPbtwLpx893+pRmrb5PLpj9sthPF9ON7QIVQPSKiQLjZ/G4z + vnTsr5v6vmmhQziaxFAjJKA8KY8SbFClsJAUUCwsYvTVC9ei85UMV2H2VA1LWO27TesxiVtSK7DJ + IcxqRKby32qkStRsNcJV8052BmvQrZR3SxuvFBSL2BY1xRKaoLLiGqT6hOoaZCJla/Gs9oZze1RE + BV+PXINyJ6ILeAC1xiI6Q7mxhGfFnFrGLiUslrpjCZFSeiziCJ1a/I+QrpOBITXIlTidU4krsaqN + yZXp1srR0qoYUJIs4QRVJcsIXYXJMjYt1bgSjVaeXIlP3xFeia8wZfvHcxHcUqosZJJz0VISR8Gy + hA5WsyxhdJUtC7lmlcsSFoTiZRZ99idoHbQrZ8hqi2GFTBJBRPFyLR76FNrwOEVGmQKZReDcZIN6 + meuwlCTJEKcsxV/mlQukzFlKk7VyF1bszCAxpTgL4RnlG1L1JFKo9jQTlt+eopQ/1+FTt08y2WZ9 + zzJ0ViMdUQrNZZlVQzPhxW9hqIkWMOTXNM+vay7P4pChnKE4Nc5FpEyWwoKhDdRhCc9iAqETV0xi + qJiWc83XiouJcvo7U+mUgCrYa4D0TMvQOU2OIVyaBcpua0HFVDIcUE/N5SCObSCZ0zK0obC6BhEx + L0xnmSTYIq2aCctMriu2WgTOTgN1Hyqk4IpnwKq5EhgtZVcC7j+u8kpJi6PpWAA1dBMLWNScdAUK + eR10NSJaz++ReWqxBVyecmwBV8437JFIRdkCgpzBh0diKM0WsKxEsFvjc9wT92Z8AkeZtoDKVakt + oXIVawu5iAulHoenZJvDdW2p2uYwlIFNtVs6gaN8m0fwts0oBUcRN5NAqOPmQUuankU1l4SV+rQZ + EPem/woU+d8hSmWXwBhX3MUTueq7NKStrFuCzelZTYVeAipjW8JV7iUgFxVfAkgp+hIgIXVfEgU9 + N6OiuyvRGBfOV2LMqW0xZeAMluk+Ti6uKP2uejCBAlISzoZnzcqJxx9NtWEiSp2BIcBiKsQEGt9l + YBFYaaGWkZh73EVMOWtASC+KRYQr0cz3DdfgkH37GkxbwlwGo35cxKZvgJexLJqoa/HM2qpFdEG1 + 5DJWym5OSEW5iAFQVC7jA9WVV6P0ZHIzmUvbKkOBuZSBdmIkIie8CklxzoKKy2tyrZZfq7UQBFXn + vCeQr7IF1J6LCFJCzf9RcqkCnfcI2vZaWB06n8NUis5j2ZG27cMK0vkcA32PHaEsvQJZ6cs5Pfsq + JJ769CqsOW9qX/DNxUEK02tyUY/EhK4t5zIUHFhCKVrn0tHWIFBK1yV05fkDSFivSFVeESBlbAKX + FJsmA1zFbDJB1taBp6RNhrqq2gSC0quSpoZ2HirnvRMq3HgiT5GbBpXXOQkYqdRNAFiq3TRc7t4H + pOZNQhMrg+WSjwQLucLDk0TUvykkmTmdUgXPZpr95hDwllp4Do7WRYZUxAkMhk54HirvqcS+0lMd + p0BJ5/ANNXIKKKhMTiNZb5U1pFhOZkiol9P4ICVzGkNc1TyXC1Y4z2UD1M5zqUryaFFBJ8IBRXQy + Q1EZx5TS6VQh1fRsphI8HWtInOahcj0KYRXX8xgDY+ZS2mJ8WJU9jxBWaM/jctTa80hIuzRedlCg + nkB7ETjvvW2ldzwypPqexVAEJvlCgJXhyXhHJZ6CNxXjiTilHk+EydclgHxVeTx40YHPweTUYUt5 + ngSjZQtWkX41RursCqdUvyIfrZh8QfoicOZkOP84aUTlPp8k67ReQnl+NaKsrzFOaTuMUlu9Gccr + PKX7FdJaOk5y+W6q3MWxFFNB6nKblRlX8OSs5jbz9N1ax0UhnkKOaewxHzLM8DARUJ0vJijIHUiC + Zk06Urce5Ng2wyj+pDcyAFnB632exmSEuaqNy3vyt/Gt6RKdDKU+8YPQ1WJ/+st/zfqbGS289sGS + Abmqh+5EGYJqZE72arB7gWOeJmQOpc2ZMQH1tRq6y37QPlzf0DwD7X7au2u05O5LLmO6ug6lePK2 + m0uTSUCez0iYp+5BIDDFDDJh1KvAFjjnK7AIit96utgqd5yLErICOKfxcuUo+uqe0Y9U7USTb+j8 + 5iNpbYjYU1npzH+SKquqTZ0KfeK0iykVUmimSQyfu/2zbRh158lGE8e1ADgrA21veNnArBqxpkti + h6yAIstVo48tyBGQhehsxqfKPqDhU62Tu/bhX+nosiIcBogxLr5NSvjyWEh+m0WSq/tq8jNLP5Si + Tvdll+wMn24Mq2aUeuc420GaA8xaAnM4smqmTUGaZSos71Du6m+5uJJUSwZSoqchVVCLGM9jSlUR + UOzQ9kfSZo2+Ynac37oj17Vrsq93hXhfPdf385SQcpYOxmfVUEVFzDSxRi4mo3LmnVPAtJN1WQNU + A5SVNblDWweY/exsILGpXzC5T9SHo8j9hLXqmb9xYtF8qtnXnDrpkVCzQgt1Vv3YTEcFiBdAAgQ5 + xZLndMBEGZtPGZmYW/OVe+Xl4bS2EcZntY0zlRr4UzcUQXjOgYAE0WqvtgZRtnuZmeimyrt6AMLX + SE1mzZm8eG4pFwzFLKw+EPvF/fmWPvzgoIbS3Uv7rL1oCc3JQpH1H27/xWeoBEzbtaf2nvCNKkTW + yylwTl+jsPTSu+krsfFx0VSnF15hBmfvm76O6BIWcOyZuDzV9tSm0pkxkN2wrDDjcCjEVOLpiTVH + dpQX7kqoiDX/3DTslL+z8bHp1lmDnGTdiebCtRQRktXCfnpHsGW93hrb7sRNs5wK4rOQ0+zs8b6f + DmCRvzVoK7wA/XguSMTb820OJte3VYiB5orAuHNAuEbt3C3IBhInZ/CVhmx8BnRuRnJx0x0R6dk6 + p4Z5l160UhnZN5DNSN5yBeE5a/EJIlGZ3xDP/CIoM1srmzL7GCDIJmWFsq+EBDlXISKte9oM5WkQ + DFPnWEZDdpYDwstf54YiJedBy59PHMkAYNq4ZiaYWlzC8o8FK3hrSZBb+Ba6IBWfL97TMZUW2aOv + noU56N0OJyk7X/OJz3upA4WuuTzVrMl14m3iM+cOQQo5JVuNKKtaKcrtTtwPzikTxVAEvmbP7SM7 + Zgl3LiS50p/WaTMSTLom3h/6usvNAPqYqZuWX7PUSWZsiYNE8Qnbp6SqPEUmnyjvqOvSptDvyjhX + cuUWaXlt8jllyFqca303MOdKicxpawP3ozNKlTaBlwDS1HW5N50FymlwAvK/03EQ2p4UzERdYoyx + RHqjVzNZI8eCX56my5lPvOp9OUw18Atrzk/6Kd9NCbiY1EH+IP/2hJHne9yyO5SVSP4dAly27WPN + XlcDO17cTbs+L0HTKX8nr9TyYOslz4SQscqEdxEbfe68Ok3HxEJ26rxPKF7Ju9/wzA3buIrtMWs+ + PxOD8mD0cLqsuwfW7891ONlaHDxBNfvyiiVHKITH8+CmZv0ct2w3GJzn8UEcq5CYd2x8aI9LjHap + /XFgsmjnOISAqvGMgKhnyGK5VeW8HCRAGSCxC8qJMfLEjDG8pi21c5aXm1sjO0GGiNts7Z0CNnMN + IUq1vE3COGIoRUyiD/ZEe+z38u2Bp5lvDb6uq91hP8ONvenr+3uel0JZQoqxqMvzi70azi3aHJct + N+Jt42zzMJ2imH9Mnz63kT/ttVuZR2DM8lo6wjxeYL/Fct3NxAWd+Vwcn8W4YVAHv+bDbhho3IhX + 6p+rp/r0ErNYqr3r2fXi+FSH3sDoi82KEHAOO7V+vkX8JeZYmHzHu7jhTXOoOt5XVkuBYt1xLqwo + H5ch84Afypj5Qh2zWq6hGvXKNzMoTG+LS7Dni89szEWk9dtxo2R+txHfT6bZdrf4AjOpt7tPfHai + i2n7yHjh9S/daAaJRva+12MK06/Y8kbbbto2szJmctPlEYpAl1KoSC1cIc8sNrvjLmXpQUTEFR+w + 9fXteXmu4XTjTSP2SI5GBbfcNyxMc57qIY6ZpfOdxCXV8rbhvM+tBDPnKN5e1nM6pGSfAQOvylmu + NmKGakN9AsiEtvM3vTtMwzz1w8693cF8md3dYLTGoqXjzTk7OtVjOl7u0PStGMm2/UV/EM5LD2Lu + q6Nsw+daUNkti3/+ecl975TxEqUORSjfJ0t2OkcrnQiv0OahpJGiwAk7+LtylxGXFFrn5IzRvhnu + 9HrhnstXgoDycs94h6W/KV4Rm0FMOWwq9+yA+TbTOvZHPoiQP3nZ37aDkJvlxDM8sY1kPythbD46 + YboUWGgnZsn5kMXSo4IWoUf4vWF4Fdng6Bp7tG5FzWuMdmaZy3ZW1uhVtV9YMzdEbowsVXGwxeVc + ngvPby+MCghb+K0lbAc0WQFDPV6H4+1WLDYt12fTU2mzmwLYZvpgxMnAP7z6/tWrL1940Jcvm79t + /nfC/P6iOtoluqzu/f4Ps8nciAlFSx3mTfLCMTa/sWoVhbSDJ10QsZe+X0+Mz0ZnLTmcMW+Ej+JA + KR8Nz6eFELjP1d3sHGveug1jbN91WDvh4y5pK9dOkGZCLlhNXZCQD80Ve6qaI9KckGa59pM2RqV5 + aV2u+qoWfUfEdlklChupD4ePtaYWQrthS0P0GCZtKlhxVshnzzUyYgg7PUwDxOwnbCUdaCMpRZGK + RUfR4oet0Clc1i/DNqoaT6O8sNmuGh/iZRK8W5sBwSTcdueEyQ4D4dxMRWFUt0Myxr1JPOtFtHJD + IbcRpk43jFCLqsh39NdXY7Zf+dCHoY3kQCP64RnW2jshyjrKyod+kcjhhOpn9Qpv3MTuJCPGNz1v + YcW9W2t3Kmz/sT8hy5Bbik/0XRVpCgNbL4kHBIrauhSVige+AnPpGoyer2fzTPUuSeOs3MGH4f/e + CeNzMi3pG4mCCcWszWrGxIgTYxOmmw+niGyJx15C72JbtGexXhA3Asa0oN004PZM1M2qU135eDPS + e2Oxsn8xvDQHvdQCGKh6CgaG6mnEZlnyw1irmRVo+/Nvx+amuo/FAVXbtAp15ZaNdLA/gJEJfmMr + Jxgfyjdv9RW2WraCUvEJJmdRCLSJvozZ5P97cqFTHR604kVnDtPgaLG9kzD5lX8BzeFFXCZLWc6L + pQkz/9t7/ctOHYzW3214/jNvfl3MuyCDObyG4vwKM1u9bQcoKFBDDYsg4/xE0YCOLGZhtSsq6qHq + mbx73DzG4uTjpxFM2sxKg7m6bgSq/cLzAAaCRNp3iltuflQAb8/jXvOEP344j2pB2Z19Xz6ww2PM + e4iTI5en9nycJnav26NOHU8TH06yZhx+/PtvP978ebs/PPDJwDAvmg+StJ5XW5eDVh95TMVL7p4P + eeZY4VLlKMdu1anTlsuTnO3KYMQVT3XdWHUtuM+aNJArwkgz8+v3TMXMDPwQPMvt4Qlp6dcEz0Ru + GwSj/cbDM5k8bySegorepQt1b82P/OjztCIu9vCHh/Z0DBreHJA56G2SRy2toapn8Zn3UoNYw3O/ + RUvJhI1Tq3L8B3vx42NRoonbN1XH39zLabGVHqn3Ivpt66VcBBuXmsFoscMGRYQrjoj1ynGs6sb6 + jmSA65chaRAqK9g6MEmXq1RXzXzD1b3Mrczc0wtm+HI6YXeqmnCM/4WaZxx0mDd5kEdq/S/m6uHQ + OeuvV/WTOE9hYJtB7Gr4cl2GgZsCfQwC8hmMMjJOHqHs/ZwJmZsjQ/scBxwaYZZ6x37dVe343As6 + aDsS6L+tBc/px3zR2ApTay86UJ4rYcdonvunPCJRSiE9ZmLOmyN2/sgG6QkxYo4ymjfO0hby603b + bY9pG1TK9M3AmM2iqI2zmnW3I8b+Lq7TKMAngWKxvC+JoQdVj1DZYqqIkwGe7DiIi9dFQ+E+Hm+u + h0Rk0REmifSCavB4S2Q6kbWIoPkO4Z3tx4BeeyQ6JZheAJVa6xCBOekL66SHLEwVdMjG3LEJK5iH + LAZ3Zo9QH0+axh/rtCEIE08XHIHx02Dvu8Oh0LE+vOVFxD6VnuACFeoUIWxsjlZQpwvDxql0AbLS + aMNU1kDq0tpSHk50frrK0E40MNHwVJ2dCFezWUfHN1pN5WQozH9eQitZmXmnL80IuU2rQ6SKsf5p + aRSbofAMBdIXNuKsV7McOBiBofOdyiSi67uYgKlLafIG7Ob7aTrW0tP1Q80PKaSFq+ONs6VQGISw + vhdPg3aJMNbnDf3YJSioDmuaYEexIWVXJz6h22paQ6qsZnxccxW2hBVVYVvTucg+9vhw2hatUysS + UDJ14iNvHVMhdQ1DGqMBu3CsG2OcRIbC4LNNWOVOyD7QcsZBidiwpiZkDitmQpaOHiZkYsxyvGQs + EZ7YZCQKep6tMqnCQxqSQHwkyjiBAKs7OrGOduMSayozWqHqZKUVKB+jg3zNRBW1HHD3Q/y8so7D + G4Hmw7BKhEh7u0/BqQiirc1X80X8IlFgtxla7Ixo84VMgBW8hHYd0gwo0yJNvBBL+jnxFiilMYe1 + CzLDFcvTkXPigYoOrurhFkTD+m0BC1CdzbF13bQlooOpiuumpYyN5iGteZY2DT541h2DQyGUozXm + RNjWQZ0wbaBOpXgBs8aXF+4niaTPpUFGL6vDwHtAKjasnGVYALpW8VhnAhXQtLKjnf4moEelo03n + GWCgvYUbUIoCoxNP81SeQKtklF9tYvpLi42tkRQKN2tAUs4IbQhknKVqpENj/kIXI1+RCI6z2tCo + mpBj5O73J48aEw4WB1V8HAPg+GFMOwdjYx17SarnhA0xaYaVbzD2y5mSsDVkY5xphhRnjDhfT8aL + BNRitA18bCys9BKwAHLRu6Xoxsg7inBomE/fbFQRcXUUZWU64dFhStlkCQjoliwG9in2a1AzJB4L + 5NX1oheyBAXUQLSBuQ4GNIZGEPBAuJF0ggO4QLBVMZcQ2NrVtlBxUeUK0MjWpQia2EkIXFhNRPuv + Am3Th9QeoHiIEVJaiMcCNQqUIohG+tNutEJCFJA2CxxBAcUHopFpJjCnlKqADlk0A3TQoghgBDXL + 5+p587cj/Mcunvh1yOy83v0NkPo+8t0YN7VI//Yh86CF7Zt+iYQ8zwdigZfoE17jg4ZWDoMe31Vs + wp+7NhPXu60f4niRFQDUqU/v9F8RL+lhG4ct5uE8ZCSmpME40zu5Y/T2fOuHwCePYn7DfZvlfIKz + Ph4ItroTeEk9EOtFzEUMh9qetGGbpRK5frJhe2cal7iojzRbPFgTAGBNinqfjtqCvqWTCISZMZ4L + eX0Oxxs+nWEj5xBKwh8zbHazXA6L+FKGTaxWJOAH2YmeanIPBgafdm36GI7FBRk+X7x3Q3yPDWkL + 9zMK+P3VVsqrrw4AffZCsWDbnnCTizQDMingK9eLj0T5/jp9E/iCo7V6ZATCHmgNA7c18rzHOjHh + w3YJz69hM2hZ0ffaasQgfbJGEaDH1QACVz4Yb6kBc78Oxzydmmb16P40utJl5xUI8qtLyn9o3M4e + 5OF8fypr6c9H/8L77wxDAA+eEWPIh2fY3PS7ErZy/XiGLb2bkFFfnjEryJtn2H728hMxsDx6Ru0W + n54Is0SyFr+eYSPhfEjH2r49dTDg3dOM8/176likh0/Q3vHxCdv4Xj5BuySRW4SAr08wzvH2qWxg + f5861vD4qcICPj91NM7rJ9I8amp6/gwaBX1/hhHgM+08CLx8yAdoKD7sBdREhP2AaqsHaz9Ae0VT + AZA30ECc+ZpRj6DayPYJqoNzvIKmwSkz7Rk0bmN+JmHvoCGLS9M/aMjI9BAK2aReyPASCkZ7fkKV + FcVTKIyJ+AqFARFvoWGA7S80bOd4DA0bWjSu11AVEfAbakY7IaDvUCM27j1UGfr+Q5eY2UWkDjB9 + iBqB2uWnDnP8iC7hpifRJdTyJWoF+9TKn6gKSHkUheycvsr1KqrCA35FVbTnWVRHgL5Fl1jtqFIF + gf5FdeTkYVT/0j5GdUjay2jcFPQzqiCzp9Hlp5uvytuo/j37G9W/PY+jS4zhc9QI9L2OGpGuse0t + U0eAvkfdWMv7qIq8BvyP6jjfA6kVBRTtteGFVIUh/ZB65oYnUjdu8UUKxXj9bqzfTHkkXeykT1L1 + 2/NKqiNAv6QqVnsm1TNDyzepDsV5J0Wa20lAeCiNmjo1KOalNGoTfhDUJ8d9lRrzbN9bqRFp+ys1 + I0KZBfgs9eM8r6WGiZmCmOfSuA3UIiO8lyZMjRlI3INp3ArwYRoHuM1Jwo8pN/u/V/8PUEsDBBQA + AAAIADAweFO9mbrmDY4BAOeCDQBGAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy + MF8wNV8wMS92MjAyMF8wNV8wMS9tb2RlbHMvX21vZGVscy5weey9UXMcN64o/J5f0ZXz4OSWo9jZ + JGfXde+pUuTY0V3b0Vpytr6bSs1pzbSkPp6Znu3usa09tee3fwRBsgkSZLNnesYjW3mINU0SJEEA + BEEQ+LdsWs3K5fX/WbdX3/z5i3/LvhntPwHspFrd1uX1TZt9Nf06e1lO66qprlrxvV5Vdd6W1fIo + O57PM1mpyeqiKep3xexItH1RTotlU8yy9XJW1Fl7U2QvTy/056PsvCjMj/ZDm5VLWWdVV/9VTNus + rqo2u6rqbI51RLn4tcA+5dBmRXZdLAsxDNHJ5a01vK9ef50dr9vqddG0WPE5Vqxq2fQmX14XTbbI + b7Npvpawp1VdQ7eXxU3+rhTd5stZ9r4UU7sssnkl4JRXcnxTAFfCVE3nR+Oi/Yurulpk+T/XdXEk + hlUcFR+mxQrm3WTlQuC9zX5p25WY3Ep8Kn6u66r+QhUsGrEE7ZFYhTKfl/+U2Priiy+m87xpsuN8 + JrByUyzbcipLzvI6XxRtUTdfcQ2PXoq5zr9+8kUm/vvyyy+Pj59mv62WWU6AZO3tqhDomMt1WBmQ + R1/Idk/klyzPZ5O2WObL9kkWgGOaygpY+QhhyC5sEE1bu9Dz9awsltMiEb6u7vbQgWH6KJtmXdSJ + PWBlF74GoaELvCKiJnnb1uXlui0mi3yV/Z/sv+Vn+O9BN/UHT7L/fvC2uBX/wtcL/PgwewAdwEcB + 98G/HtKmek5O42P9uac5DtlpfIof+ab/winNiqtsMimXZTuZfGVgNsX8quvhf/2vt+/z+rqRHxSt + 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 + Ks7dBX/V1sE68qY9HbSDFuRPu9Xz1Ls8zrc9dNnjfNmhSwaTCXB+UGW8BqfxxZLBrbTVax7UvTpT + LnW1ywmz0V2hu1cdEf+Z1w+6ZjK53K54uGFD7J7VQ6/X+6wkvuuglUifUAdN01Dq5ZgclzlPliNq + 7JFxou3qRsSU3s0986KhU6fPxX2zb13eRlV3vcJdr3C7vcJbKN92W4rbN45n16C8ZzD7oTuaXbev + dstT6miWQWXi5FzPv/H5mLUMPndrtDZrmpa9lbJmdyv5/G8lH6Uhq+LbiGbrJBzZvGHXnd11Z2/f + ndUB80e5XQEBfaeXKne7AbnfrQtkvW+Z3N15lEif0J3Hg98E2Lry5qrl3bFWfJCrEl0Mjm9cDbYW + g49buj3fbxNs63sA4MB3vf9dlt2iGbve/9P7pURMx579byQ+sw710+8suzHkmdc7MQT7Ry947lbK + FH/b5k451Hvg80TlnNWuLo5nBDLkTXl3psqaXWVDHrWqSEgk9V8IAy29YJXe1e2bVKUC3Ktdpf6A + lm//ctYDdKtKQht9q++/VGk1sx+8aEE3mwoGJothSaUag4R9kQEEqouJEn41nm3K2vC5Y+bWunU7 + 2Rs+qictieWs2S3pqt6Kx8nVMSzduIwrnpuVc8XzaGWdRfg3lXcW/99QiBXP9abDvnVhtkmxWuqz + 4rlbnda1+yHqteLZajWET7NpUJ6BtdgtC2zrTJh03cCtOljgQdBQBugvHrd9XIa89tLFRYxuLeCL + gMVsVf1DbnP/ksY5q3vU1q5zDQpmL+7QX7aZfXvimArpXwfGVKsGpSJfbBzhts2RqzzyzoBX0/aH + KtU1Nbcv143cb1my4/PQZbviaNulu6MhDRE16mSb9Vbbq4VqeBUjtEs0F5WA/vRq6pYS+v9QSwME + FAAAAAgAMDB4U7a96UYaBwAAFBcAAHkAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3YXlfcHJp + dmF0ZV9saW5rX3Jlc291cmNlc19vcGVyYXRpb25zLnB5rRhta9s4+Ht+hcg+xBmumo0O7gI5KL2u + V67rxq53MEIxqq0kWh3LJ8ntstH99nseSZbtOAnbUUOp/Oh5f49fkFRmoljOKrM4+mXwghw92wPM + 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 + 5u8zNbFry1wHvnb3SffvPskOELf2UpQ00IjydRKOzPHZvSHVvSF18zek6ifSw8t6y6NU0AW/fxWl + M5DqvYTo35rwGhyyE2LdELLtJNyVmO68xNTi0111qXtTpysgdQWkRgGpOmJurXpERbj8oetHTx96 + /aiW5Tq/VfFda0t3UOHZdpg+GJir4LqlymPEuDcr6vxeVnKAP17e0qRemCht0dVzTD1HV3AkRVJS + lCbcQ/Gm8oSuctNVbrrKTVe5eSyVm62XTGZeV7TpijbNuT940eZeXNN0dZmuLvOQ6jLWefPwctU4 + 4nv4+/WvSyHL3wTegGfegGinclncXBLbOUFk6WZiHG+BaCMT/C7p5N39KTngIqF+rhzW8pI5KL0N + jldW/SZgLn+v2zc/1P1VuLwSpYHQ78Pfp7f63+Mtq31RQQxDBiSJsJMQWsnL3kHCPkHMjJLLiTSv + G3q3VRvw+cqKQ+vU/VQD8JE5siBGsybW3FQZLB+rxoQh9osrguXzZZCzfO4MehqG3wEZls/1NmPf + uKC3bWFb6nrl83X1vU2zb6POVz57/Xt3fJr4qloDs2P2bLC9K6EhoabrBjjQIaehCHC/7ju9rQ6V + 9kTXJo2BI0jnAYvZyv1l9pl/ReOC1WNWa1Zco4JnvN20Mw32zZoiYFA/5YaQo0alcVeA07afDdWi + bjxSav58W+VIJc3NS5La7jf82QV8brsqKTXad2XS8pCGiRrFPYMN3VyzdA3P2Wa1+0TnyPxuudSu + vCmAQZtypzvNiORvd8naUKM8pZMi2052StTlKV2e0uUppMtTdJ6CIe22c5UudehSh5Y16FKHLnXo + UocuddhD6uCcYjdJH74pN/g/UEsDBBQAAAAIADAweFNPUcNmFAwAABdbAABcAAAAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19i + YXN0aW9uX2hvc3RzX29wZXJhdGlvbnMucHntHNtu2zj2PV9BuA+2B7LiFh1g14AXyGZ6w/QSZDML + DIxAoGXa1kSWtCKV1i0y377nkBRFSrKTNE7bpBbQxiZ5rjxXUskTEqazKFmMCzEf/OPgCRns7AFk + x2m2zqPFUpBe2CfvojBPeToXMJ5naU5FlCY+OYpjIhdxkjPO8ks28wH2bRSyhLMZKZIZy4lYMvLu + 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 + 68lf7vbPkFWt2QInr6Md4d/KQA0rXmuVUUMOL0cHuzJN0LKP4eaPCXs764DG+zHiDOw9dth6ArKt + 2xxoeR4TSMzeg1WEF3CEh+Hn6w4/VSvdPqrgE1vlDzzG6bhEu32e3bh/7m2fP7LZ3e2ph3t7F90f + vLeHxHS4q//e+7Oeczvc1e/fXb1qAn74i/p9v573no6n3m2CWxwN2/UGsnd3RP6c+35fhNaIbBF9 + CL3np/F9641j8+pLDIdjiuS3esvAD0gHcIOG+It12oeOqMK6QUfkX3A1rTbwtyBtd1smj9FtvQ+x + y6kP3dah2zp0W5XcpyYyJyp/XdtztULY/+lkv4bPbXR1C5Zu44qxzfg30ttH7BFAbY/82tPtMMbX + CTGv7va1ej7AhxpSdbt/04ZUOXsP873tU9W7JHf3vVndpWcUgXbTpnJforHdzfzul2f+5bvqDxfx + feu1zWV6W60fu9GuH/rfpEEeDAan2jxC3aIa+wiEf/rbbMO2PrkZelmXf1GqZlndVzPzj53MP2Zw + BqxfF2kz9wl+9jX04XWjw+tGt/G6UdvDbvfVo0908x/ubaWbZOOf+h2mD9+LOeRv9jZTnb8jr6p3 + wH64l55uvaGt3OTj36TqNrY9uI3e9nDH5PH8cd+40uVhgsU2TyaugB5evzq8fvXxr1+1S9HeDsC2 + kkq8Et/X1HsOEr3QbfpXeLAEfeArM5j1DbZIWecw3fZOt3ae7TGa09xYrynFJ4y5tUN8xQH38ErZ + 4QHq9/EA1UvUh0em33s723N+h0emh0emX/GRaV0tv9jDUiyT9U/7uHTfn5Tu5wPIviK4JxPXv1BL + AwQUAAAACAAwMHhT/e1OgbcMAAD4agAAZAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fZGRvc19wcm90ZWN0aW9uX3BsYW5z + X29wZXJhdGlvbnMucHntXOtv2zgS/56/gvB+sL2QlXTRBe4M+IAg7XaL6yPIZg9YBIFAS7SjjSzp + KCqtW2T/9p0hKYqUZOfRpKm7EtDG5mNeHM78hlTyAwmzKE6Xs1IsJv/a+4FMHuwBYkdZvubx8kKQ + UTgmb+OQZ0W2ENDO84xTEWepTw6ThMhBBeGsYPyKRT7MfROHLC1YRMo0YpyIC0bevj6tmn3yG2Pm + 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 + dMsh/56gb/6Q4P0vOWp5Wtcd3wzG73ST7xft3wqn46bNOYOEhgFM5p5Ryj6KAELa5Uza2I1828AP + PvcEQJ1THwac4CPvHwUxmrWP6DcVLNVjQV4McreuWKrndpVL9TwFvK+e62263xnub7NzB+qvnvuh + /02zH6MKqJ4H/R0TfNqHwvUaGAd+YIM9uBIa52i6brwBHTgNRYDb51Fu6upA3w3tbPq4mYNsEbCE + rdy/5hj5VzQpWTOOdF7wNahgBrabbrzR883CYjpXf7MBUUGDSuvuE6dtj9f1ym4M8w2nfqyKRUlz + 96pF2/2OlQs+j129SI0euoKxPKRlolYdYZCbe0tWuYbn7DUzRGnhpLG71Bp3LCRuqheC+TpwT9y+ + /D7nCWuNTZcYut5oXqg8ya1MX9z0xU1f3PTFTfU0ipt2RH7scudrXdgYhn191ddXHWvQ11d9fVWZ + sa+v+vrqS+urLZn0aW93OoqyvwFQSwMEFAAAAAgAMDB4U79Lzxv4BwAADCMAAGUAAABhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMv + X2RlZmF1bHRfc2VjdXJpdHlfcnVsZXNfb3BlcmF0aW9ucy5wee0ZbW/bNvq7fwXhfrA8KLJbdMDN + gAcEWdsF12ZFmg0YjEBgJNrmIos6kkrrBe5vv+chKUqyZK8J0vUOdwaKSOTz/v6oz0giUp6v5qVe + nvxj8IycPNkPiJ2JYiv5aq1JkIzJO55IocRSw7kshKSaizwip1lGDJAikikm71gaAe5bnrBcsZSU + ecok0WtG3p1fVccR+cCYf9GfNOG5gSmk+IMlmkghNFkKSTILA/fwtrE8jWgpIyuWMxADmNxsG+IF + l2NyWmpxyZS2gG8soJAGdU3zFVNkQ7ckoaWhnQgpke0NW9M7DmxpnpKPHFS7YSQTQIcvjXwJkuOo + qmcePa3Zl1JsiN4W4FXCN2BnTa5+f/8qPvv51dk/zy/eDNzhRypzgFEDi0H/LCWLQA8WsU8JK9BQ + qiJwlnGWa7DJGv7wxFjxlZRChuRnrQswVAHQzB3Bqyhlwl594kqrvcMLoV8L8Kk73tAiZvjYkaKg + q4YK55pt3tMVS7twvGAZz1kF+d69V0IdRIi0pLkyOA7V6vKvEvzeVqxJY7Pa6EN2Or18Z/R6bULN + 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 + HpRXtsfUujztq353z3D37hkutUbPf+Vw6dR25PbhKo5ipy8i3ndKJrs+zzVExTmMNDxiNFVs/kiF + JeaEdvzO4qbgn37c9UV3WvVSTqtUw/dotyzrv3jlLla6i5XrX6zUneuunWBw9ln8XAh4UVTzOc4X + LhnXdSuMFxZM2r9zgT1Bem6tObiEnVzpFRN2XdvA5e4cGnK5O5e7c7k7l7tb89pYp59+Odm8lbzf + q4TFjDMOjIX8N8nw2eSzM+B4vb8Osio6VtN/PIfHc31Cupvm/KT4JSGX83M5P5fz27Wc3xpG6fmz + gGtMdkfygpv5FJcpXO00T47ikobfSdJwe1EH/bg0ojs4eykHZy6N6NKIryGNaPO8O3t0YhGJSyna + bvkojvrpnvgtIeqShnItN0kaumShwzwuWeiShS5Z6JKFa971tTrkF5od/N6ygg9NB+4MoF3xzd99 + iPbeZ39cuBu//Gs2iJoNdFlAlwV0WcCdywJ22aTnT/t1zW5H8nwrOg2X2Os+S5O9XULvO0noPSAy + oB+XwXOnWS/lNMtl8FwG77Vl8HbmeOP/UEsDBBQAAAAIADAweFNE7UabagsAAHpYAABlAAAAYXpl + eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRp + b25zL19leHByZXNzX3JvdXRlX2dhdGV3YXlzX29wZXJhdGlvbnMucHntXOtv2zgS/56/gnA/2F7I + ilt0gTsDPiDItt3i+ghy6QELIxBomba5lSUdRSV1i+zfvjMkRVEvJ82lD7cO0I3Ex7w4M/yRmuwj + EiYLHq+muVyO/nH0iIwe7AeInSbpVvDVWpJBOCSveSiSLFlKaBdpIqjkSeyTkygialBGBMuYuGIL + H+a+4iGLM7Ygebxggsg1I69fXhTNPvkPY/ZFfpCEx2pMKpI/WSiJSBJJlokgkR4D/fC20TyVaAtG + VixmIAYwmW8d8QbnQ3KSy+ScZVIPfKEHJkJNXdN4xTKyoVsS0lzRDhMhkO2crekVB7Y0XpBrDqrN + GYkSoMOXSr4QyXFU1TL3H9bsS5FsiNymsKqEb8DOklz8cfYsOP392em/X755cWQar6mIYUx2pGfQ + j7lgPujBfPYhZCkaKisInEacxRJssoZfPFRWfCZEIjzyu5QpGCqF0cw0wWuSi5A9+8AzmdUa3yTy + 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 + PjXYtidgpnyPZwX37hDgZrv1neQOf/v6+weov7/ILnxWxPuN9/3G+w033lXYuY/15f8BUEsDBBQA + AAAIADAweFN4YjPm+QcAAFkjAAB3AAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy + MF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX2Zyb250ZW5kX2lw + X2NvbmZpZ3VyYXRpb25zX29wZXJhdGlvbnMucHntGdtu2zb03V9BuA+WC0V2iw7YDHhAlrVdsDYL + umzAYAQCI9E2F1nUSCqtF3jfvsOLKFGS3SRLuwtmoIhEnvv9qE9QwlKar+alXB59OXiCjh7tB8RO + WLHldLWWKEjG6C1NOBNsKeGcF4xjSVkeoeMsQxpIIE4E4TckjQD3DU1ILkiKyjwlHMk1QW9PL6rj + CP1IiHuRHySiuYYpOPuVJBJxxiRaMo4yAwP38LYxPLVoKUErkhMQA5hcbRviBe/G6LiU7B0R0gC+ + NoCMa9Q1zldEoA3eogSXmnbCOFdsr8ga31Bgi/MUvaeg2hVBGQM6dKnlSxQ5qlR1zKPHNfuSsw2S + 2wK8iugG7CzRxS/nL+OT716efH969npgD99jngOMGBgM/HvJSQR6kIh8SEihDCUqAicZJbkEm6zh + D020FV9yzniIvpOyAEMVAE3sEbyykifk5QcqpGgdnjH5ioFP7fEGFzFRjx0pCrxqqHAqyeYcr0ja + haMFyWhOKshz+14JtRchkhznQuNYVKPLbyX43VesSWOz2sh9djp+91br9UqHmrVsFFXXG3B+JhAW + KDaPgwGEheed2QDB7wkqtiCinKGUCnyVkXmZQ6ClR4ZQWOYrzsrCHQiN1eP543wbohOcZYpIiL6l + CWimo5kmoTIqNxc/aD1wFqKLbUF+xnygKV6geXUQjC5GY314kgl1BlcV1qLisFi0rb/Ya9NL4GUk + WggJkQCiXl7aP4NBkmEh0BuG029whvOE8Fec5ZLk6en5CcuXdFWaAiJ+KIh9CtiVyv2xseFwOLwf + OmLuMTLq/8JKJNaszFKUM1VihMQQ/5C0kMuQxEbIlKrUz7YROgUAgtMQbWvEhBMFj20OWSKJogAR + org0yEIgmaqlCKgSgqXEydqcQ9jgXJ1welVKYmWc0RvMbWTNoJhSAJPMHBgBAVvFjqmQtKEm0kEU + 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 + MsCu0dIDYAc57k+F0n5ytHTPqOVILdARRrO12KWyku2PNaR3R+hoGs9WXj6wLpmupbdN2CAAPh7Y + ZVu/yKuWVg3Dn+YHjlIxu8MmSAdu659fG9ShozcM32G9Duttj/WaEuSjxnyeelfFg4nTuj3sawHr + EeBGuHbXcLArcR97idvq8N3xQHc80BW8XcG7dcHbVq7cVfWbXf9A46nVvvhiyPPHXgC36TmZgHYH + ZeXusFhul+H5vclw9wX75nT/qMt39S23qo4/U+1efH1/i2K71+sdSZtx3HDP9AFP95WynR7kyN9Z + Ub+EYIx8fZlucKKz8ZSje/Woe/VoJ68eNTvabt9Gup3TP7n3mLaI7j/1S06b9/MM8Q/yulMR6SdW + BVHr9uTeirqrujr3ne3fuKrX1w20pRK72xT7ITfF7BhyZ29myXwyonwV+SOTf7vXtLrXtLZ/Taua + tJ4GOA8DLrzpyitHrduD85sB5fx3/jZWUu9A7GM5l2XEjO2cgEO1gziOG3W0BnUfBC/f23f5EDoI + 9bukMOUXrAQk1iOGwtS3wg7yJzpd89uct4QOhVA1EPFjfUGw0VGf7jnqtU5AMe4AyoV1hoWd3K0f + ROwrROQgupBvcFaq0HUnR3jd8PSokXQ3Jzt4SZAviNGsXum2HQXnl3Ve2Bynr30enF/XK4Hz695K + YTPgA30DE6+rdebf+rh23VQ3nNrm181Ob9uo7+IUN792+ioTXvV6rpgDs4Z2bLCdK6FLUM23HPJA + h5T6wsP1enfAu0g4zRDcHkQGlXjusZAtyz/UOnMvaZixajxrxOsVLlgT2E0bAbprZhcLDPUCPxYr + FS61/QwkW583iultTTcVz76rs2YlzfbnzdruW37fEq+7PnKWGu362NnykJqJaueoppYso9zcNZzS + gqtsh25Ipz8ApNsE2tog2gMBL/l7F9fBXbb5bNTVQaEOCnVQqINC14NCdw18OhzS4ZCGOehwSIdD + OhzS4ZBSj9vikBuhjh1Biv8DUEsDBBQAAAAIADAweFPydSZqSBcAAOqcAQBfAAAAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19u + ZXR3b3JrX3dhdGNoZXJzX29wZXJhdGlvbnMucHntnW1v27iygL/nVxDeD3EOHDdb9AD3BvAFimy3 + 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 + 6A5m1zfZFWV4nqaaTlj5cI6iWZkIe/J8TePkNCZu2PVFqCV10wKlK4fDetDMJ06JkcMpubIplbPp + 1I1N2tikjf0c/dNlWuzn6FeNnjeYRWlU3qNmq23zKvbT9vu7rmGTHTbZsePJjgXq/yAC0P8DUEsD + BBQAAAAIADAweFMtkbS2mQ0AANaIAABeAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19wYWNrZXRfY2FwdHVyZXNfb3BlcmF0 + aW9ucy5wee0da2/btvZ7fgXhfbAzyIobdMC9BnyBIOu64vaRZd0uhiAQaJl2tMiSpkdar8h++z2H + pChSpJ3H4i5xJKCoRfG8yMPzVOxvSJjOomQxqcr58F9735Dhg12A7DjNVnm0uCjJINwn76IwT4t0 + XsJ4nqU5LaM08clRHBM+qSA5K1h+xWY+wL6NQpYUbEaqZMZyUl4w8u7Nx3rYJz8zpm7KzyWJEj4n + y9PfWViSPE1LMk9zEos58BzuloImZ23GyIIlDNgAItOVxt7gdJ8cVWV6yopSTHwtJqY5B72gyYIV + ZElXJKQVxx2meY5kp+yCXkVAliYz8ikC0aaMxCngieacvxDRRSiqIu4/7LLP83RJylUGu0qiJaxz + ST7+dvIqOP7x1fF/37x/vScHP9E8gTnFnoCgf1Y580EO5rPPIctwoYoawXEcsaSENbmA/6KQr+Kr + PE9zj/xYlhksVAazmRyC27TKQ/bqc1SURWvwfVr+kMKeyuElzQKGHy0uMrrQRHhTsuUJXbCZPS/K + WBwlrJ55Iu9rptYC+GVOk4LDSFAhyx8V7LspmI0jjWONu7enH05ghIFA79MT8cwj8sM7Vl6kBt/L + xbJct9RHp+/40vzAtdUNJan7NF8GLU4AXJKV++r79aMlqF5cEFqQQHzc2wOlNHRjvEfg+oZkK8BQ + jsksKug0ZpMqATWfDQUir0oWeVplaqDgUA69O0pWHjmmcYxIPPJ9FMK68rMUhR5uaS4efOBLQGOP + fFxl7FcKy/hLAiN7HPFHMqnHB/2P/X0+eBwXOAaPauCzmtDZWVsFztZu7DmQFIydFSWQBY7Pz+V/ + e3thTIuCnNDwkpXHNCthF4oPGROWqxikUzQ1+2LRer3euokkVR99IdJvaUWKi7SKZyRJ0XYVJYWD + BdYAjARYB0F4FqFNiVc+eQMTGJ15ZNUAhjnD+VQeTokkRAygN0hFQwvqJcwhIkDbRMuShhdiHDSC + JjiSR9OqZJLHcXRFc6k0Y7DSEUwrUzEgGARoVAtheiNNTML1wxdoStymGs1fmionrPyU5pf+1eHo + cBSMvgtGL3ypmBwwozldAiWUblxLiTKgkwCrDjaU72jhG/PTZB4tYD7/v5IMpXMFJRAaMPAoonH0 + J8tBUJjM91VK2jwzQGZsE5D+1K/VQyyrPIWT5hDi6IzNSRBESVQGwaBg8dyTfHpSIE9jxDPwS/3D + CwH9QAACBfGh9VQBwoQGSWuShh+m6dTatDhzSIt/0IQR6slFAtCBAeepu1x6hYBrTJDQJZgDMECo + NGMCR1LNlNoSfKIl6G2+aWrGz2EQioO4eSbsJQM7VGgTenJnfOM89xTQt99egu9cFA0EmAv+VNuK + +tHA9/19MvzPGqxgh6q4bHCHXDUEfjDz2aAPI330Kgnbb7BK63e2Eem5wsodbACuFnB/UaN4vRy9 + GG/y7i9HL8frXPfL0b/HLl+vCFzbDPhVNgO1GOgSqocg55fr/X0FRbMouIK9wQM8IT00E8PRd8PR + C2290qQEpoNS+AINbU9/1PNIj2ZZLIU7+L1Ik55GKEQvjDSsSXvajoJJAeWp4JT/cvpWjVd5zI8S + Pw6G0vugWhTEpWd9mNQ/b/YvWiTgxzU1LC8CEZ4GIEC1BL4La6/69WF5jWflPShuf9w+1D4QGvQc + pwpWwHnW+iBRf98zCcmz9j9x1DZRcp1KIOU+rE5ama65m0g5TjVQcp51J6GimhZhHvFo4c1sHRXd + rPk6SBDNeh7Z9Nime+1WEuGA5H4jVfjngVlxqsG+WwMby6UegzPMV0HzABXoutE5M8hZC3XWh2M3 + lMcOdHZirROHGPS00wkLo93V6+Bm/ALiGJ1rcX9nti2ws/6xOPBDtIxOxgWMZRn0W8X7BjpH3Fps + pCAMCi4L/2CvyDSdrYKasHQnt5JbB3QwgI8HulfrG55BE8zBwVlf3nPZ9Amav+YhV1uXs6oUStzW + Js9eQNR0B/GGszo/C3IZpLepBSqDy6tkkNdxPSwWo8vJDzQumKe89L7Gu0JnkfAvIClQd80+QYKk + pkAwXVZFwDN4EbWTs8PRi/OxYWdUQjvQ5k9cSDyFWj32Gk85UZ/2Dfx8WK2IFpoN6liAO+FThbHG + baLJaQQrYSXvAwdLHK1gp+ZPGKmJmatq6q2xNXPy2ncELOD+rX3ZN7YCYiFzsXMG4AmODyxQI0qe + 8dBib68FqM/gz9Z5cDyc3ImPSf9At/vFwRfTsVwfGG4anltu+/ogy9OrCM3ggao6+e+FzzwwnS/A + 294YEBip5sEXy4te96+tcEMF51O2iBIpaheZq+LNbcNpyOWOZfINmTSc6BxyaCkbkbKRVNQji4yF + 0TyCY/DrO7/RP5lFOhZ5TD4CGH7CpBVR1JP0rJrj4EGvE4W+kpKUa5dsWnIWkbPaxNxIHNQcG20T + a61YwYqCV2dNmk5UTpK1xozJSRNNYDUElR4rhLwAK3auvVt16cKm3mC9XfHCVJ4G3SVbAcQMSIoy + Fbdm5IiEVVGKyhmwkZN5lYS8ZMEZr0vIGZZbZlwAURVSZt0mAGvDY5ooqbhIQZlesoST0kYJH8WK + DmCqVZgfA1HJo6SgV4yrN5aELCqy7gi7mleMl2Wa0qNHuBPmo0laT/VQPNrY77pyKSsnOBl2ocBa + nnoGsgD5xaq12WJrag6maRoj7r/sAq1v1mAtKSKIouRUsPmwzVc0htiLzSkceTgF4AWAizICpZ3C + jjNcsU9CooJzDMZDK++hkwKBT1mZr4ZHc8An4x8s+WfY3qgrT5wL4YV4+UhV7+BsKIMkdEDMKgiL + YPtz4rBNKLy0FPyOe8qB7fjHuTB9roVqrOB91Fzwca5RwviiMCg1tW7fijvGunFtnIDUArMiIkch + XEDV06oivGZ8htrQqr03fG2nvhLnKUQ3MV2ZuFuJbkvN+mZ+amSW7blqZrOXeJbFyW4LZB19Wz5V + M4fz1YiBEVaDFTQWoVoBF/0USC1z1zxMoTmI7aAmruDCAnQ5m4kz2LBAHT5j4oo9HIC1uZ9oEYg1 + DZRmEtPldEbJZ2/l/TmG/6xJdTRiPNBi0HU1ML5Xzll6pqomakH3nCxAwjgFzYHMCLt7QVqVmJzZ + gbW5r9sI2PFyBe143TVwd8AasXtXStv5UppuplTTs+A+YKx8+JLbe9jvJhgZKOvscUOdCh80+dKH + mJDGQx7gDK8iirkdd1dDWqyScKjcev/ac+vVxDnqEUfxAVTcYJsHSA6+Vft4oMM6p8oBt/l25snK + x/sY4gW2p7Ctt0l1Yt46DKOFctLw5LKjWNCZ6NUde1Jz0AVaDKCnoKuTNcauZW+NVdy4KgODD83X + eevsqtdaH0FNT693tIIA6/FICwfb7M5BbPqagTuxkn2ZuuJrRMhal+hvJ9HfegpdJ2QOLfDumWTd + I41qZ1HjW6dRziyq6ynfraf8UN1gsJFdB/jZh60Oxeg6wFvqAD9EZ3ZNhxMDntt2OJ9qK3PUtTJ3 + qJWpu5/dSj4wm2eP/t3C+yUiGJTdN3LD4S5AUyt78+t6ph51wVoXrDmUpAvWnlywJs71zsdrhx45 + HL3sgjY7aLt7gIW+Uwus1rmG3QqkRKFanpZdiqKalxnMmKjX633PpS1aL2etq1B2ddwnWcftXoV6 + Fq9C4eF+2HefTHOxI28xmUI965eV1lUOFMhTellp595Cut/bQq3QTSxpl6HvZoaun/+tvQUUp2H3 + 4k/34s89X/wRPmZHU8YAIvSsq7x3lfe/V3nXtairuz97r+5Ska7u/uTq7llaPIO3JLDqfthV3bdR + dXe6hacXQB2gHDcX3nHWToVQG8ruP4Os+OJ0V3LvSu5dyb0ruXcl9+dScncXDBRAV3DvCu5dav54 + U/Ou4N4V3B95wR09zC5niwGuiSwh7GLl3f0Xhz9hCelnLnX773Af5C8abfxdBV/t0M0VfFsnuzr+ + sw8WXIrS1fG7On5Xx5fXU6njO9duMoEVG/2tL46ynO7Nfym5npXDr83KV/j+2Q1u9QlGtn80a3xz + O6QRfaei25u+XnZTHNrr9fhj8dcKfA6WWymRydHTbaJITSNSoxT2LXVTFtGVaDd0PZWup/LYeiqb + zcE//+WuFks71665u2V+1i2dTfUoBdY1dp7O97neNRauVaf7ateubNT1mLoek5y+wz2mxuU9g3w8 + joqv+/Wu98us6x+QXRO+vQUpXBk1jhcE1G5NIlhAjlZeRO3fb2lnx88pxf5qX7yKeVMpfmobtPCS + GVmUK11qNvlv5Un8t6Z99SPT90qTGlas/OgxfIOr8zg880YnGjtI4uFUYYzK2xGDhH0G7xAllxO+ + vKaT2dTaweue7R0n6MO0ePDiNYySKMnsoH1dx7e+tIYeOodbt3rr63axe319tRheEfyKsbyi+Q+E + 2vV1vWmD79yx3aRMjsZtfd2vgbsOehuN3Pp60O+ExcuOXps9UKf0gRfswYWQAbfEaxpVkCGnYRmg + jXjoYkXjyNxVCh01GqsgnQcsZkti/JL5zL+iccXadtJZ0mhhwbhCH3Iui3hJFoOZ1lyrvoMbvtnr + NFu31lm1tHZbrXjBzd3b8XJ1b2rJn9tr/0Adc7y23dzni7PVzrymX9bSW81lFc2adYBa5TzjkLbK + zYaTf9yJriOR/T9QSwMEFAAAAAgAMDB4UxU+KNhvCAAAGCUAAHUAAABhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3BlZXJfZXhw + cmVzc19yb3V0ZV9jaXJjdWl0X2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHnlGW1v27j5u38F4X6w + fVAUt+gBmwEPCLK0F6zNFVk24GAEAiPRNi+yqJFUGl/h++17+CKKlGSnKZxbDyNQRCafdz6v7CuU + sowWq3kllyd/GbxCJ0dbQOyclVtOV2uJxukEfaQpZ4ItJezzknEsKStidJbnSAMJxIkg/IFkMeB+ + oCkpBMlQVWSEI7km6OPlTb0do38S4n7IR4looWFKzn4lqUScMYmWjKPcwMA5/NoYnlq0jKAVKQiI + AUzutp544+sJOqskuyZCGsD3BpBxjbrGxYoItMFblOJK004Z54rtHVnjBwpscZGhzxRUuyMoZ0CH + LrV8qSJHlaqOeXxcsy852yC5LeFWEd2AnSW6+eXTRXL+08X5Py6v3g/s5mfMC4ARA4OBf6s4iUEP + EpPHlJTKUKImcJ5TUkiwyRr+0FRb8YJzxiP0k5QlGKoEaGK34CereEouHqmQorV5xeQ7Bndqtze4 + TIj67EhR4pWnwqUkm094RbIuHC1JTgtSQ36yv2uh9iLEkuNCaByLanT5TwX3Hirm09isNnKfnc6u + P2q93mlXs5aN4/p4A5efC4QFSsznYABuEdzObIBgvULlFkSUM5RRge9yMq8KcLTsxBCKqmLFWVW6 + DaGxem7+rNhG6BznuSISob/TFDTT3kzTSBmVm4OftR44j9DNtiT/xnygKd6geb0xHt2MJnrzPBdq + D45qrEXNYbFoW3+x16a3wMtItBASPAFEvb21fwaDNMdCoE+E8IvHEvKCuGaVJOeUpxWV56woINqU + 5X8uiUkkYszuVORPjAWHw+FzkBFzn7FR/RdWIbFmVZ6hgqn0IiQG34eAhTiGADYCZlSFfb6N0SUA + EJxFaNsgppwoeGzjxxJJFQXwDsXFIwtOZDKWIqDSB5YSp2uzDy6DC7XD6R2oYmWc0QfMrVfNIJFS + AJPMbBgBAVv5jcmO1FMTaQeKDRmprrMm87vn5gWRnxm/jx/eTN9Mk+mPyfR1bD1XI5aY4w1wUtrN + ai2VDiqPQ+KFNKdvXsQBPCuWdAXw+m9lBWJLh2UIBjhwRHFOfyMcFAVgfddW0+YsQMnIIST/NK5d + xpjVhum8iVK1m5ElShJaUJkkY0HyZWTljKxCkSdIFNC3PqmWQowTgwgczEfr1CECQEOkBeTRBzCf + W5uXFk7x0h+NMisixwFs5H5xm6wT7SVJgTeQIyArKUeZIQhXB5maoDoEUkIcQko6SMXF5CGoH364 + h6K1Es0pJAt96hm4PhrHcTxBJ39DQ3uL8ZP5YOiIgCu8J9CQqIotSpLSJYUgUgSQpYA0CWRpoIaI + zcIBIrE4XOG0TWdj2XPcHuvP0A1QVF8qThT1GsgP5CaYe0n4tqxD0bu+Lo9A7kbekFVIooeHf/9d + Hva0TTVE6pM8dJl+wv0aeLgdZdpUA873ZAvpEPK6LXcQvirvorQS0pRe4M7RsiqMK6g077rAUqXj + TItmqoa6JNNdOAacyIoXs6frXqT4WDeocql0BlnGNcWJR9KEw9dl9adjxCOMKZQXR7nVEcWdvtAP + riYGdJ41YR2XrByPYGcUoStWkEkTzLblWDwjlm8dD91eJtBoAqcvblett9PXs0O97dvp29m+xvXt + 9K+zvk7XMdh1BYirMoNKP/b1dYeg9ZfdpLk5XNLkgXChHGmOhuquTqY/nkxfN9bDqTK3OsVlmVvZ + T38VKpV5CRGsAm5cgcf96/qD2694rusL1AioBPGGSAzC4cUIDka3je3pqoCrbbI5luvEjFIJaFFt + wGqiY9lRnYDeq/xzBaE0mrWrWwyMxsOeTDWM+gvQCLQYTaKQkY3pQyz8DAW0w5LVS9Rmn0NE/QQF + RMMi1y+pc86DwoYZaBh1i2MvdVHdiZRTHX2X2T7qfksQ+ygJzYYROnTc5bvr8yXb28TWRRRX+BdB + 8e71nEm/o+ocT2A8Ee4YGkm+TZoD5XO7xk3DQWIv1mIEcXVi4wrcfN6xk8YYD73wA8N4v2o79Au+ + hhnAl9r8frbYHbTF6EwHe6/IBhpk1iBKXP3RldS24+27Up2gvqS2taKuIE2CqufopK46bbKJm7R5 + VYx5PQSCTARv5u9wLkjkmrqJJ6Qj12ERr6GsuF+NYjBGOxCYqGQlEv3SYkY3tHgznd7OgoBxDw9j + D37eRyRypN1x1OT0ufuaBPR1eey+joz30jKRMQ+fELy781r8zFna2xyPniyKUGI6Fp0ERlQNTaiG + 7kh0c9FBDYacTJcv39U0og+hz/xao2JBl5sZGp366Uacfgnz2e40KChw3ikwu9OSsweqou/UveXF + V6bXOSVduwARr3gAuknhsO2lf7PtvRkAUpDHd6Ndp1a6ESuHtuB7mbG+bXqqn4ie0Xp9AKWvdVvq + NWH1RAWdM1rl7A7nYACcrk2b3phUvY4JllL9KvuZyjXCqOT0Qb2jWCVVQOPiTztUfS9j1B82zJwV + iErzfA4BcU+aZzCQncAVgwM8w6m+cfLx3pRj95i8ONZY1Ih36wnwXU9IvWH6fz4rqZwNJoOAU1VO + 9yvjgjzKBOre/VybPCyPh1o/tb6x/etFPU4LqBYUetUYOc1Cndp6+UNjvbyGX9W4r54e6/V1U2S9 + /rBp0jF8ianSEX+J6dIR/x/MgfXaHXKTZ8+FbVpPjIf1+rYxcR/2S4yL9TrqMKYWpH3SDWVzBy7W + j2ywoyth5wZLN0zNoAPHqUxUpumOI63UfIR5qSmR/ZOTz06lwYQtE5KTTfgfMln8gPOKtDNwZ9Tq + oaI6G3+r11QBK3fPqk1SBSvSzVeLSmBVuKtEoR2udM1F7y2QLR9/qfcBI83z3wis3Z/5TqDWS78V + aI2O/V7geUjHRJ0x3XXE4wC/do0oCD0HYrQIGoA/40jfM8H/F1BLAwQUAAAACAAwMHhTe2PkNnEM + AADeWAAAZgAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf + MDVfMDEvb3BlcmF0aW9ucy9fcHJpdmF0ZV9kbnNfem9uZV9ncm91cHNfb3BlcmF0aW9ucy5wee0c + a2/bOPJ7fgXh/WB7ISvpogvcGfABQfrY4tpukOsesBcUAi3TjjaypCOptG6R/e03Q1IUJVGO0ybZ + a2oBbWxqOC8O50UmP5A4XyTZalbK5eRvBz+QyZ09gOwkLzY8WV1IMorH5E0S81zkSwnjvMg5lUme + heQ4TYkCEoQzwfgVW4Qw93USs0ywBSmzBeNEXjDy5tW7ajgk/2LMfpEfJUkyBVPw/A8WS8LzXJJl + zkmqYeA9fFtrmoq1BSMrljFgA4jMNw57o7MxOS5lfsaE1IAvNWDO1dQLmq2YIGu6ITEtFe445xzJ + ztkFvUqALM0W5EMCos0ZSXPAkywVfzGiS1BUSzy8W7Uveb4mclPAqpJkDXqW5N3vp8+jk1+en/zz + 1duXB2bwA+UZwIgDPYN+KjkLQQ4Wso8xK1BRokJwkiYsk6CTC/iRxEqLzznPeUB+kbIARRUAzcwQ + fM1LHrPnHxMhRWvwbS5f5LCmZnhNi4jhxw4XBV05IrySbH1KV2zRhUsKliYZqyBPzfeKqd4JoeQ0 + E2qOmapl+W8J694UrIsjT1OHu9dnv57CCAOB3uan+l1AzIc3TF7kDb7Xq7XsU/Xx2RulmhfKWv2z + DPWQ8nXU4gSmG7JmXcOwerUG00sFoYJE+uPBARhlwzamBwSeH0ixAQxyShaJoPOUzcoMzHwx0YiC + MlvxvCzsgFCzPHZ3nG0CckLTFJEE5FkSg17VXkriAJeU6xe/KhXQNCDvNgX7NwU1/pbByIFC/I7M + qvHR8N1wrAZPUoFj8KqafF4ROj9vm8B578K+B5KasXMhgSxw/P69+XFwEKdUCHLKkyvYp88y8Z88 + Yy9RdPFrwbT/EqN8jg5nrFU3GAy2g5Pcfgy1eL/nJREXeZkuSJajHxOSwiYDFOAwwFNoJhYJ+pd0 + E5JXAMDoIiCbemLMGcJTs1ENkhgxgA0hFQctmJp2jYgA/RSVksYXehysg2Y4wpN5KZnhcQoicWNA + U/DYCYDJXA9oBmE2moh2w4kjJlG2Emo0EpesQvOnY9YZkx9yfhle/XT001F09HN09CQ0RqomFpTT + NVBC6aaVlCgDBgzw8OBP1eqKsAGfZ8tkBfDqZ2kYypd2lkbYmAOvEpomnxgHQQFYra6RtH7XmLJg + 2ya5b8PKSLRazY6c1RsSRxdsSaIoyRIZRSPB0mVg+AyMQIHDSNDAb6wQH5wYRnoiUNAfWm/tRACo + kbSAHPwA5lJr01LMIS31wREGZGOSKZFg6qgxL7DfuIkQkbKYKKNrcA3gjNBopgS2p4Us9BaLWLYo + cnBUu8AuMhF9gg15M/Yff7yE2LgS9VtwB+qto97q1SgMwzGZ/AP8fsbs21itqkYD3roYDWFkGCig + cT3ZOLFzHH5vJ6twGEFgBBSf7Sg+T4+eTLfF4qdHT6d9gfbp0d+nvshsCVx3GQjLYgG6G7mC2Jcg + zufr8djOokUSXTEucIvNyAA38uTo58nRk0ENEmO0w7e0KFLD++EfIs/MhtCahe0K61HCDvrt7LUd + L3mqzFTbpGtQ4ZpJCozS8yEADd/XCk5WGcTL2haovIh0GhiBROUaNCg6Wh5Whqh891swlOG0vWFC + IDQaeCx2EPjteAgSDcdBk5CxzefGjLeR8po8EOvZCtvIuZFpF5KeneMQ9u4rL3lRzkXMExWuXy36 + qLq+JHSnRMliEJBtr7t0r73WY7y+MQSkCv8C2Pde+xj7TVO5fjBCLuxriEB8E9Uv0LKua2NsZhm9 + s86HsJMmZieBMc86elIzRgNnw4FinG+VHvyMX0Dy4HKtv9+a7c608+Gx2t5eljU08KxAkF31ocup + iePttdIbXq9TW2FBl5faK1XJfsRNxtfGHNlygJfZiFdJIrDF6Hr2gqaCBTYkjN1gVaHrkAgvIMO0 + 32rZINu2IJCNyVJEqhzUaR85/+noKCDgN/G/p++njd1j66SRM3PmQxdYIvZ1ULv0mf00buDnNAFh + OsXcqBeX3iazZrkybggLMa8pBGey5BmOjzpK08FRxRSNpM/Jo3kqPz8lw0PXA4jDz00Xc33Y8OTw + vuPZrw8Lnl8luCEObQMgfKuz0cOWfwYEHo99fejxqzVo29teD6878clmSnMGNa8R/HGmSbZSbiU9 + kBM/U2IL1SYRBYuTZQIFhWGMAGMEGavqCTvTJOEetUzJO0CFnzDnR7QVkFuUKByqMPGicEU2pLx6 + 7RKrOK/A2uR60Gwh6FmcfrJthfmJe1E2WLhkG9gMUGOa8lpta3JM4lJIXfEDaU6WZRar8gpLTtv6 + KrA0XCi+dAVrnVOXAFDF0kEmWakSw0jmlyxTpJxRokax+gRMknIoWUmhLEp3ICgR9IohNorla4eK + 6ZeA3njJVAlZt0wCovy9Gs3yCjRA8WjtyKqOi6nyEBiKXYE9CPsOZAHyq01rJbXqKw7meZ4i7j+7 + jaWw2TvqSAHmUuEBBwkh74qmEKrZkpYptvbAZQIXMgGzmIMzY6ixD1oioTiGfei0ItBbg8BnTPLN + 5HgJ+ExMxVZlgW3ZhvlqP65KXdtpAOuze1vbgIYShCWw/Fy5d5TW7EPkM1cxwsaYsUNBuw2fZvo8 + yFSFMNGYU7fXwk5om7q+p/aDZgGb1ZsZhZIHrcap4FSb6hwXstXuq/n6qlow5TmGA7ppomjl9S1D + GDYT70bK3Ia1kLXycbfpvdfmu7M5u2LYbhzsgFoMTAZqrGBTOKuVG9APkTELf5XXFFpN6frrmS86 + diZ6Pe/MHy57J3s852xbFO0gAjOYpXQ9X1DyMdgEn6bwowNURdnGCyfN6ivN1bJ4oXAhGK4FrJcF + tJCYhayYjNIcjAQyYjwiiPJSFqXs5mzj5hL6Uj69TrdI+5SK93X691anu67CHmkI5W6nNtKtlWsF + Q6hD9sh6yEA5y1y7+9nn4TIBNzRRacDkKqFYLqS5bjkNrwO/jc28owHxFIBgxg1OVebgYdWeB43c + uV5QM+D3mt5KysbCEHOfqOugu06zSXXW/OpxUh2Us5onn0/DonrmVthdoLqHrNFiZjmn8eWsx/G0 + fF9Di1u1Mmrw4YSYoM/HBS39aGpuWfZd1KGgncdZfg7MSUvoOaWrk0BICF8yKbaUU3UlOd/cWKyq + 8mxfsT6eirWqfzxGFHxhiXPDKajPXtuVz3Tn0sdb+dyyTtm6k/aHWdYB3XiYBb52f4C1T4z3B1iP + +gALM6pHf3r1rZ9ZOZdbFk4Xyg6Ohp5gB6Gj2xj5mnMwl4tWY8RMdCHUOzeGPOa6JNIX3SJYSx3N + v5U7Re5+twC7FSP3Wejsc77b5Xxu77SpuIH7CsJDNyl0CN3VNai+3bDPJ/f55D6f/OvzyRPtEybo + PLdmlS3n4X61vG+hcxd56zxfbKKKsIk4O8ntTvQwgK9Hbvjz5lDjbXycV2dWSkIX4KasG0+tds26 + 0d49xL/ZZBxvkT351jPyPjlnM5DuqCncPWXv/fSfPAj9+68ebs4jHnNNoQ932irYFxS9F/d2rAIG + g8GJUqrAlrjWqsDLWv4zEvP7m92zlPowYn+A8kAHKIYFa2JTclonQ6LEogWPSHL9G636d8/sGvdw + U7swe+2sw6BD8C6ORfY3F/c3F+/i5qLHyO72IuOXG/uju/64Y3D5ru9F3twEtZO/7RuSdUCYOflO + B+zRXaS8j0oCny+7oNmtKDxzG0XFvr/YIPdd9Rdd33ZvFzlVjJtQscniic0F9rc697c6b3+rsx1M + v4ueR5qI3guet+lb7N4N+bKmQ/UnYramha9BmDNlAM3ug7rCCUbYU5AKbDnQHdoMD177P0hf48Eu + SWKpJfVfzwK7u2SNwqu/wqpX9atqLfVHpEL716O+otSqGeoUXf8/Ny+9e+HxnsfvdJKODq/gDPYW + ZrXqUGaUsY8QKZLscqaU3Aw42w4H8fnCA0Lv1Ls5vMNHNUIksZJ10/y+KwXV4xwJY4DY+RZB9eyW + 7VfPAyfjluxDFRuW4F+QhlfP9bY1vvWx/zZ78pz+V8+X3QLom30ftwGq507vbuLTTWbrNbAb9Y4V + dudCmPzb4G36VZCB01hG6Cbup61RRzR/g8MlgF4rypcRS9m6+bfKFuEVTUvWdpjebkgLCyYb7tCN + 7Y/QrixmLvrXWzEDamHpdIpw2vbAVC9tbzxrWfV93VnQ3Nz+3oLR+y0vEuOj0gSv1VTpkMlL/KaB + z33fflBK2f0GhGJb49r1OoRjcR2Vd875bdLbbBdUphY0Nm+r392I/99GJeypd/8HUEsDBBQAAAAI + ADAweFMmRKmUiwwAAPFeAABgAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + NV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19wcml2YXRlX2VuZHBvaW50c19vcGVyYXRpb25z + LnB57Vx7b9s4Ev8/n4JwD7C9kJV00QXuDPiAINvtFttHkOsesAgCgZZoRxtZ0pFUWm+R/ew3Q1IU + JcrOo0kfqQW0sSnOg8PhzG9IJk9IXCRpvpxVcjH5594TMrm3B5gdFeWap8tzSUbxmLxOY16IYiGh + nZcFpzIt8pAcZhlRnQThTDB+yZIQaF+lMcsFS0iVJ4wTec7I65fv6uaQ/Icx+0V+kCTNVZ+SF3+y + WBJeFJIsCk4y3Qfew7eVlqlUSxhZspyBGiBkvnbUG52MyWElixMmpO74QncsuCI9p/mSCbKiaxLT + SvGOC85R7Jyd08sUxNI8Ie9TGNqckawAPulC6RcjuxSHaoWH92v2BS9WRK5LmFWSrsDOkrz74/h5 + dPTr86PfXr55sWca31OeQx+xpynoXxVnIYyDhexDzEo0lKgZHGUpyyXY5Bx+pLGy4nPOCx6QX6Us + wVAl9GamCb4WFY/Z8w+pkKLT+KaQvxQwp6Z5RcuI4UdPi5IunSG8lGx1TJcs8fulJcvSnNU9j833 + WqmNBKHkNBeKxpDqsfyvgnlvD8znUWSZo92rk7fH0MJgQG+KY/0uIObDaybPi5beq+VKbjL14clr + ZZpflLf2UxnpIeWrqKMJkBuxZl7DsH61AtfLBKGCRPrj3h44Zcs3pnsEniekXAMHOSVJKug8Y7Mq + BzdPJppRUOVLXlSlbRCKqsfvDvN1QI5oliGTgPycxmBXtZbSOMAp5frFW2UCmgXk3bpk/6Vgxt9z + aNlTjN+RWd0+Gr4bjlXjUSawDV7VxKe1oNPTrgucbpzYMxCpFTsVEsSCxmdn5sfeXpxRIcgxTy9h + nT7Pk7IAq4i3JdOxS4yKOQabsTbbYDDY3JUU9mOoh/VHURFxXlRZQvIC45eQFBYXkEOggAihhScp + xpVsHZKX0IHRJCDrhjDmDPtTs0ANkxg5gO+gFIctuJgOicgA4xOVksbnuh28gubYwtN5JZnRcQrD + 4cZxphCpU+gmC92gFQRqdA0dflNnmET5SKjZSJyqms3fjjvnTL4v+EV4+ePBjwfRwU/RwdPQOKci + LCmnK5CEo5vWo8QxYKKAyA5xVM2qCFv9i3yRLqG/+lkZhYqFpdIMWzTwKqVZ+hfjMFDorGbWjLR5 + 1yJJ2DYi921YO4g2q1mJs2YhYmvCFiSK0jyVUTQSLFsERs/ADChwFAla/I0H4oOEYaQJQYL+0Hlr + CaFDw6TTyeEP3VxpXVlKOZSlPjiDgbExydSQgHTUogvsN24yQ6Q8JsrpCkICBCF0mimBZWl7lnp5 + Rcysr219f/jhAjLcUjRvYVGrt46x6lejMAzHZPJviN45s29jNUeaDcTccjSElmGgOo0bYhOKTrH5 + zBKrpBZBegMWH20rPs8Onk63ZdRnB8+mm9Lls4N/TfvyqxVw5SsQVmUCVhu5A7EvYTgfr8ZjS0XL + NLpkXOCCmZEBLsvJwU+Tg6eDpkuMOQvf0rLMjO77f4oiN+6tLQuLD+ajgvXw+8kr217xTDmd9jDX + PcIVkxQUpadD6DQ8awycLnPIeo0XUHkeaTAXwYiqFVhQeFYe1m71Ar3qDTjKcNp1/xAEjQY9/jcI + +r1yCCMajoO2oLId9LeJ6nVgELbBsXvFiWouYp6qrPcy2STJXZqhSxKlySAg2177cq96p88EUTMT + KBX+BbDweido3O8bKpKCF3BhX0NA5+uoeYFTe9V4QztZb6Q6HYIrT4wrgzfNPDspitHA8XgwjPOt + tkO/4ueQi12t9fdbq+2RnQ4P1frqVVn3Bp1VF1RXffA1NWmxO1d6xel56hos8HVpwkKNmSNugFOX + c2RRNa/yEa+xFqjF6Gr2C80EC2xMHruxv2bniQjPAajZb83YALTaLgBuZCUiVVVpFEVOfzw4CAgE + Lvzv2dm0tXpsuTFyKGd97AIrxL4Ompg6s5/GLf6q2QlwdupGJtWHJpDXPNvknKZgC6+kGvWoothp + NWq99JKbtSuIcctwkMDaBuFMVjzH9pE3ATrTqQShmWyK2OjqKmhPyXDfjSZi/2M7XF3tt8IyvPfC + 9NU+1PCXKS6ufVuTh280UNzvBFtg0BN+r4ZXXvawqGTOoK40I/kWIImtLTsAA9Dkz2oQQm0siJLF + 6SIFKG5UIrVKYeMBBrj2DG9K3gET/IQ4GRnWnVwgr3goMN/Lwh2sEdVrH1+Yr3Nb3AY2LYEXbA0u + AkWRqQOVs5NDEldC6tIUxHGyqPJY1QNYI9k9mhJrmUTpoksuu0J9ASAVsa5M80phn0gWFyxXopxW + olqxXAJOkkI5TEmpJlKXypQIesmQG8V6y5NiCnuwFa+Yqnma2j4gKqKq1ryouwY4PNos73prwJQl + 2BmqM4HFsn0HYwHxy3Vn3rTRaw3mRZEh77/9HZCwvcnhjQLmquYDYQOSyiXNIBmyBa0y3IOCQAJa + yBRcYQ5LnKHF3usRCaUxuL9TO2MMgwGfMMnXk8MF8DNZC/fUStw/bPmOjm6qNrOlMXicXVLaB3Qv + QVgK089V0MPRmkWAehYqco78oD3lerX2WWbTwp2qKC9aNM0+UOhF/6m75JvAYyawXaCYVkD16DVO + kaL2U05xIjv7Uo1en1TuZLzAmErXbRYdpNxxhGEb2rZAabev7dkYH1ebXntdvb3F6Q/DbhvBCjhr + pciGK/gUUnUyJn0fGbfoL2Tag1YkfrCc9aUYj7A37M36c45HDLM3y+hqnlDyIVgHf03hh9epzkmt + Fw5m2FQ0Kmv29kL7MTQhmNl2tD0xAy+ZjLIC5hagIm5BR0Uly0r6AGTctnwfftHmvQWGUWbdVZCf + vYJ0l5jdsxYqTE1thlipkAQz0aS6kY0sgQoyhQ6Ts4/DRQrLd6LS5+QypQg+s0LvRgyvgv5JnvW2 + BqSnNAE/ammqMm6PqnbDf+TS9nY1Df3RpheX2xwSImaI/MDmB5u21Fn7a0+U8FjOGp36ggqWezO3 + 9vM7NXWPZouIbE7ji9mGld8JPi0rbrXKqKWHE5qDTUEm6NhHS3Nrgm+zqoHhft5ihn0oaZ7MdHS9 + JqverfAZ1CVz51SlwUCAh14weV39g4e73WLm+6iItEA9U1PyXP3Eo+cF4wygcGJ1Fl3uNc3nLbBq + uN6Z8OCOaPyaE6auX3UB+vTGCL0XoN8STm/09t2Rgg0Q1x4pQBTcHSN8xSCwZ8q+n2OEWgSgPh1e + EVXiprVfY/pa/EOTbNNA9wDh+sMjPL5AkPPozy52JxbuboFVJ+nVcdjJlpB7/F2ETzkBcTXo7CIY + QreHeucmoW+qhoj0daIIJkbn9y9zc8Nd1rbD9cXAQxUZOxxnnhvgOHfvr220gfsKIr8P9BxB93XB + ZJM/7zDiDiOq56vDiJ8Zqx3pRTnByLUVsXVWr/vVw7cPhAnnRbKOasEm1N9o3C5hjwL4euTmHA9T + jLfpcFofeKjRuR2uQ7N45HFTNIu+3iP8mwW5eDfn6Q7pXm+z2QwsddA21AOg4s2ynz647IdH5NcD + gW8Kp+vTiu6YHjFIb25S3ABdDwaDI2UagdvG2jbqlxu8cwHzK2PNycH3fErQTOiUHDfIQlQIwXHj + vtC/v6Z/48Ra1reqvazj6eJI+NQd+t1dr91dr/u469VxsPu99nU3J390F8VuELO/69tj1++6WeIv + co+sidszJ+t73R7ddbP7hrq1h9z+CpsPeXtoW6h3t4OlxT3eq24qJ0yoWOfxxObM3b233b232997 + 6yagb7MqzlJxD1fg7lag1n/KYCPWeQXKnagZaleq6voaeIlXRgmsTunXUZF+tntfCN2l/kMrMJ0X + rAXk+xF7Y9hPwu7qb42E9o+M3BG6N8p4IP7ruEzW64aP9zjyRgeJGDugmoT1hJBLbYuPcvYBomia + X6j7rR1cuO1oBp87Hs/0kt7P0Qk+qpiWxI7Mx6CbTlTrxzmQw1h740PU+rkZFK2fzwZJrcAvgBXr + 52qbsW99+rltYnsOQevnboehm6gf4lC0fu71ehg+PuJq5sCumHs22L0PwoBEw7cd4GAMnMYywvV6 + /4Vvk1b6S2CXOYaOqFhELGOr9t+VScJLmlWsG7V66+UOF8z0btO1BXJoZxVhg/4lBoQeHS7ePgKS + bc8OzbRuTCodj36oo1utze2Pb43db3lPEZ9PPGHF56EPgZVRHvQk1/E4z+TeUaVFnO16tna1oLVw + O5uYrST8BUu164qyaL6OXBU2FWlfWenlquwWXrtqaFcN7aoh++yqobAvyD10dbQrVnbFSs8c7IqV + XbGyK1Z2xcpXWaxszJG3KV4+sTL5P1BLAwQUAAAACAAwMHhTFhXFRl4RAADU9AAAZAAAAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9u + cy9fcHJpdmF0ZV9saW5rX3NlcnZpY2VzX29wZXJhdGlvbnMucHntXXtv20YS/9+fYqEeIKmgGadI + gTsBOsBw01xwSWq4aYHCCIgVtbJZUySPDydq4H72m31wueSuKEqRZFleAm1kch+zs7Mz89tZDr9D + fjwNoptxkc9O/3nyHTrd2gWNXcTJIg1ubnM08IfofeCncRbPcrifJnGK8yCOXHQehogVylBKMpLe + k6kLdd8FPokyMkVFNCUpym8Jev/2Y3nbRb8SIv/Iv+QoiFiZJI3/JH6O0jjO0SxOUcjLwHP4a877 + ZKRNCbohEQEyoJPJQiFvcDVE50UeX5Es5wXf8IJxyqre4uiGZGiOF8jHBWvbj9OUdjsht/g+gG5x + NEWfAxjahKAwhnaCGaPPp80FdKiyc3e7bJ+l8RzliwRmFQVz4HOOPv5x+dq7+M/ri/++/fDmRNz8 + jNMIymQnvAb+q0iJC+MgLvnik4QyKisbuAgDEuXAk1v4J/AZF1+naZw66D95ngCjEihNxC34My5S + n7z+EmR51rj5Ic5/jmFOxe05TjxCf2pUJPhGGcLbnMwv8Q2Z6uWChIRBRMqSl+LvkqilFdw8xVHG + 6oiqfCz/K2De6wPT24jDUKHu3dUvl3CHwIA+xJf8mYPEj/ckv41rdM9v5vkyVp9fvWes+ZlJq7mW + 6N3F6dxrUALVRbdiXl23fDQH0QszhDPk8Z8nJyCUNdkYnSC4vkPJAlrIR2gaZHgSknERgZhPT3lD + ThHdpHGRyBsZq2WQu/No4aALHIa0EQf9FPjAV7aWAt+hU5ryB78wFuDQQR8XCfkdAxt/i+DOCWv4 + IxqX9wf9j/0hu3kRZvQePCorX5cdXV83ReB66cR+gi45YddZDt0CxZ8+iX9OTvwQZxm6TIN7WKfv + gujuV1BPoE+yXxLC1Vc2iCdU3ww553q9XmtpFMufLh/cH3GBstu4CKcoiqkWy3IMSwxaAHUBeoKT + MA2odgkXLnoLBQieOmhRVfRTQstjsUxFIz5tASSI9qI0C4LGFSNtgGopnOfYv+X3QTZwRO+kwaTI + iaBxBCNKhfiMQF8HUCyP+Q1OINSmAsKVcKAMEzFJcXkzOZ2wspm/FaGOSP45Tu/c+x/Ofjjzzn70 + zl66QkRZxQSneA490dGNylHSMWScw6BN2dxmbq18HM2CGyjP/i0EQfFM1uIN1urAowCHwV8khYFC + YTa5YqTVs1qVKWmrpD51SxnhbBXrcVwtR3p3SmbI84IoyD1vkJFw5gg6HTEgRyHEqbUvhJBetKLr + 8YrQA//ReCorQoGqkUYhpX0opvbW7IsRR/tiP5TBwNhITtiQoOqgVs+Rf6XCPnhMYrwIz0ExgCqi + QjNCsDiVemz62op8//0dmLebrHoKK5o9VXhUPhq4rjtEp/8G1R0R+dRnU8ObAYWbDPpwp++wQsOq + stBD1/T2J1mZWTQPbBs08VXepders5ejNnP66uzVaJmtfHX2r5HJuMoOHnQC3CKZwqofqAORD2E4 + Xx+GQ1kLJ4F3T9KMrpMx6tHVeHr24+nZy15VxKcGiz7FSRIK2l/8mcWRkGrOWVhzMB8FLIPfrt7J + +0UaMlnjgqVKhTsnOQZC8XUfCvU/VQwObiIwebKJBOe3HvfkPBhRMQcOZhqX+6U0vaHC9AEEpT9q + Sr0LHQ16BrHrOWZh7MOI+kOn3pEQxrYuVHntOQ3xNTdaTDI/DZhheztd3m617ly1ihdMWT/LH+v9 + PhgnSWhIwW/aK/znwPIyTsPQLAFMTcJcp5l8DNo6XXjVAzqBD9Wc1+3x0lrXfRDYUyGwIDNjjU+s + xqCnyDUwRvmr5IOZ8FswtCrV/O+1ydaqXffP2SoyksxLA82sCCWX/dApFTavOVd8XfF5ajLM0Wmp + Fn/pFnup8I2aLXvScU6LaJCW7hSQRfB8/DMOM+JIzTtUFXvZnNaFewu+mPyrGhv4pbIIeC55kXkM + OHEXCV3/cHbmIFBP9H+vPo1qq0ciioFSc2xqzpGdyMdOpTnH8tew1j67ragxOXUDYcddoa7LNuvV + UxwALzTUNDCQwprjZJR08SU3roOEYY1xYKbqDElJXqQRvT/QJoDbM2YGeCPL9DIVdaaaR6j/QtUm + 2YuvdXX18KKmfOG5powfXgBMvw/o4nohYbf7gXuB8EzzoKGPSs8+9B808yC9jQkB1CgGccCuhgSM + DccBnMOfGO0Z2y3IEuIHswA8a8EUBLN3V5LlVvMufFHDyEboIzREf1HXlzZaFlJ9c9YG88+NTagD + rjxlyRq9DzO59Z7qLdS6uCMLEAVANgLSMaFG58gvspyjTOgpRbMi8plTT4GO3G5JKCCZMjI4bpIr + Ue8AeqUOax5EBfNkvDy+IxHrSrmL2F2KeaClHAOyxShh08dRL0YZvie0NZyrwyx7ERgd2JQWhAGX + CqY7iGlOdjeKy6IOHR6ulnGJ8gW2oIUBYmUU98pnMBbo/mbRmCnGLEnBJI5D2vbf+maGW9+v0EYR + AJQQRUE9gPG4xyEYPTLDRUi3k0BhABV5AFIwgaVMKMc+8xFljGIQegUAU10FA74iebo4PZ9Be8I6 + 0e2xhG4FltiMUcG1GANYEt+CsMmFxGWAl8oQCWD6U6bc6GiF2FM6Y6YhB7pyHqV8jZo4s2y5jpg2 + z2p1qi0dV9PyI3WhV5ZXTGAdboi74KNTqVEgB9sauaYT2dhiquj6JvASpjFVoHhRb6LuojYFoV93 + YWvOZ7OsLFkxn642vvaadGuLUx+G3AGCFfCpZgqrVkGmaK2GZcSfPSEWZlhSHzSroqvHscmeaBVV + bTeu2RWtKMzVOMTzyRSjL87C+WsE/2iFSrtTe6B4AssAH+OdsRTlFqEMA6bKgrIkNa43JPfCGGYS + HEC6d+zFRZ4Uue5WDOt8NnklnJlreCb0suhvV+hPXTZySzljqmcktf6cqRngd2W+BlJbOExxxFz1 + jb/2ZwEsyVNmEk/vA0wdxzDm+wX9B8c8lWPjXQcZYAVIS41SZkUNpMr9+IFa11hU3DBrEKNPLe2C + S/0AT1dWugKp9zqu/2nQBVqT44omk+qgUG2s4ja9UIVZeLPUy5pg/268ZH03VEyNi61cGdToUNSt + s0yVOA3+8N5Up/7JIRIY6V6ACPmS4Gg65lpzhW3cDLT0SoCrxzgqZwYcmzck7wJfaNC1iUWOFdDw + LvgUjdBr9i8NAs9ISsCTnUoqs2ajZZ394qPS29Zn2tnQn14R6DHIVNPLHnV2s41e9po+cZuw241+ + qSJWbvSD+rOb+7VG7eb+njf3yy7An+PalPqLdCtZR4Q6Ff/gVdoo4CWgc/7jCIMK1Ic5+oiCjSOo + aF+SMzXS2NfNIhgZfSPgW0ITKhGNjQBRUS3BnqnW5qkABI+f3/FgWrgN3+tRCXUtywKdPP0dggjr + q63lq6k7d3W+9dRHoPd1Z07paFtHO5bJs/UDa41aP/C4D3lc8KV3SlVUq1fWWKPqn5oPuyO/bxJP + F17ZsVDrncatVjQQQB8PVBNj8huGbWRcl3EJNkC1wCqnlUYmujqtVNwNnT9ZX5YejHlpHdrVPBuP + gVNndUbtxvld3v3LfXS/e997td1/Kh45jzc0h3OU7nh1sqGbE93r9S4YXzK6D8wZw14aMO7wi5ey + qjjA89rvryZzhC4rhyIrqH9Nt+Bj/k4Yf39D8tPMS3lypkmG2ssWNtvt2St79mobZ690GdvuSayN + Rf3ojm9109zP+ljX6i02WXkPB7wqjT1W7L1W7OjOge3Asy1FYv3jZbqHa6hbc3Lt/tRxHENj2v4U + Z4vIP5U20Z5Js2fS1j+T1rQrTw7qhkG2heNpm2HPMgFAmwPzDui7YvNTB6HsjBnIiBErZRR44sMA + m3s7qkWd85xnKQFm3JGaq77UJ6/4+03eOcvV4cokHZs75xU9mpt+MOe/jDJ5vNHFTnFBqksAOMLC + oj4W2/weROQLKFTgGzuU2vAF22Iw9NowDmOsup0YCb0Ybs6RHJnudC4LkJaXEnmjurdzTLS8uvme + 5bU3H1R2+AhuY3k9tDF77TBn28Qaop3ltVnUc1ntXUQ/y2urZ73opTtf1RzIFbNlhm19EMJfFO3W + FRyMIcV+7tH1uhOwW1kWM+xV26faw4tnHgnJvJ6aZere47AgTcVlxMiNVqjJV2+tBMWunFjqP/CX + D6gb0mhF2z6g1doNRDWzS+1KQ6h3FaPl1KwfpxV8X/PcIb2+MZRKr11HexlTdhqyVSROY7kWjZSu + Zx3dlqLm1NZuY6eyZocfF7itgmreZOGpVCyDbgcGyDgeUwlX0ZiFSBYiWYhkIVJ5NSBSU+ftGjJZ + BGMRjGEOLIKxCKZko0UwFsEcGoJZaibXQTRbhCuUcFHFI9E0iYMopwYxIn4bctnuaUqi9HhYyRNe + C5ZcSPqaORTUo5O+hFXASsQqompkNJOCVtB0ELNkruzpeRzD1KRgeUcm9moHLg3tHVO2B100d5z0 + Qe/wsICtYa1aVCuubikg2iyBfS1QbTQhlZS1tawrIWjfZO8O53CXQTSez8uHZRc2CYVNQmGTUGw3 + CYVunw/hfbiuZu+QjgqWJXSOQsGmaWo9WCjO2T8ZBNjpxbs20LYXWHie0Oll7n5K2OtIrbiQvvmD + N4jIWRS4NRTY4R1ArE3q2rRs/ApgG/SyuNPiTpvOZrUhswBWbdQC2OMEsHsGkjZ7Tkv2HAPgsUl0 + LBa3WHwZFl/DiB8nHC8/bNLCgf2mneyKy+2nPA89vLOGaFlPWW3UesrWUz7skIv9mOhz9vm29jHR + dSzDcbpf6heMnk5MZEffNrUxi4ONWdjkfzb5n/3wqv3w6qN9eHWt/QnZ3D5y9mmqc2ywo1q1o8vh + Z7/laiE+sl+Mtdn5nkB2vtU25chhJ3svrGX42V7w5paTUehs6ZyTwoSRMoE4W1+gOl6geYjJN9pm + +BFzcLSRdWCpODqukWce3LIZOQzj6pKRo82kHF9Gwx0Ag6pxm2zEJhvR58AmG1njgJHNOWKaYJtz + xOYc2XnOkU6OwBPB1u3faL4l/p0cLl1GXmnl74MsmARhkC9WnaArd7M2egXtglKgJ1z6XfZ+xVfm + t76RJjf1W9L7VZ32No59rNvPc0Ath/Xmy3pCv+2zfXLrd4lPXD4HZlTr6nC2x438tCfg7Lsie3tX + pKvB2NmrI3H2fN8dYScK93yYcA3HcqOXPmqH6nf9QeVKTA/h/ZENTeG2Uu+VBg6qlT8fXvir1neH + Txx3GdWT9mY7fd/Y6M7SLx1TIjP0+Zaw6ATLx6fMGg0iMzaFhB5R6xY3KrnGAznlX2UwZxrPMWgQ + unHYjOFUFVdkGfjIoiNcJVOVSttewm50fvmWRX62kFCg64zuMfRkDxs+i8OGbUJ3IN8crgg6ujOM + 6+rVZ33KccNtJMk7YQPG0vYaomn228Jb9zHLCT/Erww/8X0SdUHZY4SVqNljhAdzjLCT0n4CmK+j + 9ZksvMYhiW8La3Q/S3gYkNEGQGwAZC13bemCOdyQyP7eqrCxFxt7sbEXG3uxsRcbe9lp7GW1Fd7j + OaRHDdjorHgmnvsjB3vKryyJN4mU7/zIfpZ8b2k3QaE9vqJk4082/mTjTzb+ZONPxxB/6rADKLm5 + OiK1cXYOG8qyoSy7v2VjZjZmdqQxM93QHAdWZ69G4SKPPfFpn6mRE0uzb6yA5dvKp3EOFIoPSk31 + oWamjBpXwvOlSTVa8k+gYJpxV9nHEUVL9KH42FHpLqPyFSyAVPktouxSIkWcKo6og6yBxMXNFCTN + lANy22j6oFJkdJq0x0iS0YmwQ0mTsa7oH2/E1SbKqK7tJ8roYAR2nS9ja061bNHmrLA5KwxzYHNW + 6EC9k52xWSuec9aKA0s5cYhZJtaxojs9fonbl/M2MOEjBG8tntwvntxjdNZCVwtdLXS10BXtBLq2 + 7N8+GTC7r0iR7NCiZ4ueDXNg0bNFzxY9W/T8KOj5gAOx60Pu/wNQSwMEFAAAAAgAMDB4UyIc82Tu + DgAAOJ8AAGIAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIw + XzA1XzAxL29wZXJhdGlvbnMvX3B1YmxpY19pcF9hZGRyZXNzZXNfb3BlcmF0aW9ucy5wee1de2/j + NhL/P5+CcA+wXchKUmyBngEfEKS726D7CNLsAUUQCLRMO2pkSSdR2biL9LPf8CGKEik/ss7DiQTs + xqZIzoPDmd8MZfsH5MeTIJqNcjod/LL3Axps7YLJjuNkkQazK4p6fh99DPw0zuIphfY0iVNMgzhy + 0VEYIt4pQynJSHpDJi6M/RD4JMrIBOXRhKSIXhH08eS8aHbRH4SoN/SWoiDifZI0/ov4FKVxTNE0 + TlEo+sB9eDcXNDlrE4JmJCLABhAZLzT2emd9dJTT+IxkVHR8LzrGKR96haMZydAcL5CPcz63H6cp + IzsmV/gmALI4mqCvAYg2JiiMYZ5gyvnz2XQBE1URd7er9mkazxFdJLCqKJiDnik6//P0rXf829vj + 308+vd+TjV9xGkGfbE+MwH/nKXFBDuKSW58kTFFZMcFxGJCIgk6u4E/gcy2+TdM4ddBvlCagqAR6 + E9kEb+M89cnb2yCjWa3xU0zfxbCmsnmOE4+wlwYXCZ5pIpxQMj/FMzIx+wUJCYOIFD1P5fuCqcYB + Lk1xlPExcqiQ5X85rHtVMHOOOAw17j6cfT6FFgICfYpPxT0HyRcfCb2KK3zPZ3PapOqjs49cNe+4 + tdpHSeouTudejRMYLsnKdXXd4tYcTC/MEM6QJ17u7YFRVmxjuIfg+gElC5iBDtEkyPA4JKM8AjOf + DMRETh7N0jhPVEPGR1ns7ihaOOgYhyGbxEG/Bj7ole+lwHfYkqbixmeuAhw66HyRkP9iUOOXCFr2 + +MTnaFS097rn3T5vPA4z1ga3isEXBaGLi7oJXDQu7CWQFIxdZBTIAseXl/LP3p4f4ixDp/kYnMjJ + 6dFkAg4qI9nnhAjnlfXiMfM2faG3TqezpC+K1UtXCPZnnKPsKs7DCYpi5sEyimF7gU8AVwE+QpCf + BMyzhAsXnUAHgicOWpQD/ZSw/lhuUTmJz2YA62FUtGnByIRTZBMwD4Upxf6VaAe7wBFrSYNxTonk + cRjc4FSazhB8dQDdaCwaBIMwmhmHcMCBJibiVuKKaShbrGKafzSDjgj9GqfX7s1PBz8deAc/eweH + rjRPPjDBKZ4DJSbdsJCSycBCBfh28KR8XTO30j+OpsEM+vO/uWQonqpRYsLKGLgV4DD4m6QgKHTm + SyslLe9VhkzIskH6XbewEKFWuRdH5VZkrRMyRZ4XRAH1vF5Gwqkj+XSkQI7GiFOZX5ogu9hA1xMD + gYJ4UburBkKHcpJaJ21+6KZTq9PizDFa/IUmDMhGKOEiwdBeZZyj3qUyNnjcYrwIz8EpgBtiRjNE + sDFVz4TvLy9IPCx22LLOP/54DUFulpV3YV/zu5q2ils913X7aPAfcOARUXd9vkhiGnC7Sa8LLV2H + d+qXg6U3umDNl2owj2seRDiY4ptqZdebg8PhsqD65uDNsClivjn499AWYhWBO5MBN08msP97uiDq + Jojz7a7fV6NwEng3JM3YjhmhDtuXg4OfBweHnbKLz8IWu4uTJJS87/+VxZG0b6FZ2H2wHjlsiC9n + H1R7nobc6oSJ6fbhzgnFwCi+6EKn7mWp4GAWQeArzQDTK0/gOQ8kyuegwczQcrewq/fMrD6BoXSH + dft3gVCvYzHAjmM3yy5I1O07VULCLE8S6faXkbJbMFBrMm0rwSwfZ34a8NB3Mmmipe9OVx/iBZOO + g5bdNuneWRdQ+lG5Fowq/HNg61mXqG+3Du5MwQ7STN0Gn54uvPIGW9y70h6qEbtx1EUXjHkgjRns + aWToiY/odTSbB8Vo7wo92Bm/gnCscy3eb8y2Meyie8R3mJVl0Rt45l0Yu/yFyamMjPW1EntOrFNd + YY7JS+kYCuDspRI91Wf2FLRO86iXFoAL2CJ4PnqHw4w4yiv3dfdfTGeQcK8Aral3pWyAXFUXwDc0 + zzyeWgkghS5+OjhwELgu9t+by2Fl96ico6eNHNmmcxQRddspvepIvepX5k9xAMIYiVGvcS6xTUZV + 6N+vCAthpypESmieRqy9ZyhNxCfu1sUkTX6WmSd3tUPU3dc9QLb/repi7vYrzhTuG871bh+S75uA + bYh9lUy7nwS+20/qyHj/m8Vr3nXvDKev0MSYQEYoRdkJKKHSwhowABj4K5ci4zWBLCF+MA0AQwue + 0Mkpkjy5pRFIyGkRcIjOYRb2iiFcNmPRSYfgfA4Ow61T6NJKUnYNmdQsXFcJNk1UoXlNFmAokNHI + NI6bPDpCfp5RkVkCwRRN88jnYJ4lOKrEkrBEZMK5EfmS2rgmAaDKgCoNopzjFo/G1yTipLRWxFtZ + rgMzUQzZLEYJX0yR6WKU4RvCZsMsWTKoyLwctJXmhCcsZWruIO4LeWsUF10dJh4uN3mR2cucgnWG + 1Cpjua66B7IA+dmitnRC6wUH4zgO2dz/mAUMt1qjMKQIIIWQXcF5QDi4wSGEMTLFechKSOBOgAsa + gDGMYaMTprGvQqKMcwxbQEt8mScDgc8ITReDoynMJ+MNK4klrPxX5GScC+HjeGKl8lqwObWthA2I + XhkiASx/yl0fk1buA8ZnzP2n8r99jYLYsTbNNG3eIXfvWWVMWcZxDbc/1Ld96X3kAlaTC9kKiJxZ + jZZg8HLIBVvIWlmp5Ou7UpUwjZljxYvqFDWUWzOEbhWUVuBkva/qWSqf7Tax9+p8G5vTFENVfWAH + XFYCZTkr2BQbVYub+KsnzcKehFSF5kNMfzmyxRljoN3vjRoijzEc1m8U4vl4gtGts3D+HsIfo1MR + mSo3NOzQlPJxfVp7MQ0SpkRQtOqoerJAPCPUC2NYXYB5rIbsxTlNcmoCkX5V9zYcIxS8AZbhim3z + vyfI//RtpsrOGXdVQxUl5twtwVqU4a6nvIvDHU0sXOXoW3cawBYe8BA6uAkwg6FhLKoJ3TvHvswj + a6uDLIkFWFKFUx51Layqmn1PH2vtKhvsHseK0FUccRlu8EznZjqcKtVR9a3FTxhTjkqebG6FJWsj + PXMzO5XVPjEtQ2Vj7F+PGvZ+zf1UtLhUK70KH5p7dprcjFPTj6CmJwc7mt+AvI+c1pDbBEeTkfCw + K2Lr/VKgjixwu7WTkRIJASp6T+jKTIhl9VjrUE9xXk2eJGiKlRuit/wvO0+ekpQAQC41Y0xfjHnc + tKsA8TUDcO6J0VccGtXtrA7bh2vjdits3xBkN1p/e0igHMbKQwJwi+3BwLMGhpZFez0HAwUJQILC + wTKkycrQZu5pcvEvMWQZB6IHEBcvXuCBBMM9L/40YtfPILTj/4lWOVGNvW4txkHEMOsB33OmoXNQ + qwfIgXoPfk8PHbuVC3jiwR4PVkaE5Sd6hkLfjKrDalD/UMlCi7/ktQb+0ut4VaV19Fvgr02AphHa + 1qMeTQbdYrsW28nr2WG7R8ZYx2JbDpjvWoq0avtXf2vg0gfCcuN4svAKwtLZryW3PtDCALvd06OO + gSv6y3i4KI4vuHR6h1UolB1grItCma1biO8sOGVPyRzuOkJtknM0AukOqsI9AJptpn344LQfHkmv + Dt+7ha/FcUFdqJcMrsvnGdZAxZ1O55jrJmNlWqGcjNXfwbYDn7VNFiAYvHzNjyxJmmoVh+i0BAFZ + zvAyq47H4pNf4pMaSp2WIw71oIzBjUbie+vg7XNW7XNW23jOqmZg233k6n5G/uIe0lrDU7/qJ7dW + F8nU4Cd6hqv03CMt2hvdXtyjXtsGuYWNbP74mAl2LWMreLetOBUEX+5jZjwuDHC2iPyBipvtM2ft + M2ebP3NWD0I7mhHLCErxLHtWafA5MPSZQ/OHP14C8PdF5rpmdsY00ya3ZnLbmM4KhdVIb57Jlgbw + iEls+9Rae2r6DE5NNafcnpM+a9RqWbz2nLQ9J33Ec9IyTj7YESmm/tWrPSTd9fPRnTx3tAXA3cqr + QoAxHsDUpqTqfrlM8eVpjWDtA5A94yC1eqzHP2sD7NgzBVJ8zkZTo57zPBruZkcRVHznImjwmlQO + JuwnEKXE33UWwb920FXfN3jPo4iSGeNQ4nmAeat9vFxYvxYgZ9s1SQmEMOa1eLTpReSWeuDHrvmn + 5GpV7mVwh133hDzWoduBI+zih4MUKcnMinpTZlJcGsgt3Nva6UlxrZemFNdTgPriulsm/8Ygf5mu + LVi/uO6H+ZtGPwT2L66tfsqDXWZBt1wDZcRbVtjWhZAAR85b9TkgQ4p96rHts/2TtdLT2wGdPjnf + zfHUIyGZV7/zceLe4DAndUdiPZCrzcKCr9608gTOVavKIrn4dDJDA7VZjINKNmy5wy6XtdHP1yz6 + oZIUwc3miYrU+4bJCrseOmHhEm07adEsxFCRkT0o0FY93ipMw6lsNNVFSGHEsU2yjI1SiFXJwvef + vjxVStGYTtTPP57kEKXNXdrcpc1d1NXmLjx3eei85bGOWRTBNlFqEyXLGrSJUpsotYlSmyhtJVF6 + FkcxKw9dboKU5jiEBfCvmDoyQP7wPwhpPE5AtvDMWzO5Z5aqaT+FhfA4zmlj8sY6FHIhKRficoGW + KArJDQmf9JG45To3qTbKUmdg1cRtZtlmlruWWR7+Mjg8aDPLRzsV2yj+vLg8VEr/UQj/B5P9D0KX + UV7uc4GJVRG2zYvbvLjNi9u8uM2L27zYYiGPcIB4v5D/CFn0cTxPckr27VEZ5mkO13cy9Q4SvIXU + +2b+jLJvOagYE0QTctvQVSY54mPxUwwsLZkXRPP1Xx7d3QpAYKsAQI+KeLxXXam2HPvVVwoqvFTM + TnBQp8pvNVCsDbfQsduslFXcQ+oel75OqmkGCzGrzQtahr3YSDWMbwstbaGlLbS0hRb9Wr/QYkcb + ba3lgWst1Qh1wgLUCkYqwawkX0NmS4lK73hShKpl4tvjGtBtgnlLKQdJ5XfmlxG2Rjmg24AY24pW + W9FqK1ptRautaLUVLYuFPGlFawW2eu5Freq9srMOWu7266AC+tlwxt1+kFTiN/SzoIINS2lslTao + KL7iItqO/urhej962BbUdqKgpslqFNcepq6mk6zX2O5TXrvv14wdtT9n2X4xmLheeQlvvZ+z3CSo + 7+zXfj2TmtSj1qIevwb1yLWn9svcXv6XuRUk2h80bX/QtP06tOf1dWj3BQ9tMWatYsza3+72f1BL + AwQUAAAACAAwMHhTrRa+C/AMAABfagAAYQAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fcHVibGljX2lwX3ByZWZpeGVzX29w + ZXJhdGlvbnMucHntXGtv4zYW/Z5fQbgL2C4UJVNMgV0DXiBIp9Og8wiy6QJFEAi0TDtqZElLUZm4 + g/S3770kRVGi5DzGySRTCZiJzdd98PLyHFLJdyRM51GynBZisfvPne/I7tYeGOwwzdY8Wl4IMgrH + 5H0U8jRPFwLKeZZyKqI08clBHBPZKCec5YxfsbkPfd9FIUtyNidFMmeciAtG3h+dlsU++Q9j5ou4 + FiRKZJuMp3+wUBCepoIsUk5i1Qbq4dtKyZSqzRlZsoSBGiBktrbUG52MyUEh0hOWC9XwrWqYctn1 + giZLlpMVXZOQFnLsMOUcxc7YBb2KQCxN5uRTBKbNGIlTGCdaSP1CHC5CU41wf7tuX/B0RcQ6g1kl + 0Qr8LMjp78dvgsNf3hz+evTh7Y4u/ER5Am3yHdWD/llw5oMdzGfXIcvQUXk5wGEcsUSATy7gRxRK + L77hPOUe+UWIDByVQWumi+BrWvCQvbmOcpE3Cj+k4ucU5lQXr2gWMPzoaJHRpWXCkWCrY7pkc7dd + lLE4SljZ8lh/L5Xq7OALTpNc9tFdlS3/K2De64a5Y6RxbGn37uTjMZQwMOhDeqzqPKI/vGfiIq3p + vVquRJerD07eS9f8LKO1vZeW7lO+ChqaQHctVs+r75dVKwi9OCc0J4H6uLMDQVmLjckOgec7kq1h + BDEh8yins5hNiwTCfL6rBvKKZMnTIjMFuezVEncHydojhzSOcRCP/BSF4Fe5lqLQwynlquKjdAGN + PXK6zth/KbjxtwRKduTAp2Ralo+Gp8OxLDyMcyyDqrLzWSno7KwZAmedE3sOIpViZ7kAsaDx+bn+ + sbMTxjTPyXExgyRydHzM2SK6ZvnHjKnclY/SGSabsXLbYDDobkpS89FXZv2eFiS/SIt4TpIU81cu + KCwuyAiQKCBDKOHzCPNKvPbJETRgdO6RddUx5AzbU71A9SAhjgCxg1KsYSHEVErEATA/USFoeKHK + ISpogiU8mhWCaR0n0RXlOnAmkKkjaCZSVaAUhN4YGir9RpaZRMaIr4YROFXlMH9Z4Zww8Snll/7V + D/s/7Af7Pwb7r3wdnLJjRjldgSS0blJaiTbgRgGZHfKonNXcr7VPk0W0hPbyZ6EVShemlxqw1geq + IhpHfzIOhkJjObPa0qqu1mXONnWya/0yQJRb9UqcVgsRS+dsQYIgSiIRBKOcxQtP6+lpgzxLEa82 + vo5AfLCjH6iOIEF9aNSajtCgGqTRyBofmtnSmrKkcihLfrCMAduYYNIk6Dqq9fPMN653hkBGTJDQ + FaQESEIYNBMCy9K0zOTyCqIsyOQC29T2++8vYYdb5lUtLGpZazmrrBr5vj8mu/+G7J0wUxvKOVLD + QM7NRkMoGXqy0bjqrFPRGRafm85yUwtge4MhPptSfF7vv5ps2lFf77+edG2Xr/f/NWnbX42AG1cB + v8jmsPxHtiGmEsz5fDMem140i4IrxnNcMFMywGW5u//j7v6rQdUkxD0La2mWxVr3vT/yNNHhrTwL + iw/mo4D18NvJO1Ne8FgGnYowOzz8FRMUFKVnQ2g0PK8cHC0T2PWqKKDiIlBgLgCLihV4MHe8PCzD + 6i1G1QcIlOGkGf4+CBoNWuJv4LVH5RAsGo69uiAVlUeZSvqbJLXGL8jqiOtWaXkxy0MeyU3vaN4l + yV6Zvt0liOYDj2yqduXetM6ezqF6IlAq/PNg3bXOz7g9NGQihSDguamGfM7XQVWBM3tTBUN9r+7s + dTaESN7VkQzBNHX8JHuMBlbAg2Osb6Uf2hW/gK3Y1lp9v7faTrez4YFcXq0qq9ags2yC6soPrqZ6 + V2zOlVpwap6aDvNcXaqsUELmgGvc1Bw5MKCaF8mIl1AL1GJ0Nf2ZxjnzTEoe26m/HM4R4V8ATjPf + KtsAs5omgG1EkQeSVCkQRc5+2N/3COQt/O/1+aS2egzbGFk9p23DeUaIqfaqlDo1n8a18TmNwBiH + Eo06x1LLZFoH/eOasbDn1I3gTBQ8wfKR4zS1OcmcrgbpSrIYnjLPTshwz84A+d7neoq52atlUqh3 + MuvNHtDuqwgXxJ6h0f4Hhe32sgYo3vvsZsyb4Y2T7w2OmDFggtqQlwAiDBtsQALAfz9JI3J5FJBn + LIwWEYBnpRI5OiZKJb8KAA01W8ybkFMYBD8hssUBy0Y29JZjSPjdOoRtrBbV6h9X2HFtDpvCOgap + ibtka4gPIDGat8lIJwckLHKhqCQI42RRJKHE78hpzJlKhtxjLjVRFMmsV1cASEVsKqKkkFglEOkl + S6Qoq5TIUqQ3MJKgQF8pyeQ0KmpLSU6vGI5GkR85UjQRB0/xgkmOUnFxj8gUKEuTtGzqoXm0Wtsl + ldc0AhsDm8qR3Jo6sAXEL9eNWVNOLzWYpWmMY//lnlj49UMJxwqg/eU4kDNgF7iiMexebEGLGM+M + IIuAFiKCQJjB+mbosU/KolxqDMFvcV1MYGDwCRN8vXuwgPH0NoNnYBme95U0TGqhUpvkUobKQryZ + BaViQLXKCYtg+rnMeGitXgKoZyrTpkm7Y0uCWqttnulathOZ1fNan+rcxney/cRe8FXa0RNYJxS6 + FFA4Ro1FKuT5xxlOZOMcqdLri+hJzFPMqHRdH6KBbBuBMKxj0RqKbLY1LSvn42pTa6+pt7M4XTPM + MQ+sgPPa/liNCjGFvRrbJf0U6LBoJx51o2UXN1VO2zYYp2Nr2pu27zhOZ5i9aUxXszkl197a+3MC + P5xG5Y5Uq7AAQxfJk95sbYX+Y+hCcLNpaFri/rtkIohTmFvAdnhkHKSFyArhoo9x3fNt4EW59x4A + Rrq1Z3xPzfjsFWaOmHOZpSZmg1jJjAQTUe10I5NYPJljUpUlp5+HiwhW767cPXevIorAM07V4cHw + xmuf42lrqUdaqASEUU1TueG2qGrO50d239amuqA92bRicrOF+AgZAjevubmmLnVa/9qSJJwhp5VO + bTkF6dnU5mpuo+psTw2LgGxGw8tpx8Jv5J6aFzd6ZVTTw8rMXleO8Rr+UdJsQvAiGQ1Y+7REhl1n + NJlPVW69ZU99GOkZ6LNsv34HUgEgAENvmbiN+iCFp1Z9k9M8f2Lkkrm6uLtQIyVQTdqEvJE/8c54 + wTgDTFy5JW+OXvZ5WqZV4vb63HsPROW33Aw1IqyJ0yd3BuqtOP2eqLor7PuLAJMobr0IgGzYH/4/ + XyjYMmN/n8P/UgRgP5VaEVviUbNLNF0t/qG6bNJAtQDh6sM3eOmAWOebv3F46fcM1vX+3DomMYWj + YX1/g93CZf9fcm1hK9Bg/7qj3ULW2dvGSwL/gXprJ4BpURvy13lBwl6IpsGtKP6RyEGPutRzB9Rl + n9fVfTawqyBRu7DMErStlzi6grlHdD2iw+fZIbonRlaHak3uYt7aiK8ai9f+6qDRR0Jws3S+DkrB + Os/fyW67Y4sCWD2y95smmhhvUuGsvKKQxtkNboOeeElxV+iJod4i/MUiUnz95dVLh6Vddk6nYN1+ + 3bjtQ9hu0a8eW/Tjo+fbN+6XhKnVjUDTpG8XUFfvKtwOhQeDwaF0TI7nscozOR6yQ1RHIZbN12AW + fHyJ7yFt77i9mr8JOa42/rxAgIwn4Kn6DS71OxfGle4Vhnn9xdHFkvCFZ939y1P9y1PbeHmqHl/b + fY3qQSH+zb13dXuC/lu/i3X7YZjp/FXeyqpy9tTa4J1m39zLW1vGtGWA3P99MBfbtvStwdv+aElK + 698b698bM0//3hghHSzxRRJevVkKusyfE8s9BX0+SgT+6FdGAPJ+01zWYWDolp68NshrF11VzmoI + vj9Trab+CVlq/+JZfwX6ta9ArVTcX3o+X2TaMnP9pWd/6fmEl57VDvloF55UhBd/2yvPl37b+RKv + Eds2v5fEo2IAMAGg0y4S9TDyUv5psy6U9g6knkhsWr+nk78gA9q0kgP8Q13yl2MsF9ok58nANl4w + CPX3EMF/l6x23dB6r1DZ+0U3DPIvAvrmTwE+7IKh0sW5angWCL41Nr5dLH8nFI4rFRYBbF2YruQu + M0rYtQgggV3K32prnF5vgjn4PBDqtHbdDgzBR973CWIsc4/Ku+hI+Vjgtsxsd+Yk5XM3blI+XwPM + l8/NJvvvDe43+boF45fPw7B+V+/HwPzls9Vf0MDHPbmt5sAE8ZYdtnUjNLLR49ZzDtjAaSgCXD5b + vzGrEn07kLPHlos5XQQsZqv6X2Oc+1c0Llgzj7RetDVGwZ3XLrr1Zs03k4rbuPplYkQCjVGc+0fs + tjlfV7PameYbAf1Y3ERpc39+ov1+T46Cz2PzFGnRtrmKFSGOixzWYBBb/RqrDA2vts5ME2WFs43d + h13chzrcxhK+/JrlK3GJLh7RvOn4KtclPWnpSUtPWsql35MWmM7HJixPdaliBPYMqWdILXPQM6Se + IfUMqWdI22BIz+HupYVA/R9QSwMEFAAAAAgAMDB4U4E6u6eLBgAA+BMAAGgAAABhemV4dF9maXJl + d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3Jl + c291cmNlX25hdmlnYXRpb25fbGlua3Nfb3BlcmF0aW9ucy5wea1Y7WvbOBj/nr9CZB/sDFfJRgd3 + gRyUXteN67rR6x2MUIxqK4lWx/JJcrds5P72e/RiWY6d7gYLjNp63t9+j7xnKOM5K9eLWq1Ofhk9 + Qyc/7QfKznm1E2y9USjOJugdywSXfKXgXFRcEMV4idFZUSDDJJGgkopHmmOQvWIZLSXNUV3mVCC1 + oejd29vmGKM/KfUv6otCrDQ8leCfaKaQ4FyhFReosDxAh7ettWlcyyla05KCG2Dkfhe4F99M0Fmt + +A2VyjJeWkYujOiGlGsq0ZbsUEZqozvjQmiz93RDHhmYJWWOPjMI7Z6igoMetjL+ZVod06F64/jn + pn0l+BapXQVVRWwLeVbo9uOHi/T8zcX5H2+vL0fu8DMRJfDIkZUgX2tBMcRBMf2S0UonSjYKzgtG + SwU52cAflpksXgjBRYLeKFVBoirgpu4IXnktMnrxhUklDw6vuXrNoabueEuqlOrHnhcVq2jBStr4 + 8MG9N8aOCmAlSCmNjBO1Pv5TQz27Doc6tuutOhb/2c074+9r00IuYxg35C0UtZCISJTax9EIyt3J + +nyE4PcMVTtwUc1RziS5L+iiLqGB8hOrKKnLteB15Q+kkRqo6Fm5S9A5KQqtJEG/swwiM13KsgS9 + N96TIkG3u4r+TcTI6LlFi+Ygjm6jiTk8L6Q+A1IjtWz0LpeHOV8ezeQd2LJ+LKWCuoKDd3fuz2iU + FUTKtgVgRNamh65Y+SDfV9RigYz5vR7eiU3WeDz+rgTi/hHbID/yGskNr4sclVzDglQEehYGDeYP + Bs+6kjM9rsUOo7fAQEmeoF0rmAmq+Ynre6ck0xqg+tpKoBaaxCKNVqDHnihFso09h5YgpT4R7L5W + 1Pk4Z49EuK6ZAwAyYFPcHlgHQVr3hUU1FoSJTINgq0bpwjVq/g3auKTqMxcP+PHl7OUsnb1KZy+w + 60wjWBFBtmBJRzdvotQxaPwFwAR4MjWWuMPPyxVbA7/5WzuH+MpLWYUdGSAxUrCvVECgwGwK7CJt + aR2RnD4lFFJx0yc2rW4MF+0U6tOcrlCaspKpNI0lLVaJ8zNxASWBI0lHv2tE/dOCOLWCYME+HFC9 + IDC0Sg6YAv3AFlo7tGWc07bMQxtMAagad5gT/ybcwKSmTdKSbAEdAHZ0p8wRTKbnfGRC1aRIXas8 + xSrre+B6iuP58wdYJ2vZUmHwDTVIYUOKMcYTdPIbGrs64SNjfgWBAqku1NgrgWJfUrgqEJMG3XxN + yKj00kADcdPQxHnvJi9os4FUzdHtRuvZUq1Yr2uvPBi7dvQGVYR5caaGct235bhQM7wHxoaVDFgL + ytU30mSjq7sj0lH5QHdgDSDR7QTofA1ZKKulslsJVAu0qsvMZF4jpL/4VBrJcmPXAq7OmF283oCg + qhbl/NhyaHsg0XZcTeBVBwS+xI3GSaDS9tn/A8TvN1+gmDBAZq/54LKAe1ehsGv9c2Ygys4LrngV + R3ASJeial3TSTonby8sfGJI7b8PcqFK4W4Glb/5U/05nL+ZPXedOZ6fzY3e109mv86HLnTew7zuA + 6yqHJRmH8XoiRP1tP2krRyqWPlIhdSMt0FjX6mT26mT2os0eyXS6NZVUVeF8n36SvByPAqSBFQVt + XEPH/XVz5c9rURhoBnjV6IG3VBHwjiwjoER3bfLZuoTaermKqE1qPx9SCKPeQtpkL7VRAweXGg2u + YZai+eFmwGAoHg/gxjgZxu4IwogmSdeQg4Jr29RPWRoCDTA1DP6Dtiw0PGUjAA9Q3VkWxzTKTDAz + NG/zo1qDJYhDkZTl2swT5L7d/VALuG2OXWG1VfiXwDIbrPdkuL8M5lIFXevJcHUSu7Ql6E7Zt83V + vSQflVpGMA4nbhygORe9PBmJeBxMDSQmeGvyMOz4Bm69odf2/Yfd7oktozMzo4MuW27w2bBod81D + 31N3AT2s1ZoqW6TDbCV9R1pcab4M02ZZHKpN/bejqMtYNB844BMl28VrUkia+EvOJHDSq+uZwBvY + Bv6tDYytvBiGbwhVy9T8n4D9WEHLl7PZ3bwzMP4TOQ74F0NKEq/ak5MWihf+adLRb7Za/zs+PqrL + Tsai+1Ec1C641OY+08FhHH13l8Fm6GV00kmivod0wzAXCXMn6Il2rvW52TphqxnBkMPQOitCD4PZ + EnMUTUO8kdNvXUDbTzt7AOi9vbCfVoI/Mj1+U//fTtjB+bSL7iDfh/v91MKsNe7weT89ktZo39ts + /wFQSwMEFAAAAAgAMDB4U1j9Qj83DAAAJlUAAGEAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z + ZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3JvdXRlX2ZpbHRlcl9ydWxl + c19vcGVyYXRpb25zLnB57Rxrb9s48nt+BeF+sL2QFbfoAncGdECQbbvF9RHksgcsjECgZdrRRpZ0 + IpXWLbK/fWdIiqJE2XnU6TVZC2htkfMkh/MgGT8jUTaP02VQisXoHwfPyGhnDxA7zvJ1ES8vBBlE + Q/I+joqMZwsB7UWeFVTEWeqToyQhEoiTgnFWXLG5D7jv4oilnM1Jmc5ZQcQFI+/fnlXNPvkPY+ZF + fBYkTiVMXmR/sEiQIssEWWQFSRQM9MPbSvGUos0ZWbKUgRjAZLa2xBucDslRKbJTxoUCfKMAs0Ki + XtB0yThZ0TWJaClpR1lRINsZu6BXMbCl6Zx8ikG1GSNJBnTihZQvQnIxqmqY+7sd9kWRrYhY5zCr + JF7BOAty9vvJq/D411fH/3774c2BbvxEixRg+IHCoF/KgvmgB/PZ54jlOFC8InCcxCwVMCYX8BFH + chRfFUVWeORXIXIYqBygmW6C16wsIvbqc8wFbzV+yMTrDOZUN69oHjL86kiR06WlwlvBVid0yeYu + XJyzJE5ZBXmi3yuhNiL4oqAplzgaVenyvxLmvamYSyNLEku6d6cfT6CFgUIfshPV5xH95T0TF1lD + 7tVyJTYN9dHpezk0r6W1dmNp7j4tVmFLEkDXbPW8+n7VtQLTSzihnITq68EBGGXDNiYHBJ5nJF8D + BTEh85jTWcKCMgUzn48UIa9Ml0VW5qaBS6wOuztK1x45pkmCRDzySxzBuMq1FEceTmmhOj7KIaCJ + R87WOfsvhWH8LYWWA0n4jARV+6B/1h/KxuOEYxt0VcjTitF02jaB6caJPQeWSrApF8AWJD4/1x8H + B1FCOSenWSnY6zgBcU/LhPGPOVO+iw+yGTqboRq2Xq+3GZRk5quv1Po9Kwm/yMpkTtIM/RcXFBYX + eARwFOAhFPN5jH4lWfvkLQAwOvfIukaMCobwVC9QTSRCCmA7yMUiCyamXCISQP9EhaDRhWoHq6Ap + thTxDHTQMk7iK1pow5mAp44BTGSqQQkI2Ggayv3GlppE2oivyAicqorMn5Y5p0x8yopL/+rF+MU4 + HP8cjp/72jglYk4LugJOqN2k0hJ1wEABnh38qJxV7jfgs3QRLwFefpZaoGxhsBTBBg50xTSJv7AC + FAVgObNa07qvgTJn25DsXr8yEDWseiUG9ULE1jlbkDCM01iE4YCzZOFpOT2tkGcJ4jXoawvEBxH9 + UCECB/Wl1WsQAaAm0gKy6AOYza3NSwqHvOQXSxnQjQkmVQLUQQPPM2+FjgyhtJgwpStwCeCE0Ggm + BJZlDYnLK1zI9bUVDtbetv6ffrqE6LfkdS8seNlrDWTVNfB9f0hG/wLPnjLTG8n5U2TAH+eDPrT0 + PQk0rJG1m5pi87lBlgEvhNAHJL6aVnxejp9PtkXbl+OXk02h9OX4n5Ou2GsYXLsC+GU+B9cwsBUx + naDO1+vh0GDRPA6vWMFxMQWkh0t2NP55NH7eq0EijGfYS/M80bIf/sGzVJu+GllYmDAfJayV307f + mfaySKRBKuuzTcdfMUFBUDrtA1D/vB7geJlCRDQkciouQpXohaBRuYIR5M4o9yuTe4MW9wEMpT9p + Lw0fGA16HbbZ87ottg8a9Ydei1EdELayaRs2MnGNvZsFGPtW2tViQJr1wuikxcsZj4pYRtS3800U + 7WXv2yhhPO95ZFu3y/e6c/q1g9YziVzhnwcLt3OCh922Jb00WFHBTTcEi2Id1h1oGte1NTUTgY1Y + 0z4shZFeCmCNgTNOEmPQs1YMDIz1Vo1Dt+AXEOdtqdX7ncV20Kb9I7k+O0VW0CCzBEFx5RdXUh1y + 23OlVqyap/aAea4stVup8vGw0ElZm3JoMvaiTAdFlceBWIyugtc04cwzPn1ox5WKnMPCv4Ak0LzV + ukFCbEAgcRIlD2XFpjI0Mn0xHnsEHB/+9/J80lg9ppQZWJhBFznPMDHdXu2TA/Nt2KBf0BiUceqt + wUZaapkEzYpi2FAWglZTiYKJskixfeAMmopuMigoIpu8NJqndNQT0j+0PQA//Np0MdeHDVcM/Y5r + vj6Emv4qxgVxaGp0/4NKHA8tB4vITXd7bXfLhBxAtLu87l87UcRkLjMGtafW7rGnLaY2bSUhkI3+ + IhXkcmOC5yyKFzGk8iiGquaoEp0o0f3acnQC3DEEE3IGxPAb5ttIuAKyCwJJQxYFnSRspStW7THs + YNSQtcXGRe9iUk1AB3HocojW4A1il2wNtgnVmS5I5SojRyQquVA1MpAtyKJMI1mYYLFmNotyLKrm + kqeq/YyvcBkAV0y6RZyWMtEKRXbJUsnKaiWyFes2oCQo1OWU5NIiqlnm9IohNSpsHSsueocBxqQo + mSy+6k0Gj0j3K1vTrAL1UD1a+5Vqj0LXRwgMZSLHqt30gS7AfrluzYkcLCPBLMsSpP2nuxXjN3db + HC1iKIc0KPgrMIMrmkDkZAtaJrgZBh4MpBAxTPkMfAvDEfukNOJSYlhHVhGPzhMUPmWiWI+OFkBP + hzjc3MtxI7OqL6UUyq3KItHU6GBZZm0qG1BQnLAYpr+Q3ha11asI5cykyzYuf2hxUMu+a2Q2eYCJ + jCi8gVNvSPlOpJnYvqMO33oCm9WQboUSAq3Gqojkxs4UJ7K1QVbL9U21VVJk6Ljpukmimee2DaHf + zIMbGWwb1kDWg4+rTa29ttzO4nTVMPtXsAJqNTA211TBphCrFarpp1CbRXfV1FRaorjeNuiKYy5i + 238GblBzkSr/GNSRzQGCqQ0SuprNKfnsrb0vE/hwgKrI1+iwMplN5asc6k4oHFyG4wtzYAANJOYA + SybCJIOJh6QTN8pDUDgvhZsWDZvT0pVVqbG/Q2aFz76WfXy1rL1+zc48lz5wYsLPSvo7mMk6jg6M + 2/KkB8uUDw6+9hcx+IaRjM2jq5hiSp1kal+lf+11G0nQ2eqRjiIJ7LAhqQznHaKaY42BjdsJqhu6 + XVlntWEClI8JSeh6TdeTNbkGzdcOL+OQDGqZupwSFp6BXYW6QPWWqCKL6d6MRpfBBs/Rcl6NUdw6 + KoOGHJbf9zY5Ka81PoqbXdU8nVoNhuCxl2g9fQ7gt86P6iQLEq43TOwrtcdWqVV5f2tivXum9Tec + mbXtp53pT26d6ndm+nfMyzda9f4gxDiCGw9CwLvtDz+ecMLYMeX7w4/Hd/iBSciTP/l47Ocd1h2G + ubVlYhoH/VakAr/vVvvfcn5iS9Cq9jWiDSH77ADw6HP1UF1YCmGyVLz98e6GNOhIYHsxG5SbU/aH + KgX2WZh+bpGF2bt8zUHr2V3g7900zWK0q0stm6x/n+HtM7x9hreDDO9YLeoRer6teV5r9duvRvYt + fHaRSc6y+TqsGOtQcSu9bcQOAbB7sD2KOXnOcJtU0+qwROprA9yUFeNxyW2zYrT+DuaPNlnGG0LP + H3vGvEnPIADtxk3lHiC73sz7+YPzfvjM/uZ04NHn++rEoa3nPtl3rmbdIkvv9XrHciA5bh6rkeRm + 41//+Zt1NrA/D3CJ3+lwoEP8lolMyEmds/ASiwM8EMjUX/qpv80xc9UQpPYs8gzH3Cvaqr3D/VtP + BfYX1fYX1XZxUa1lYLu9s3Y/I39yt9xuESH+1lffbt5ZNMg/3iW4bW4+2JqkOKSe3H26Xef2+Nzv + jp6b43fgNtL8/cbdI964sx3Sg93lk0FpRPk6jUYmaO8v9u0v9t39Yl87Aj6dbYQk5iKcrUPb9Xy/ + TYT71fbVr1tsTNzegVKncrabRb685wcW5/zuBNb4f597ft/tah5WOkL9ug8Y2iVr1D3dBU49dd9U + 6sgfuPHNL9vcs9KphXFqnh/jvl+noT/dM+dbnRajV4PiG1YSJpjypGKQss/g8+P0MpAD3Awd287P + 8LnnGVon6m7Ot/CRew+CGM3cjHvTsXn1WKemXVHg1ifn1XO7RLx6vltCXjN88MTcsPo/JNXVc71t + nu98Or7NpjoOyavnfoflm7Af4tC8enZ66RAfNzWt58As1h0P2M6V0Nm0ptv0raBDQSMRomvY/Q5D + HdG69xps4tJrZYuQJWzV/B2luX9Fk5K1HWbnxkSLCiYZdtONOxG+mVXMWNQfG2LW06LibNgg2vbA + VE/rxnjWsuiHOshX0tz9MF+P+x1vv+Lz0Of5UqNdn+lbFuIMkXNobZLTZqFemYbXWGit7eGt8frH + rUk7CtG/AFBLAwQUAAAACAAwMHhT6TjDzOUMAACsaQAAXAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv + cmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fcm91dGVfZmlsdGVy + c19vcGVyYXRpb25zLnB57Vx7b9s4Ev8/n4JwD7C9kJW06AJ3BnxAkG27xfaFXHrAIggEWqYdbWRJ + J1Jp3CL72W+GpChSkp2XkzapBLSx+ZgXhzO/IZU8I2E6i5LFpBDz0T93npHR1h4gdpBmqzxanAoy + CIfkfRTmKU/nAtrzLM2piNLEJ/txTOQgTnLGWX7OZj7MfReFLOFsRopkxnIiThl5//aobPbJfxgz + X8SFIFEix2R5+hcLBcnTVJB5mpNYjYF++LZUPKVoM0YWLGEgBjCZrizxBodDsl+I9JBxoQa+UQPT + XE49pcmCcbKkKxLSQtIO0zxHtlN2Ss8jYEuTGfkSgWpTRuIU6ERzKV+I5CJU1TD3t2v2eZ4uiVhl + sKokWoKdBTn689Or4OD3Vwd/vP3wZkc3fqF5AmP4jppBvxY580EP5rOLkGVoKF4SOIgjlgiwySn8 + iEJpxVd5nuYe+V2IDAyVwWimm+BrWuQhe3URccFrjR9S8TqFNdXNS5oFDD82pMjowlLhrWDLT3TB + Zs1xUcbiKGHlyE/6eynU2gm+yGnC5Rw9VenyvwLW3VWsSSONY0u6d4cfP0ELA4U+pJ9Un0f0h/dM + nKaO3MvFUqwz9f7he2ma19Jb22dp7j7Nl0FNEpiu2ep19f2yawmuF3NCOQnUx50dcErHN8Y7BJ5n + JFsBBTEms4jTacwmRQJuPhspQl6RLPK0yEwDl7Na/G4/WXnkgMYxEvHIb1EIdpV7KQo9XNJcdXyU + JqCxR45WGfsvBTN+TqBlRxI+IpOyfdA/6g9l40HMsQ26ysnHJaPj47oLHK9d2BNgqQQ75gLYgsQn + J/rHzk4YU87JYVoI9jqKQVz+MWMqbvFBOsVAM1Qm6/V67cNIaj76Sp0/04Lw07SIZyRJMW5xQWFT + QSSAAAGRQTGdRRhP4pVP3sIARmceWVUTw5zheKo3piYSIgXwGeRikQXXUqEQCWBcokLQ8FS1gzfQ + BFvyaAryaxnH0TnNtcOMIUJHMEykqkEJCLPRJVTYjSw1ifQNX5ERuEQlmb8tN06Y+JLmZ/75i70X + e8Her8Hec187pZyY0ZwugRNqNy61RB0wQUBEh/gpV5P7zvg0mUcLGC9/FlqgdG5mKYLOHOiKaBx9 + ZTkoCoPlqmpNqz5nyoxtmmT3+qVzKLPqHTipNiC2zticBEGURCIIBpzFc0/L6WmFPEsQz6GvvQ8f + nOgHaiJwUB9qvWYiDKiI1AZZ9GGYza3OSwqHvOQHSxnQjQkmVYKpA2eeZ77lOiME0mOChC4hFEDw + QacZE9iO1UjcWsFc7q1N43755Qyy2oJXvbCRZa9lqLJr4Pv+kIz+DRE7YaY3lOujyECczQZ9aOl7 + ctCwmqzDzzE2n5jJMpEFkNKAxDfTis/LvefjTVn05d7L8boU+XLvX+O2nGoYXDYF8ItsBlt/YCti + OkGdb5fDoZlFsyg4h6iFm2VCerglR3u/jvae96ohIeYp7KVZFmvZd//iaaJdW1kWNh6sRwF74fPh + O9Ne5LF0OOVdtmv4SyYoCEqP+zCof1IZOFokkOkMiYyK00ABuAA0KpZgQd6wcr90qTfoUR/AUfrj + uuv7wGjQa/G9ntfukX3QqD/0aoyqYL+RTd1xkUnTmVtZ8GLKwzyS2e3tbB0Heyv69pQgmvU8sqm7 + yfeydcl00NTWR67wz4PN1roow3Z/kJGTYW403RDA81VQdeByXlYe4CbltbOO++C+I+2+4EGThp3k + jEHP8nIwjPWttEO74KeQe22p1fcbi92Ydtzfl3uqVWQ1GmSWQ1Bc+aEpqU6D9bVSu0ytU91gXlOW + KhSU2DjINUCqUw4Mes6LZJCXmArEYnQ5eU1jzjwTh4d2rC/JNVj4pwDIzLdKNwCnZgiAGVHwQFZP + CjWR4xd7ex6BYIX/vTwZO7vHlBUDa+akjZxnmJhur4qjE/Np6NDPaQTKNGqfwVpaaptMXHQ/dJSF + ROMqkTNR5Am2DxpGUxlJBnJFZF1kRfeUwXVM+rt2BOC739wQc7nrhE/ob4TTy12or88j3BC7pl72 + Pygwt2sFRZzshsjL/mUjuhvEMGVQ62kNfnS4YGq9WvIHlPebVIDLQp9nLIzmEUBkKQ5R4vjVimsw + 2aLWmBwBAfyE2BWJlYNscC1pSIDdSsJWtGRVt0sLI0fWGpvmdIfJGVuBG0Bxousw6dBkn4QFF6o0 + BDY5mRdJKHE51irmjCTDmmImZVClj9mWTQbAFTGniJJC4pBApGcskaysViJbsWwBSoJCOUpJJhdO + laqUcHrOkBrFuqfBRRfWYKO8YLL2qGprj8hIJ1uTtBzqoXq02sJlaa7LAxwMVRLHYtX0gS7AfrGq + rZU0lpFgmqYx0v67eQLhu4cMDS2gjC/pQGiAlTunMSQpNqdFjGdAECxAChGBC0xhGzO02BelEZcS + g7tbNSzGKVD4kIl8NdqfAz2dTfBMK8Pzu7K8klKoCCZrJFOigqeZLaR8QI3ihEWw/LkMbKitdnyU + M5XR0UTXocVB7c42y6zbqGMZvLkzpzqH8RtBfWxv8SpT6gV0iwXdCggbvcYqGOR5xjEuZO1cqJLr + TqVHnKcYP+nKJeFCyroj9F3I6YDF+lgzsjI+7ja19+pyNzZnUw1zbAM74MRJgxVV8CmcVcuK9Eug + 3aK9qHCVllOaAXLSlk6aE+shb9LMLY1JsGqTmC6nM0ouvJX3dQw/GoPK3ON0WHhgXeEmrdg6Cu3G + 0HRgXjPQjMQsu2AiiFNYU4BuePQbgC5ZIZrgYuhavA2bKLPeAJ/g01VxD1PF2dvJnA9zGZLGJhss + ZfgB61dpbWCiiCcDSqpC4uRbfx7BVh3JVDk6jyiCyThVpwD9S699YSetrR5pKQ/AdxxJZXZtEdUc + rg/sua1DdUN7ZGnF2SZf+IgPgmYQawYWl+vE/doSGRokJ5VMbYEES66JXX81B1UHdIosoq8pDc8m + a3Z7LeA4VtxolYEjhxWGvXWBxavZR3Gzsf7jqlJAzYcrTthFRpPZREXRK7Lm7QqZnj6F9q2biwrf + ANZ5w8TPWssoJmoNxuSV/ImXtnOWMwCxM+wCUblmMl1kAO1hH0L4KjXgdZ4ltYctmkoIbi2yd0t0 + fcXNje1HdbA9vjbabgXbN4TGrZ7dHdObQHDlMT1Euu5o/gcDdS3L9PMczZcsAMWpMIooEQ+Cm/Vh + U4p/qCmbJFAjgLn68ASvBBC8PPn7gMd+C2Ddts+s0w3TOOhbGQ3yQ7Nyv8uNgs29VrnrifYI2Wcn + ikeB4QP16kwAi6Fy78O/peCMs/ehGb0Zmd8H2u8AFrkWwLIP2VyD9ewuCM9NBGYx2tbbFOucuQNv + HXj7ccDbA4OoA7URRxipNkKp2o61vzaA5z2BtWk6WwUlYx3Wr6W3PbFFAOwerE00DooYbhLmuLxW + kGraA67Cm3ixcF28iU7fwvzRwlB8I+X5Y8ei6/ScTEC7PVe5LePW9Xyf3yvf+8fLV2fsR4Gi1Rl+ + XZenDqGrFwquwL+9Xu9A2objSasyDifUOZHGWEHtk/XasfhTP1tfs4Rj8qlCALxAeIwn3Kn65Sn1 + aw/Gpo4Y1cY1r6tslMzmeZcD7u61p+61p2289mQ513bffrq5cz+5d6WuiNc/9ctTVx+ImckP+hrV + mmA9WZf7GwSe3HtY20S7pb/c/L2uJuptmesA3+606Sm+/yUzwojyVRKOTKbsXgbrXga7+ctg9RT0 + uIphnTYFXfCHq4A3F71HIMtHCb/v99oIQN5nXd2i+ohU6U/2jtg1SteWYlWaq87wFhVptdAPWJB2 + r5R1N57f6cbTirXdHecPhjpblqu74+zuOO/3jtO51qyy4b3dalIRnv6095qP/Urz0V0XtqW7R1ET + xYBVgukqcLPi3cuj2xUx5V8aa0Vx70DUQ4la3Rs8+dsvFP84oYXbubq2+yEu6x4M5+M1hlB//xAW + 9ow5lxrN24vKoHe6x5B//s83f/fvFtcYlSCNC43vXzy0ut3TLSOuVQBg5MhyBnsI46bMdYOEXYgA + IumZ/FW42on4JrCFzy0BV+vU7YAhfORloiBGs+YJ/LpKqHwsiN0eaa9dHJXP9Yqk8nmwYskw/A4V + TflcbjL/jSucTUvdUuiUz+0KnnWz76PwKZ+t/v4JPs3T6GoNzB7assG2roRGeJquG/JAh5yGIsD9 + ut1LwCrJtKNZm7AMJOk8YDFbun/4ceaf07hg9RjWendYo4L53m668rLQNyuK4EH99jOCjxqVxn0q + TtucK6olXZtiat58X9WZkubmFZq2+w2rNHzuu1KTGm27WrM8pGGiRulkcKJ7L1e6hudsMjNEaXFF + Cv1OBddV5dW6YuoHKZFsy9gFUle1dFVLV7V0VQu//l8YKJ8b1ihdydCVDC1r0JUMXcnQlQxdyXDn + kuFWBcId0P//AVBLAwQUAAAACAAwMHhTPPPDsroMAACfaAAAWwAAAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fcm91dGVfdGFi + bGVzX29wZXJhdGlvbnMucHntXHtv2zgS/z+fgnAPsL2QFbfoAncGfECQbbvF9hHk0gMWRiDQMm1r + I0s6kkrjFtnPfjOkRFEPOy8nTVIJaGPzMS8OZ35DKnlB/HgWRItxKueDf+69IIOdPUDsME7WPFgs + Jen5ffIx8Hks4rmEdp7EnMogjlxyEIZEDRKEM8H4OZu5MPdD4LNIsBlJoxnjRC4Z+fj+JG92yX8Y + M1/khSRBpMYkPP6L+ZLwOJZkHnMS6jHQD99WmqcSbcbIgkUMxAAm07UlXu+4Tw5SGR8zIfXAd3pg + zNXUJY0WTJAVXROfpoq2H3OObKdsSc8DYEujGfkagGpTRsIY6ARzJZ+P5AJU1TB3d2v2OY9XRK4T + WFUSrMDOkpz8efTGO/z9zeEf7z+928sav1IewRixp2fQbylnLujBXHbhswQNJXICh2HAIgk2WcKP + wFdWfMN5zB3yu5QJGCqB0Sxrgq9xyn325iIQUlQaP8XybQxrmjWvaOIx/FiTIqELS4X3kq2O6ILN + 6uOChIVBxPKRR9n3XKiNE1zJaSTUnGyq1uV/Kax7WbE6jTgMLek+HH8+ghYGCn2Kj3SfQ7IPH5lc + xiW5V4uV3GTqg+OPyjRvlbc2z8q4u5SvvIokMD1jm62r6+ZdK3C9UBAqiKc/7u2BU5Z8Y7RH4HlB + kjVQkCMyCwSdhmycRuDms4Em5KTRgsdpYhqEmtXgdwfR2iGHNAyRiEN+C3ywq9pLge/gknLd8VmZ + gIYOOVkn7L8UzPglgpY9RfiEjPP2Xvek21eNh6HANujKJ09yRpNJ1QUmGxf2FFhqwSZCAluQ+PQ0 + +7G354dUCHIcp5KdIGXxOWE6bIlePMU409cW63Q6jaNIbD66Wpk/45SIZZyGMxLFGLWEpLClIA5A + eIC4oFnOAowm4dol72EAozOHrIuJPmc4nmbbMiPiIwXwGORikQXH0oEQCWBUolJSf6nbwRdohC08 + mIL4mYyj4JzyzF1GEJ8DGCZj3aAFhNnoEDroBpaaRHmGq8lIXKCczN+WE0dMfo35mXv+avhq6A1/ + 9YYv3cwl1cSEcroCTqjdKNcSdcD0APEcoqdaS+GWxsfRPFjAePUzzQSK52aWJliaA10BDYNvjIOi + MFgtaqZp0VeaMmPbJtm9bu4b2qzZ/hsX2w9bZ2xOPC+IAul5PcHCuZPJ6WQKOZYgTol+5nz44ETX + 0xOBg/5Q6TUTYUBBpDLIog/DbG5VXko45KU+WMqAbkwypRJM7ZXmOeYbz/KBpzzGi+gKAgGEHnSa + EYHNWIzEneVJ3Frbhv3yyxmktIUoemEXq17LTnlXz3XdPhn8G8J1xEyvr5ZHk4Egm/S60NJ11KB+ + MTmLPRNsPjWTVRbzIJ8Bie+mFZ/Xw5ejbSn09fD1aFN+fD3816gpoRoGl3UB3DSZwc7v2YqYTlDn + +2W/b2bRJPDOGRe4V8akgztyMPx1MHzZKYb4mKSwlyZJmMm+/5eIo8yztWVh38F6pLAVvhx/MO0p + D5W/aeeyPcNdMUlBUDrpwqDuaWHgYBFBmjMkEiqXnkZvHmiUrsCComblbu5R79ChPoGjdEdVz3eB + Ua/T4Hodp9khu6BRt+9UGJlQv5VLxW2RRc2TG+mLdCp8Hqi89n62ib69DV17ihfMOg7Z1l3ne9m4 + XlnAzEyPXOGfAzutcUX6zc6goiYsOxemG4I3X3tFB67lZbH85XS8cdakC747yHwX3Gdcs5Oa0etY + Lg6Gsb7ldmgWfAl515Zaf7+x2LVpk+6B2lCNIuvRILMaguKqD3VJsxRYXSu9xfQ6VQ3m1GUp4kCO + ij2eQaMqZc/gZp5GPZ6jKRCL0dX4LQ0Fc0wQ7ttxPidXY+EuAYqZb4VuAEvNEAAyMhWeqps0YiKT + V8OhQyBS4X+vT0el3WMKip41c9xEzjFMTLdTBNGx+dQv0ec0AGVqVU9vIy29TcZlXN8vKQtZpqwE + ZzLlEbb3akbT6UhFcU1kU1hF91SRdUS6+3YEEPvfyyHmcr8UO6G/Fksv96GyPg9wQ+ybStn9pIHc + fhERcW4pPF52L2uB3WCFKYMaL5P/kQMFU+JV0j7Au9+U/ELV9yJhfjAPABsraYiSxi1WOwORDUqN + yAnMx0+IWZFWPsgG1YqGAtaNJGw9c1YVqzTwsSWtMKlNLnE4Y2tYf6hIstJLeTI5IH4qpK4GgQkn + 8zTyFRjHAsUciyRYSMyUBLreMfuxzgC4ItCUQZQq9OHJ+IxFipXVSlQr1ipASVKoQClJ1KLp6pQS + Qc8ZUqPSVjXnktXSYCGeMlVwFOW0Q1SIU61RnA91UD1a7N28Gs9qAhwMpZHA+tT0gS7AfrGuLJQy + lpFgGsch0v67fujgls8ValpA5Z7TgZgAUf6chpCd2JymIR77QJQAKWQADjCF/cvQYl+1RkJJDK5u + Fa4YoEDhYyb5enAwB3pZGsFjrASP7PKaSkmhQ5cqjExdCn5mto/2AT1KEBbA8nMV0VDbzOtRzliF + RRNW+xYHvTObLLNpk45U1BalOcXRi1uL5iN7excpMlvAcomQtQKuRq+xygR1hDHBhawcBRVy3ang + CHmMoZOuyyTKWLLqCN0y1iyhxOpYM7IwPu42vfeqctc2Z10Nc1IDO+C0lP8KquBTOKuSDulXL3OL + 5lKirLSaUo+O46ZMUp9YiXjjWlapTYE1G4d0NZ1RcuGsnW8j+FEblGedUocFAzYVa8qGjaPQagwN + B8Y1A81ITK8LJr0whhUFxIZnvR6okqSyjin6ZXs3QRJt1BvAEnzayu0BKjd7J5nTYKGi0cgkgpWK + PGD6IqP1TABxVCyJdTQcf+/OA9ilA5UlB+cBRQAZxrrs7146zas6bmx1SENJAI5TklQl1gZRzVF6 + z57bODRraA4qjdjapAoXoYFXj1/1mFLmOi5/bQgLNZLjQqamKIJl1tiuueqDigM5TRaB15T6Z+MN + W70SbUpW3GqVXkkOKwI7m6KKU7GP5mYj/KdUmYCSD1aQsIuERrOxjp9XZMvbFS+d7MjZLW4pClgD + EOcdkz9j+aI5aPOPyBv1E69m54wzwK0zI6SoEs7nPGw1lGPrYhWdW6LmK65hLD+pYujRtUF0I4a+ + IeJtctz2yN1s8yuP3CGMtcfsjwmsNazRz3PMnrMAdKYDKKI/PNStl3x1Kf6hp2yTQI8A5vrDMzze + R1jy7M/2n/qJvnVrPrMOLExjr1tkM8gN9Wr8LpcDNvNKNZ5NtEeoPjtJPAFo7un3XzxYCZ11H/xV + A3vbmQFbMfY9wPYWSV0LSdmnZGV7dewuCMV1qGUx2tUrEJt8t0VpLUp7JCjtgdHSod6FA4xSWzFT + ZbvaX2sI855Q2TSerb2ccRbRr6W3PbFBAOzu2VnFRgj9bewn+TWAUswecBWUxIuA60JJdPMG5k8W + YeKLIy+fOszcpOd4DNoNy8rtFpJuZvvyPtnePxK+Oj0/AXysj9yrmjw7cFzc9W+Htp1O51C/MB9z + om0hCLVPjTEqUPvou3Jw/axPv4vlGpGjIpuLFHEuHkjH+veWKiYs2c+8LFKVwCZ+h5Pn9jWj9jWj + XbxmVPjWbl82urFrP7s3k7aH4J/6TaWrT6vM5Ad8Z6mIzGMrYdeGPbtXm3aISHOXuPmbUnVk2jC3 + BE7b459n90aVCvgDKtaRPzBpsH29qn296uavV1VTzFOqVrOkKOlCPJIS9QRE+ayA9b3e3wB++9JY + jaIp2qKzoczUhimzu0WFWazvA1aY7atb7YXjj7hwtMJre8X4mDBmw1q1V4ztFeMDXjEWefDerhip + 9Jc/7SXjU79ffGqXd02p7gkUQCGglLtXPrcrUPI/wdUE1j6AXMcKmpYv09TvilD8o30FNBf6Cu1R + XJw9GJTHqwep/ywgLOIZK11E1G4cCnPe6e5B/VE81/w1vJtfPRRy1C4hfnh90Ohyz7dSuBbGxxCR + cAYbCMOjymi9iF1IDwLmmfqdscoJ9zZIhc8tYVXj1N1AHnzU7Z8kRrP6kfqmYid/LCCNIfXa1U7+ + XK/qyZ8Hq34Mwx9QpeTP5TZj37hq2bawDcVL/tyuiNk0+z6KmfzZ6e9u4FM/Ty7WwOyYHRts50pk + sC2jWw5woAOnvvRwv+70Cq/IKM0I1aaLUcOL5x4L2ar8tw9n7jkNU1YNWI03fxUqmNrtpiuv+lyz + oIgT9O8EI8yoUKldhuK07YmhWNGN+aTizPdVcGlpbl50ZXa/YeGFz30XX0qjXRdglofUTFQrhwwk + LF+s5a7hlPaYGaK1KOXLH1MyXVUheYDmN1VJj6L2sU1jVz5tOdKWI2058tOXIxi/7rskaSuEtkJo + WIO2QmgrhLZCaCuEu1YIpRR2kyrh9iXA/wFQSwMEFAAAAAgAMDB4U9tHBXsGDAAAMFMAAFUAAABh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJh + dGlvbnMvX3JvdXRlc19vcGVyYXRpb25zLnB57Rxrb9s48nt+BeF+sL2QFXfRBe4M+IAg23aL6yPI + ZQ9YGIFAy7SjjSzpSCqtW2R/+82QFEW9nKR1unVrAa0tcp7kcB4k4yckTBdRsprmcjn6x9ETMtrZ + A8RO02zDo9WVJINwSN5EIU9FupTQzrOUUxmliU9O4pgoIEE4E4zfsIUPuK+jkCWCLUieLBgn8oqR + N68uimaf/Icx+yI/SBIlCibj6Z8slISnqSTLlJNYw0A/vK01TyXagpEVSxiIAUzmG0e8wfmQnOQy + PWdCasCXGjDlCvWKJismyJpuSEhzRTtMOUe2c3ZFbyJgS5MFeR+BanNG4hToREslX4jkIlTVMvd3 + O+xLnq6J3GQwqyRawzhLcvHH2fPg9Lfnp/9+9fblkWl8T3kCMOJIY9CPOWc+6MF89iFkGQ6UKAic + xhFLJIzJFXxEoRrF55yn3CO/SZnBQGUAzUwTvKY5D9nzD5GQotb4NpUvUphT07ymWcDwa0OKjK4c + FV5Jtj6jK7ZowkUZi6OEFZBn5r0QqhPBl5wmQuEYVK3L/3KY96piTRppHDvSvT5/dwYtDBR6m57p + Po+YL2+YvEorcq9Xa9k11Cfnb9TQvFDW2o5luPuUr4OaJIBu2Jp59f2iaw2mFwtCBQn016MjMMqK + bUyOCDxPSLYBCnJCFpGg85hN8wTMfDHShLw8WfE0z2yDUFgtdneSbDxySuMYiXjk1yiEcVVrKQo9 + nFKuO96pIaCxRy42GfsvhWH8PYGWI0X4gkyL9kH/oj9UjaexwDboKpBnBaPZrG4Cs86JvQSWWrCZ + kMAWJL68NB9HR2FMhSDnaS6ZeJcx7bHEIJ2jixnqwer1enUAktqvvlbhjzQn4irN4wVJUvRVQlJY + SLD6wSmAN9CMFhH6kHjjk1cAwOjCI5sSMeQM4alZjIZIiBTATpCLQxbMSbs/JIC+iEpJwyvdDhZA + E2zh0RwkNzJOohvKjZFMwCtHACZT3aAFBGw0A+1qI0dNouzB12QkTktB5i/HdBMm36f82r/5efzz + OBj/Eoyf+sYQFWJGOV0DJ9RuUmiJOmBQAC8OPlPNoPAr8GmyjFYArz5zI1C6tFiaYAUHuiIaRx8Z + B0UBWM2n0bTsq6As2DYkt9cvzEIPq1l103LRYeuCLUkQREkkg2AgWLz0jJyeUchzBPEq9I3d4YOI + fqARgYP+Uuu1iABQEqkBOfQBzOVW56WEQ17qi6MM6MYkUyoB6qCC59k3bqJAoCwmSOgalj84HDSa + CYElWELiogokLui7wbYA/PTTNUS6lSh7YXGrXmcgi66B7/tDMvoXePGE2d5QzZ8mA743G/Shpe8p + oGGJbFzSDJsvLbIKbgGEOSDxybbi82z8dLItsj4bP5t0hc1n439O2uKsZXDbFMDPswW4hoGriO0E + dT7dDocWi2ZRcMO4wMU0JT1csqPxL6Px014JEmLswl6aZbGR/fhPkSbG9PXIwsKE+chhrfx+/tq2 + 5zxWBqmtzzUdf80kBUHprA9A/ctygKNVAtHPksiovAp0UheARvkaRlA0RrlfmNxLtLi3YCj9SX1p + +MBo0GuxzZ7XbrF90Kg/9GqM0BQv0GC3cqnZNbJomHo3/btJV4huISfyuQh5pKLnq0UXTXfZ+y5K + EC16HtnW3eR72zr9xkGbmUSu8M+Dhds6wcN221JeGqyIC9sNwYJvgrIDTeO2tKZq0O/EmvVhKYzM + UgBrnDbGSWEMes6KgYFx3opxaBf8CuK8K7V+f7DYDbRZ/0Stz1aRNTTIrEBQXPWlKakJufW50itW + z1N9wLymLKVbKXLvgJsErE45sNk5z5MBL3I2EIvR9fQFjQXzrE8funGlINdg4V9BwmffSt0g+bUg + kDjJXASqOtMZGpn9PB57BBwf/vfsclJZPbZsGTiY0zZynmViu73SJ0/tt2GFPqcRKNOorQadtPQy + mVarh2FFWQhaVSU4kzlPsH3QGDQd3VRQ0ES6vDSap3LUE9I/dj2AOP5UdTG3xxVXDP0N13x7DPX7 + TYQL4tjW4/5bnTgelw4WcSve9lZ3Fu2qqX/bCB02XZkzKC6NSvueq9jis5Z5QAr6q1JQqJ0HkbEw + WkaQvys5dL1GzYuS3S/NxWS9LUMwIRdADL9hko2ECyC3ClA0VCXQSsJVumBVG8MWPq6kNSYN5E4O + W2i3U22hd802YJBQkpmKUy0tckLCXEhdBANhTpZ5EqpqBCs0uxuUYSW1UFx1wWcdRJMBcMVMW0ZJ + rrKrQKbXLFGsnFaiWrFYA0qSQuFNSaYsophkQW8YUqMVJQsuZgsBRoXnTFVc5S6CR5TPVa1JWoB6 + qB4tnUmxCWGKIgSG2lBgWW77QBdgv9rUpkUNlpVgnqYx0v6rudfiV7dTGlpEUAMZUHBSEHZuaAzh + ki1pHuNuF7gtkEJGMOlzcCgMR+y91kgoiWEdOZU7ekxQ+JxJvhmdLIGeiWu4e5fhTmVRVCoptC9V + laEtzMG27NrUNqChBGERTD9XLha1NasI5UyVn7Z+fuhw0Mu+bWS6PMBEhRFRwSl3nPxGeJm4vqOM + 2WYCqyWQaYW6Aa3GKYPUzs0MJ7K2A1bK9UUFVcxTdNx0UyVRTW7rhtCvJr+VtLUOayHLwcfVptde + Xe7G4myqYTeoYAWUamBALqmCTSFWLT7T94Exi/ZSqaq0Qml622lbHGsi1jzotBHTOlAc4HYwmNpp + TNfzBSUfvI33cQIfDaAi8lU6nPSlq2ZVQ90KhYPLcHxhDiyghcQcYMVkEKcw8ZBp4k54AEpkuWzm + QsPqtLSlUnrsH5BO4XMoYPevgHXXr916F8oHTmz4WSt/BzNZxtGBdVue8mCp9sHTT/1lBL5hpGLz + 6CaimEfHqd5M6d967UYybW31SEtlBHZYkVSF8xZR7bnFwMVtBTUN7a6stcSwAcrHhCRoes2mJ6ty + nVZfW7xMg+S0lKnNKWG1OXVLzyZQuQ+qyWK6N6fh9bTDc9ScV2UUt47KoCKH4/e9Lifl1cZHc3Or + mj0v0EDvfa/LembH31fnQ2U+BbnVSyYPRdm+FWVFiq+m0/vMvP2OkzBtK/UEfnLvDL41gX9gul2z + 28NRhl3gdx5lgNc6HF98x9lfy5Qfji/27/gCk4vv/uxi308snFsIC2f/wzYO+io+gbdvFuxfcu7h + 8q0V7AbRhVB9rtvfz3Q70LeLApgXHVq/vYscGsBdqxasK9Pebd5+SKPuSqPcPbfqUPXcLnDYzTzL + YbSreyVdNn1I0Q4p2iFF20GKdqoX9Qj93dZErbb63Vcr+xY+u0gF5+liExSMTVi4l94uYosA2D1o + xiaTnAy38Z8VhxRKMxfgrgQWjynum8Cinbcw39u8Fq/jPN335LZLz+kUtBtXldtZItzN8ekjcXz8 + 1PvuIL+fCbneyq8r9wNm4+Xdhs6EutfrnaqBErgpq0dK2F1084dh9Z32w+b6QzbXXXrlpE/IWZlE + iByzddxET/Vfuum/V7EzYrSxN2zaebvEP2/L/HA563A5axeXs861ue7ydtZDDPq7u8XV6b5/6Atd + d++7WeRv72pX3WVPG1lBA+W7uw22m1wZn8+7V9bMmVtwK2nzYXtrj7e3XHfzaPfPVKAZUbFJwpEN + uofLaIfLaA+/jFaPb3telseR+Hr30j6vYC5+VqGWcL0Gyc/VPFYrZ3UVjeJvsKiBwHL5x7h/9tXu + i2HVIfXPx4D9XLNKDeIWG+UUfVHZoX43xbc/mPKgqqMUoVF//J2X0FqN9/s9R73XCSi6Iyh1YaFg + Oqj25AcJ+wAeOkqup2pYq45+25kQPp95LtSKupszG3xUpS+J1ayZH3cdBRePcxKI7vvep7/Fc780 + uXi+WrpcMnzctNny+Rvy3eK53TapDz7e3WZALae8xfN5p71d2I9x6ls8O732hk8zayznwK7MHQ/Y + zpUwia6hW3WkoAOnoQzQL+yq5C+DVnvx75JExxSky4DFbF39BZ6Ff0PjnNV9YutOQY0K5gxu051b + A76dS0xA9F+sYepSo9LYN0G07bGnnMzOkFWz48c6ldbSPPxk2oz7A29d4vPYh9NKo10fUDsW0hii + xqmszTWrlXNhGl5ledV2Yysh+dsqClsKwf8DUEsDBBQAAAAIADAweFPU91wSrQwAAPZsAABpAAAA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVy + YXRpb25zL19zZWN1cml0eV9wYXJ0bmVyX3Byb3ZpZGVyc19vcGVyYXRpb25zLnB57Vxtb9s4Ev6e + X0G4H2wvZCVddIE7Az4gyLbd4voS5NIDFkYg0DLtaCNLOopK6xbZ334zJEVRb3bSOGncSsBubJIz + nBkOZ+YhVT8jfjwPouUkE4vRPw6ekdHOHmB2EidrHiwvBRn4Q/Iu8HmcxgsB7TyJORVBHLnkOAyJ + HJQSzlLGr9ncBdq3gc+ilM1JFs0ZJ+KSkXdvzvNml/yHMfNFfBYkiOSYhMd/MV8QHseCLGJOQjUG + +uHbSs0pRZszsmQRAzFgktnaEm9wNiTHmYjPWCrUwNdqYMwl6SWNliwlK7omPs0kbz/mHKedsUt6 + HcC0NJqTTwGoNmMkjIFPsJDy+cguQFXN5O5uzb7g8YqIdQKrSoIV2FmQ8z9PX3onf7w8+feb968P + dOMnyiMYkx4oCvol48wFPZjLPvssQUOlOYOTMGCRAJtcwp/Al1Z8yXnMHfKHEAkYKoHRTDfB1zjj + Pnv5OUhFWml8H4tXMaypbl7RxGP4sSZFQpeWCm8EW53SJZvXxwUJC4OI5SNP9fdcqFYCV3AapZJG + kypd/pfBupcVq/OIw9CS7u3Zh1NoYaDQ+/hU9TlEf3jHxGVcknu1XIk2Ux+fvZOmeSW9tZlKz+5S + vvIqkgC5nlavq+vmXStwvTAlNCWe+nhwAE5Z8o3xAYHnGUnWwEGMyTxI6SxkkywCN5+PFCMni5Y8 + zhLTkEqqBr87jtYOOaFhiEwc8nvgg13lXgp8B5eUq44P0gQ0dMj5OmH/pWDGjxG0HEjG52SStw/6 + 5/2hbDwJU2yDrpx4mk80nVZdYNq6sBcwpRJsmgqYFiS+uNB/Dg78kKYpRBo/44FYn1IuQPRTHl8H + EJLSDwlTMSwdxDMMOkNlvl6vt52ExOajq9T8M85Iehln4ZxEMcazVFDYbBAhIHBAxFDCzAOMM+Ha + JW9gAKNzh6wLQp8zHE/1htVMfOQAvoSzWGzB5VSIRAYYr6gQ1L9U7eAlNMIWHswywbSM4+Cacu1I + Y4jcAQwTsWpQAgI1uooKx4GlJpE+4yo2ApcuZ/O35d4RE59ifuVe/3r065F39Jt39NzVzioJE8rp + CmZC7ca5lqgDJg6I9BBX5Sqnbml8HC2CJYyXfzMtULwwVIphiQa6AhoGXxgHRWGwXGGtadFXIpmz + TUR2r5s7ijKr3pmTYmNi65wtiOcFUSA8b5CycOFoOR2tkGMJ4pT4a0/EBwldTxHCDOpDpdcQwoCC + SWWQxR+G2bNV55LC4Vzyg6UM6MYEkyoB6aBE55hvXGcKT3qMF9EVhAgISug0YwLb1KJT28xL1D7z + Er3RNhH98ssVpL5lWvTCbpe9ltXyroHrukMy+heE9YiZXl8ulmIDwTgZ9KGl78hBw4JYx6gpNl8Y + YpntPMh7wOKracXnxdHz8aZU++Loxbgtj744+ue4KfGaCW7qArhZMoc4MLAVMZ2gzteb4dBQ0STw + riGE4c6ZkB7uz9HRb6Oj571iiI/JDHtpkoRa9sO/0jjSfq4sC7sQ1iODjfHx7K1pz3govU+5mu0n + 7ooJCoLSaR8G9S8KAwfLCNKhYZFQcempKs8DjbIVWDCtWbmf+9drdK/34Cj9cXUfuDDRoNfgiD2n + 2T37oFF/6JQnSpuzwKYpN3t0z9nq8s2CZLPU54FMlG/m7XMXu9e1SbxgLmdu767Pe9O4sDrO6jXC + WeE/B7Zk49INm71GBlvwD56aboj5XJpEd+Ci3xR+Us7vrVTTPjj5SDs5+NmkZidJMehZewEMY33L + 7dAs+CWka1tq9f3OYtfIpv1jufMaRVajQWY5BMWVH+qS6sxZXSu1F9U6VQ3m1GUpAkZeZntc11pV + zp4pxHkWDXhenoFYjK4mr2iYMsdE66GdHnJ2tSncS6jtzLdCN6hzzRCof0SWehKIqUKLTH89OnII + hDT834uLcWn3GIQysCgnTewcM4npdopoOzGfhiX+nAagTA1GDVp5qW0yKQOFYUlZSEdlJTgTGY+w + fVAzmspbMtwrJm3xF91ThuAx6R/aESA9/FoOMTeHpSAL/bWge3OYR6700EBv972q/w5bQidO1B5U + b/o3tdxgio8ZAzipNdurysNgy0odAdXj71KbVB4spAnzg0UApXcOPog2Eclt5BY+oivWBoXH5By4 + 4ScskJFzPsiu4CUPWcU3srC1NvX0JovVZ92gRVmAbYxLslyxNfgXACWNFeVOIcfEz1Kh4CsIwMki + i3yJERA3mXOcBPHNXEqnYJjZ7/UJYFasf0UQZbIM8kR8xSI5ldVKZCtCKOAkQH6AbolcbAWnKUnp + NUNuFDFYbRYN/sF6PGMSBxX43yEyhMrWKM6HOqgeLWJDfnygoQoOBsSWIqA2faALTL9cV5ZUGstI + MIvjEHn/XT8lccsHITUtAkAmeijEHMgi1zSE7McWNAvxnAqiEEghAnCOGcQHhhb7pDRKpcSwRSw8 + jQEQFD5jgq9Hxwvgp9MUnrsleMaYQz0phQqNEq8ZuAw+aLad8gE1KiUsgOXnMmKitnp/oJyxDLsm + bA+tGdSObrJM2+Yey6yQlmiKsyK3li3GdlgoUrBewDJW0a1Q4KPXWHhFnrlMcSErZ1eFXPdCPiGP + MQDTdZlFuVatOkK/XMuWqtDqWDOyMD7uNrX3qnLXNmddDXO0BDvgopRfC67gU0hVSbf0k6fdohnT + lJWWJPU4OmnKRzXCzfFvsiVT1djBek5CuprNKfnsrJ0vY/hTG5RnslKHVYK0IUpp38ZRaFGGRgXD + m4FmJCbwJRNeGMNqQ7WIB9denIkkE/V6Zlhei6ZySBn8DiURPh28fErw0t6O5gw8lSFtbLLJSoYv + WKMiLQ5MFHJkQIpVSJ187S8C2OojmWpH1wHFKjeM1SFG/8ZpXv5JY6tDGnALeFhJUpmdG0Q1FwgD + m7ZxqG5ojkyNAMDkGxfrC68eBOuBqTzrpPy1IX7UWE4KmZrCDWLBiQ0M64OKw0bFFqu3GfWvJi0x + oRKWSlbcaJVBSQ4rjDtt4cep2EfNZoONHwM+gfp7hZp6+ijdbbmKKYokKJheM9GBqCcEovKSvGXt + nG+svLfcMLW5SrUoH9+6Km8syu9YQm915O5mwcSArTcLEMW624S9LPcaFrO7Tdi/2wQsI374q4R9 + v0Cw7vbn1vmFaRz0W3IRRPY6Gr/PxYQtSQWNa0J7hOyzQ/xeV9yeepnHgwVT2fQ7vzdh71Uz4PZl + 9kOX8V1Zdfeyyj50KxuvZ3dBmK/XXdZEu3rto83hu5KtK9m6km1jyXaitusIY9vGwq2yr+2vRvYN + 8+yiNJzF87WXT6yTwq30tgkbBMDugZ2lWsuU4SZZpvldhNTSHrCtuMXbiNsWt+jzDZPvbc2Lb848 + 3/fCt03PyQS0Oyor94BFcrsMzx9Nhocv1Len+70u39UVQFXHn6l2L95tuEOx3ev1TqTNUjzkVUbr + zuZvfzavZCnWe4zs8+oizbBAx9P3WP1jNPXPRYyh22UqQoF5z6Yqpj3nrg7cu9e1ute1dvG6Vouj + 7fYNrvs5/Q/37tcdgv5P/WLY9mM+Q/xEXhErIv3EKixqw364N8keqtzOfefub6nVy+4G2lLl3Z2V + PcmzMjuGPNjbbDKfjGi6jvyRyb/dq23dq213f7WtmrR+DMyuE7Cgy/RJAvVzEOyDrPwf714NasqP + OQqH6bFIpu040ding+K3h+LbwLc0/A7gduE+j4iwu3f5ukvnJ3zpbIX87pp5L0vnhkXtrpm7a+ZH + vGYu8uqD3SxT4V/+tHfL+36tvNfXtE0Jcq9BXghVjzdbe+X8en+8921ALP8RvK214VsQ+0zWyOXb + UmxPCVTv7fghxY1Ea9jquwC0R8MbeD8k1I92wpJfsdJt0eZrocLU97ogkr9f6Zofrrzn/VAhVO2m + 6GmBmEZH/XHhzK2ACMadhDPYZxiNZTYdROyz8CA+X02kocthfFM5h883lnSNpLspt/CRN7mCGM3q + 1xltiCx/rCK+OU7fGqTlz+3AWv48GmgzE34HzJQ/N5vMf2cMtWmpG6BU/nwbpGqjfgholT87/SdN + +NQP7Ys1MHtoxwbbuRK6btR8yyEPdODUFx7u14e7XS0STnO9bE8ig0q88FjIVuVfMZ271zTMWDWe + NV7KVrhgTWA3bb2Fdc3qYoGhfmoEi5UKl9qlNZJtzhvF8ramm4pnPxQWVNLcHQ9qu98RE+Lz0LhQ + arRrbGh5SM1ENXBmasnyVWbuGk5pw5khSost6fQJQLptoK0Non0n4CV/NAJx18YbJI29bBPayKuD + Qx0c6uBQB4duB4ceGvx0WKTDIg1r0GGRDot0WKTDIqUR98Ui34Q8dgQr/g9QSwMEFAAAAAgAMDB4 + UzPL3ZE4DAAAyVcAAF0AAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx + L3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3NlY3VyaXR5X3J1bGVzX29wZXJhdGlvbnMucHntHGtv + 2zjye34F4X6wvZCVdNEF7gz4gCDbdovrI8hlD1gYgUDLtKONLOlIKq1bZH/7zZAURUm086hzvaYW + 0Noi50kO50EyfkbifJ5ky0kpF6O/HTwjo509QOwkL9Y8WV5KMoiH5F0S81zkCwntvMg5lUmeheQ4 + TYkCEoQzwfg1m4eA+zaJWSbYnJTZnHEiLxl59+a8ag7JvxizL/KTJEmmYAqe/8liSXieS7LIOUk1 + DPTD20rzVKLNGVmyjIEYwGS2dsQbnA3JcSnzMyakBnytAXOuUC9ptmSCrOiaxLRUtOOcc2Q7Y5f0 + OgG2NJuTjwmoNmMkzYFOslDyxUguQVUt83C3w77g+YrIdQGzSpIVjLMk53+cvoxOfnt58s83718f + mMaPlGcAIw40Bv1cchaCHixkn2JW4ECJisBJmrBMwphcwkcSq1F8yXnOA/KblAUMVAHQzDTBa17y + mL38lAgpWo3vc/kqhzk1zStaRAy/dqQo6NJR4Y1kq1O6ZPMuXFKwNMlYBXlq3iuhNiKEktNMKByD + qnX5Twnz3lSsSyNPU0e6t2cfTqGFgULv81PdFxDz5R2Tl3lD7tVyJTcN9fHZOzU0r5S1+rEM95Dy + VdSSBNANWzOvYVh1rcD0UkGoIJH+enAARtmwjfEBgecZKdZAQY7JPBF0lrJJmYGZz0eaUFBmS56X + hW0QCstjd8fZOiAnNE2RSEB+TWIYV7WWkjjAKeW644MaApoG5HxdsH9TGMbfM2g5UITPyaRqH/TP + +0PVeJIKbIOuCnlaMZpO2yYw3TixF8BSCzYVEtiCxBcX5uPgIE6pEOBp4pIncn1Wpkx8KJh2XGKQ + z9DTDPWY9Xq9DXAkt19DrdAfeUnEZV6mc5Ll6LmEpLCswBeAiwDfoNnOE/Qo6TokbwCA0XlA1jVi + zBnCU7M0DZEYKYDVIBeHLBiXdoZIAD0TlZLGl7od7IFm2MKTWSmZkXGcXFNuTGYMPjoBMJnrBi0g + YKNRaMebOGoSZR2hJiNxkioyfzmGnDH5MedX4fXPRz8fRUe/REfPQ2OWCrGgnK6AE2o3rrREHTBE + gE8HD6rmU4QN+DxbJEuAV5+lEShfWCxNsIEDXQlNk8+Mg6IArKbVaFr3NVDmbBuS2xtW1qGH1azB + Sb0EsXXOFiSKkiyRUTQQLF0ERs7AKBQ4ggQN+sb88EHEMNKIwEF/afVaRACoibSAHPoA5nJr81LC + IS/1xVEGdGOSKZUAddDAC+wbNzEhUhYTZXQFzgDcDxrNmMCCtJDGWkB+vcZux7CQHJbjNsCffrqC + ULgUdS+sftXrjG3VNQjDcEhG/wA3nzHbG6sp1WTAOReDPrT0AwU0rJGNz5pi84VFVtEvgjgIJL7Y + VnxeHD0fbwu9L45ejDfF1RdHfx/7ArFlcNMVICyLOXiLgauI7QR1vtwMhxaLFkl0zbjA9TUhPVzF + o6NfRkfPezVIjMENe2lRpEb2wz9FnpnVoEcW1irMRwnL5/ezt7a95KmyUW2QrjWFKyYpCEqnfQDq + X9QDnCwzCI+WREHlZaSzvgg0KlcwgqIzyv3KCl+jSb0HQ+mP26slBEaDnsdce4HfiPugUX8YNBkZ + I67ixK38thg98N26JLz8hROgtvHtLp1e4F1Pfi7lTMQ8UVH5zXwzj9qBhC5KlMwVt83dXb43Xqsx + rt4YAHKFfwGsd69dDP0mqfw9GB8XthvCDl9HdQda1E1thM1kYiPWtA8raGRWEBjxpDNOCmPQcxYa + DIzzVo2DX/BLyBhcqfX7vcXuoE37x2pZe0XW0CCzAkFx1ZeupCZ4t+dKL3Q9T+0BC7qy1N6oyukj + bhK7NuXIZv28zAa8ygVBLEZXk1c0FSywoWDoRqiKXIdFeAmJpH2rdYOk2oJACiZLEamqT+d6ZPrz + 0VFAwF/ify8uxo3VY8uhgYM58ZELLBPbHdSufGK/DRv0OU1AmU7NNthISy+TSbMqGTaUhVjXVIIz + WfIM2wedQdNBUcUSTWSTc0fzVP59TPqHrgcQh1+aLubmsOHBob/j0W8OC55fJ7ggDm2dH77XHvTQ + 55eByiZ3fXPoOlIUp+VXb/o3nZhkU6MZg7LWKP0E8yJbCbeyHMiAf1U6C7UNIgoWJ4sEygejgZWL + oFxhbWAm4/YMyZicAyX8hgk+Uq2A3ApE0VBViJeEq7FhtWVMuyw74ntZbyXpEaE7SV3OrQFrMvQR + aPC5YmuQCOpIUzSrVUyOSVwKqet4YMTJosxiVUJhWWk3tAos/+ZKCl2lWl/UZQBcsTyQSVaq/C+S + +RXLFCunlahWrDCBkqQcylJSKDvS+wqUCHrNkBqVrrIVF7MLAqPES6bKxHojJCDKvavWLK9AA1SP + 1n6r2kcxlRwCQ0ErcGfB9oEuwH65bk2XGiwrwSzPU6T9V3e7KGzuCHW0SKBwM6DgDyHCXdMUIjNb + 0DLFDTvwkCCFTMAIZmBRDEfso9ZIKIlh9TnbDeicQeEzJvl6dLwAeiaE4gZkgZutVSWspNBuW5Wz + djcBbM2uaG0DGkoQlsD0c+XNUVuz/FDOXIUEG1KGDgftLHwjs8lvjFXEEg2cetMs7ESysetx6vTA + TGCzSDOtUNmg1TiFmtp8muJEtjbxarm+quRLeY4RgK6bJJp5dNsQ+s08u5Eht2EtZD34uNr02mvL + 3VmcXTXsHhusgFoNjP01VbApxGqlAvRjZMzCX8w1lVYoXTc98QXEDuIWJzvZFic7hLrOc+KJmh00 + MIBJSlezOSWfgnXweQwfHaAqqjY6nHxqU+2tJsQLhVPAcBZgpiyghcSUY8lklOZgHpD64pZ/lJey + KGU3ORs2J8+X2+kZukd+h8++EP9hCnHXOdijCaEc7NjGtpVypmAAdZAeWJ8YKPeYawc/+dJfJOB4 + Rirwj64TivVAmuu9pP5N4Letibc1IJ4KD8y3IanKFTyi2nOdgYvrBTUNfj/pLZVs9Asx24m6Lrnr + JptcJ81Xj3PqkJzUMvl8GVbNE7eE7gLVO8OaLOaSMxpfTTY4nJbPa4zi1lEZNORwgkqwybcFrfHR + 3Nza68kXmjAyT7C+7JmDk9A9basTPUj6XjO5LzF/iBKzKlhcUwgeWIzccibZMLd2cTK+c3XiLU7u + WUr4V8D+PMl6jFvPk8Az7s+Q9qnr/gzpSZ4hYd7z5A+QvvdjI+dSydzZGbKNg74b3SBWdPcqvuYM + ymXf2qswiC6E6nODxlMtGSJ9qyyCCdSh+7u4wNMEdNe7Bb+laniUUmSf1uFzh7TO3cBsjljP7YJI + 0M37HEa7umy0aQ3sU8Z9yrhPGb9dyniifcEIveXWxLHlNNxXK/sWPrtITWf5fB1VjE1suZPeLqJH + AOwebI53zaRpuE2caXVupBR1AW7Lr/Hk6K75NZq9h/l3m3bjla3n33vuvUnPyQS0O2oqt+s8fTPj + 54/L+PELhNsTh6daNuhjlbb6+5ph6/W42/L9Xq93okZU4I62HlKB96DcPfnqrx63nHWYw4L9Ycfj + Hnb4+NRmNSandQIkSixQ8HAj138Sqv+Uy85yZwxqv6Xm3F7w2i6ky/2rDjn2VwX3VwV3cVXQta7d + Xhl8gHk/uRuGt8WTH/rO4e37mhb5e719uMn5TzamOh0ST+4C406LCHwediOyW0x4cBv1xH4v8cfb + S3Rd3KPdnFQxbkTFOotHNvrvr1Hur1He/xplO6Y++W2ONBHf5Eblw3Yaql9X8SeGb0GXMzX3zS2H + 1wzCC9hfsxoWuM9A93sL3+qCI5ZZUv8AFVjhFWsUXZ7qqp7dr6qz1A8whfaXlx5SZtWSdAqu/4Nb + k95V8HQP2u90RI6eDgp+WF6YwqrjlkHGPkF4SLKriRrdZpTZdvqHzwNPAL2ouzmdw0ftd0hiNevm + 9JvuClSPc+aLkeHO1wOq526pffX8z1J8y/Abp/pWjm+QjFfPzbZJv/dB/zYD85z3V8/Dzv03YT/G + +X/17PRCJj7dlLaeA7tydzxgO1fCZOGGbtPRgg6cxjJCv7Hj3Yw6tvn3NVzK6L+ifBGxlK2av/g1 + D69pWrK26/RugrSoYKLhNt266xHaKcWsRf8ZKaY9LSqdnSFE2x6i6jndGNla5vxY9xK0NPe/m2DG + /Z7XgvF57OsJSqNdX1FwLKQzRJ2TeJugNqv7yjSCxipr7VI3Ivd3U7h6qtT/AlBLAwQUAAAACAAw + MHhTPsdui4wGAAD4EwAAaAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVf + MDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fc2VydmljZV9hc3NvY2lhdGlvbl9saW5rc19vcGVy + YXRpb25zLnB5rVjta9s4GP+ev0JkH+IMV8lGB3eBHJRe15Vru9HrHYxQjGoriVbH8klytmzk/vZ7 + 9GJZjp3uBjOU2NLz/vJ7pL5AKc9YsZpXannyy+AFOvlpDwg75+VOsNVaoSgdoxuWCi75UsG6KLkg + ivECo7M8R4ZIIkElFVuaYeC9ZiktJM1QVWRUILWm6Obqvl7G6E9K/Yf6ohArDE0p+CeaKiQ4V2jJ + BcotDezD18bqNKZlFK1oQcEMUPK4C8yL7sborFL8jkplCS8tIReGdU2KFZVoQ3YoJZWRnXIhtNpH + uiZbBmpJkaHPDFx7pCjnIIctjX2pFse0q145/rlhXwq+QWpXQlYR20CcFbr/+OEiOX93cf7H1e3l + wC1+JqIAGjmwHORrJSgGPyimX1Ja6kDJWsB5zmihICZr+GGpieKFEFzE6J1SJQSqBGrqluCTVyKl + F1+YVPJg8Zartxxy6pY3pEyofu1YUbKS5qygtQ0f3Het7CgDVoIU0vA4VmvjPxXks21wKGOz2qhj + /p/d3Rh735oSchHDuN7eQFJziYhEiX0dDCDdrajPBgieF6jcgYlqhjImyWNO51UBBZSdWEFxVawE + r0q/IA1XT0bPil2MzkmeayEx+p2l4JmpUpbG6L2xnuQxut+V9G8iBkbOPZrXC9HofjQ2i+e51Guw + VXMtarmLxWHMF0cj+QC6rB0LqSCvYODDg/sZDNKcSAktK7bQjWdS8pSZGrpmxZN8X1KLBTLij7p5 + xzZYw+HwuxyI+1dsnfzIKyTXvMozVHANC1IRqFloNOg/aDxrSsZ0u+Y7jK6AgJIsRruGMRVU0xNX + 905IqiVA9rWWQCwUiUUaLUC3PVGKpGu7DiVBCr0i2GOlqLNxxrZEuKqZAQAyIFPcLlgDgVvXhUU1 + FriJTIFgK0bpxNVi/g3KuKDqMxdPePt6+nqaTN8k01fYVaZhLIkgG9CkvZvVXmofpA04wJPJscQt + el4s2QrozW/lDOJLz2UFtnhgi5GcfaUCHAVik2DnabPXYsnoc0zhLq7rxIbVteG86UK9mtElShJW + MJUkkaT5MnZ2xs6hODAkbsl3hagfzYgTywga7MvBrmcEgkbIAVEgH8hCbYe6jHFal3lpnMkBVaMW + cey/hEPZxJRJUpANoAPAjq6UGYLO9JRbJlRF8sSVynOksnoEqucoXr58gnGyks0uNL7ZDUJYb0UY + 4zE6+Q0NXZ7wkTa/BkcBX6pcDb0QSPYlhaMCMWEIi4803LAH7KagibPedV5QZj2hmqF7GNH6TQvW + 47omCtuuab1eEWFcnKq+WHd1OSpUN++Bsn4hPdqCdHWV1NFoy26xtEQ+0R1oA0h0MwEqX0MWSiup + 7FQC0QItqyI1kdcI6Q8+pUayzOi1gKsjZgevVyCoqkQxOzYcmhqItR6XE/jUDoEtUS1xHIi0dfb/ + APH7xRcIJgyQ2Us+OCzgzlEorFr/nhqIsv2CS15GI1gZxeiWF3TcdImby4sfaJIHr8OcqBI4W4Gm + b35VP6fTV7PnjnOn09PZsbPa6fTXWd/hzivYdw3AVZnBkIxCf/0meP1tP24yR0qWbKmQupDmaKhz + dTJ9czJ91USPpDrcepeUZe5sn3ySvBgOAqSBEQVlXEHF/XV37dcrkRtoBnjV6IE3VBGwjixGsDN6 + aILPVgXk1vOVRK0Te31IwI1qA2GTndCOaji41GhwC700mh1OBgyKomEPbgzjfuwegRujcdxW5KDg + 1hb1c5r6QANU9YN/ry4LDc/pCMADRLeGxTGJMhXMNM1VdlRqMARxyJKwTKt5Zrurd99XAm6aY5dY + rRX+Yhhmvfke99eXwVyqoGr9NhydxC5pNnSl7Jviah+Sj3ItRtAOJ64doDjnnTgZjmgYdA0EJviq + 49Bv+BpOvaHV9vuHze6wLUZnpkd7TbbUYLMh0eaal66l7gB6mKsVVTZJh9GKu4Y0uFLfDJN6WByK + TfzdUVRFJOoLDthEyWb+luSSxv6QMw6M9OI6KvAapoH/ahyDi6EngTuEqmRi/idgLyto8Xo6fZi1 + GsZfkaOAft4nJPai/XbcQPHcv41b8s1U697jo6OybGfM25fiIHfBoTbzkQ4Wo9F3ZxlMhk5Ex60g + 6nNI2w1zkDBngg5r61ifmakTlpphDCnMXmtE6GYwU2KGRpMQb+TkWxvQ9pPWHID9zlzYT0rBt0y3 + 38T/2wk7OJ+00R34u3C/n1iYtcodPu8nR8I62ncm239QSwMEFAAAAAgAMDB4UyzTKCcNDQAAP20A + AGgAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx + L29wZXJhdGlvbnMvX3NlcnZpY2VfZW5kcG9pbnRfcG9saWNpZXNfb3BlcmF0aW9ucy5wee1ce2/b + OBL/P5+C8B5geyEradEF7gz4gCDb7RbbF3LZAxZBINAy7WgjSzqSSustsp/9ZkiKol520jzapBLQ + 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 + cr+LIzVMgk+XtklGh38hJEr87g5IdwfknndApLc+pLQkCnPuTdeevcb/foJyv8yj/DWt6jT6Hchn + /CrVuZgb++UEbAIZCYBtG+PnmEDTWs7x9MnKo91dQGTK5S/+wTRfMwunKkDaqt6/hVDFD965+pfu + dr2u3SpIA9g+0ZWI24zwme+Hox+BBAmWE8IksVk2iNkX8J5hfD0RyrWd8LatR3zuuf3Y2nU/W5D4 + iPyQEz2yJm7cdDBQPsaGc7vf3fmcoHx2A57l81QAVPN/LCCKz8029d95v3/bVLds+5fP/bb/N/V+ + iGOA8tnrb+rg08Re1RzoNbRnhe19EAouKrq2y4MxZNTnHq7XPbzy0Bpk2g/nTcLCkSQzD5Dn0v6x + w8Bd0ahgdR/WmvHWqGC8N4tufTfC1TOK4EFmyAg+alQaWTt22x4rqindGGJq1vxQxztSmrsf8Si9 + 3/HOCT4PfcAjRrTvQx7DQhoqatwE0TjRzkJL03CsRVbbp7slhD5N8nVbrrUps/p28iVTN2a21OUt + Xd7S5S1d3pLv/uOl5XM4WUqXNHRJQ5c0dElDlzR8x0nDvVKEPeB/DyVksxnA33DFPPPME/IMzvJH + v0heCaMEMH6dQq7H5qUGjS5fl53PRd/qHVEDYXY31Z/He4s7m3Z3E/5bulLRNpPdTfjurcZ7v9UI + kGVLTMFLMAhemjffdnkbcgthGMHGaNTfdh2kxtcKPPt9nzLJn/cvx77sXl64c4z8Ru4PHTN7bd3+ + msNtI33uAHfLGxZvGFc/mFpyJ1J09f8oKzIWiNvrxuY9sX6OVdXlKfPDGf5Si655+stPj/Q7Nlum + feOP2YDNtut9Zr/6oPTq69HWJdzKfMdjhY2m94jnMd07Kd07Kd07Kd07KY13Uu6+jaWJPeLbKttC + /7ZUokGoe+2le+2le+2le+2l9nSvvRCyY7p3gAnt/wFQSwMEFAAAAAgAMDB4U1i4FPvmEAAAQu0A + AHIAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx + L29wZXJhdGlvbnMvX3ZpcnR1YWxfbmV0d29ya19nYXRld2F5X2Nvbm5lY3Rpb25zX29wZXJhdGlv + bnMucHntXetv27YW/56/gvA+2BkUJS064F4DvkBv1nXF+gjSbMAQFAIt045WWdLVI61XZH/7PYeU + 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 + TtM8GoxPS1VIrlmQzACL7a7VkdIKJSQoMWyHJ1+d3UcHZqewewHrVkYSXgnJkkeyelsBFUbJdvGG + QA3H4ddK1/UgsqcGb2C7Ck+9SRjIYOfUpUrsq0H3LgItX85mN/2shLdlUYNnMSQoDuLDdVzvOIvw + rY9pdmPsv9aLHpXnYHLRfvfVSYGvkF6IaipPEXbhqMVflUbc6rdA4rz4yUJgQMTuBHM0OW4OXXV8 + 357qD8etKQv3van7cFxIsWNm7zoOb47xpdvZj3fhZxvwNgbog7lp9PTxfXsA2vtO308eeivMf1BL + AwQUAAAACAAwMHhT1WczzBcJAAAMIAAAhAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fdnBuX3NlcnZlcl9jb25maWd1cmF0 + aW9uc19hc3NvY2lhdGVkX3dpdGhfdmlydHVhbF93YW5fb3BlcmF0aW9ucy5wee0ZbW/bNvp7fgWR + frA9KIpbdMDOgAYEubYrrk2LLGsxGIFAS7TNVRZ1JOXULbLffs9DUhT14nQLhuEOuABBbPJ5f3+Y + JyQTOS83Sa3XZz+cPCFnf9kPELsU1UHyzVaTaTYjb3kmhRJrDeeyEpJqLsqYXBQFMUCKSKaY3LM8 + Btw3PGOlYjmpy5xJoreMvH190xzH5GfG/Bf9WRNeGphKit9YpokUQpO1kKSwMHAP33aWpxEtZ2TD + SgZiAJPVIRBvej0jF7UW10xpC/jKAgppULe03DBFdvRAMlob2pmQEtmu2JbuObClZU7uOKi2YqQQ + QIevjXwZkuOoqmce/7VmX0uxI/pQgVcJ34GdNbn59f2L9PKnF5f/en316sQd3lFZAow6sRj0Sy1Z + DHqwmH3OWIWGUg2By4KzUoNNtvCHZ8aKL6QUMiI/aV2BoSqAZu4IvopaZuzFZ6606h1eCf1SgE/d + 8Y5WKcOPAykqXrGCl6yR4b373jA7ihBrSUtlcByqlfHfNfizK/CQhiiKwHBvrt+9hxMGgl6J9/Yu + Iu7DW6a3Ig9J7DY7fcyEF9dvjcovTRSOYznuMZW7tCcJoDu2zl9x3FztIKQKRagiqf14cgLB1vH5 + 4oTAzxNSHYCCXpCcK7oqWFKXEL75mSUU1eVGirryB8pgjcTTRXmIyCUtCiQSkX/yDOxqcoRnEXln + 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 + AIhuAABoAAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8w + NV8wMS9vcGVyYXRpb25zL192cG5fc2VydmVyX2NvbmZpZ3VyYXRpb25zX29wZXJhdGlvbnMucHnt + XOtv2zgS/56/gvB+sL2QFbfoAncGfECQbbvF9YVsdoGFEQi0RNvayJJOotK6RfZvvxmSoqiX7aRO + m4cEtLH4mBnODIe/IWn/RNzI88PlNOOL0b+OfiKjgz1A7DSKN4m/XHEycIfkne8mURotOJQncZRQ + 7kehTU6CgIhGKUlYypIr5tnQ963vsjBlHslCjyWErxh59+Y8L7bJ74zpF/6ZEz8UbeIk+pu5nCRR + xMkiSkgg20A9vK0lTyGax8iShQzEACbzjSHe4GxITjIenbGUy4avZcMoEV1XNFyylKzphrg0E7Td + KEmQ7Zyt6JUPbGnokU8+DG3OSBABHX8h5HORnI9D1cztw6p9kURrwjcxWJX4a9AzJ+d/fXzpnP72 + 8vS/b96/PlKFn2gSQpv0SPagX7KE2TAOZrPPLotRUWlO4DTwWchBJyv447tCiy+TJEos8hvnMSgq + htZMFcFrlCUue/nZT3laKXwf8VcR2FQVr2nsMPxYkyKmS2MIbzhbf6RL5tXb+TEL/JDlLT+q91yo + 1g42T2iYij6qqxzL/zKwe3lgdRpREBjSvT378BFKGAzoffRR1llEfXjH+Coqyb1ernmbqk/O3gnV + vBLe2txLcbdpsnYqkkB3xVbZ1bbzqjW4XpASmhJHfjw6Aqcs+cbkiMDzE4k3QIFPiOendB6waRaC + m3sjScjKwmUSZbEuSEWvBr87CTcWOaVBgEQs8qvvgl7FXPJdC02ayIoPQgU0sMj5JmZ/UlDjHyGU + HAnC52Salw/65/2hKDwNUiyDqrzzLGc0m1VdYNZq2AtgKQWbpRzYgsQXF+rP0ZEb0DQlf8bh7xiW + ktMoXPjLTAau9EPM1KdBNMeYM5Ta6/V6O3uQSH+05SD/ijKSrqIs8EgYYTRLOYWpBvEBwgbECymK + 52OUCTY2eQMNGPUssik6ugnD9lRNV0XERQrgScjFIAsOJwMkEsBoRTmn7kqWg4/QEEsSf55xpmSc + +Fc0UW40gbjtQzMeyQIpIPRGR5HB2DeGSYTH2JIMR8PlZP4xnDtk/FOUXNpXz8fPx874F2f8zFau + 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 + cfJYLX/3dvhIuT9/tsePT/3k8Umd7LWtc486C8L9AvbQ99nuls4gursrBMTi54D6tnZvzDaLHWbb + YbZnhdnu8Rq99Kyf/yY9Xnt6hf+9fuoI5PbIAZcbAzGsi6aPGhnIvV1lrY8YFlQn4PYi3+l0fhPC + G9dynt4Gp9T/4/oDzN0tlWdxSwXdabtXVGwH/UkuntiDetZ3TdblkrrLg9ww+ekuitztckcNg+Cz + y84koyd7aSNK/N09jd09jTve05Dh+WlkH1GYc2+y8myn/ud5yN1yjPKnpqqj5A8gX/mrTSdiSuy/ + CMB6SDwAVCN8KsePuTGtpRY/OCd5sJsGiD25/BU8mN0LZiFRBTmbWv1HAFT8Apyrf/rtplekm1I0 + QOsPusCw0eqe+a42Rg3IfMCFEAWJva9ezL5ClAzji7HQrB1sN+0k4nPH3cTWrtvZUcRHJH6c6JE1 + YeG67f3yMfaP26PsjXf7y+dmuLJ8fhS+1PwfCmfic7VJ/bfevt801S27+OVzt938db3vY1e/fLb6 + 0zP4NDFWNQfah7assK0PQsFCRdcOeTCGjPrcQ3/dwp8cNFeY9mN1k6qIIsnUA3i5sH/6L3CXNCpY + PYC1ZrM1KrjMm0XX/m2Cq6cTMYPMfhFw1Kg0MnLstnmhqOZz7fpSM+X7OqqR0tz+uEbp/ZZXRfC5 + 78MaMaJtH9gYFtJQUeMOh4aHdqpZmoZjeVht9+2a9fMHZFjX5VTrMqgfkxd9sfIiUyVmVrRLUXYp + yi5FecYpyk+ckOzyg11+sMsPzNa7/GCXH9jP084P7pQN3BHq/x9QSwMEFAAAAAgAMDB4UxcAG+XU + CwAAcVEAAHAAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIw + XzA1XzAxL29wZXJhdGlvbnMvX3dlYl9hcHBsaWNhdGlvbl9maXJld2FsbF9wb2xpY2llc19vcGVy + YXRpb25zLnB57Vzrb9u2Fv+ev4JwP9gZFMUJOmDXgC8QZG1X3L6Qm91hMAKBlmmbiyzpUlQSN0j/ + 9p1DUhT1sJuHk3apDWy1+DgvnsfvyIpekDCZ8Hg2zOV075edF2RvYx8gdpykS8Fnc0l64S55z0OR + ZMlUwrhIE0ElT2KfHEURUYsyIljGxAWb+LD3HQ9ZnLEJyeMJE0TOGXn/9rQY9sl/GbMX8koSHqs1 + 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 + m8Xbr05/8y8HX8n+r7vYi8urz/PZu/eLgy/Ofn/wl9nZ/PL68u2i++/zq8v5ZDG7vHhy8Pz8/GD1 + Q9cH8+n1dP5x+uZJ97s/zs6mF9fTNwc3F2+m84PF++nBX374+fY/Pzl4NZ3e/cvin4uD2cXqZ67m + l//f9GxxML+8XBy8vZx3Vzpf/1T3E92/f1hX/c2/rPDeTA/eTS+mHUpX6PXnB4hf/PT7g+c3i8uf + pteL9Q9+v/7By/mS7sX7ycW76fXBh8nng7PJzerqZ5fz+bL06+n7ycfZ5fxgcvHm4NOsu73X04Pz + y+46s7crxrPl5WbX3WXm07vyT7Qf/m/ezi8/HEz+82Y+ffLh3YfFk46uK/qh+9wXB89/+svL2dX0 + fHYxfXE+m14s1j/94Xq+vNvND72azmeT89l/TudfHny7/MNs/u3RpbuP++3svPsgNr/0vy4uP128 + 3PzHLw82//Tt9O3sYrb84K3fffLh5nwxm1zNzlYst5f6y/K/Pr+arQn/MvvnbPPbT8ZnlxdvZ+9u + 1t+g25//63Tx6XL+y18mF5N30w/dr6x/8cXDn729wOXVdP0frscflheuXONvdz++xjg7n1xfH4xf + ffu/1v/7F5evl1+633/zm4Pu/95M3x6Mx8sbHo+/uJ6ev/3y4A+T+bvu4/jDH375tPynzQ8u/++3 + v/3tz+9n3ed3fTA5eDv5pft2rC6+uDy4vrlaQZ3ddN+r9edy3kEt1nd9+db6hJ789u7K/9h88+bT + D5fdmFoOkO6vMDk/+DidX2+ucPvJr/8iX62+I68ny1G3/ls8xLz756uO7zebzyDzgX3h+yC/tG7h + ywcf7OaD6qpvLniw/u9PfrP676tPbj6dvOkG4eXFYjK7uF7fUvdBHTx/+cPtrXYfffd5vp+eXx18 + vrzp/kDdp/Bptnh/MOk+osv1oHy+/AS62768eXO9uvgX6//yajE5++XLzf/8ffdJzi+W93P7X168 + 7z7TLw+mi7Mnv3+y+r0/fV5+AyYdxpcHs8VB1xuuVwXOu1Heja4HWAeTj5PZ+eR1B9v9y9XN665T + rS+7vtKfux7SDZI3N2fLj+zLFfv1+8ub8zcH14vZ2S/Lm5p0f4559y8355Ou4VzNvrq79sWbf13/ + /nKQPdl8XtPb/3BwPV0sv3IfJldXXf/vviiLT9Pp8tcO7gbHwbv55c3Vqo3Nuh9+QH5/uYclO5JJ + 9/3suvXq4sub3nwSj+560wXvyqyutS7V/Tkvur79Znp9Np+9Xn9pF/fQmz/7N6tCB2fz6ZvuL9G1 + pW8OXtz988HFtPvHN8vev26266bSfVTdV+Ri2Z+7f3zwIX+z+Hw1fXSt/7NuT8vB8OT+v18/+fny + l+nFfaGHKNc3r5fEV8vbGc/efLP6aB7+xwcFrg8+vZ+dve+ea7P/fTM9/3wwW/0Pbz+vn3F3T6D1 + 9+vhRZ6kl/3h2+WNfrhefQtuv8r//tMPq9ufdp/454PlI7V7AnaPqfPzh7ecMF8v5o/uabH6Qo03 + f7ZvHv0Nu89w9dB72/297r5S3V+v+8eP3f28+fKgqz97u+4ZH2bX18vvWPfHfPR1fFBo2XTGN/Pu + 03+1wf33n358+EObX+wo7sq9uXuqfHmw6uuPHj5LxDezs8XDW767SO8B9OgX1z//y/Rz12+WX8DF + wdXlefeofNe19O67/XH5Ffl287X+NOnqd3e2mH2Y3g2hrlGtfuV69Uf48ae/3X/Vrzef2E/Txfzz + V8/fLsfK+65/df9v9eF1j9mLDfGy467+4dvv/vz833/8edx9/OO/f/fTqx/+9teDPx787unXT7/+ + 6uuTr74+/N3qx8Yvf/rbn3/48bvxz8+/7/733z549F+se+eTTFNed/Yfn//83aufb6/SXSF5dn/x + X3ePgIfFvjm4/+/L//vr5UX3CRvUXz76sd+9nc2nn7rv5Lj7rGZnn8fzm/PpeNUGrn/3ze39PVve + X+8XV3+Gt5Oz6Xh68ebqsvvXzS8cjr76+qnxC1dPx9cfry7Gq8nl/PHs4cGvnjz+1f/+7y/N+z34 + Hwe/3TTz9Sf3+9+kj/2731w9/+/+7b4LfHlw8C8Hyy/lNwe/7TWW+ydtb4g++J3bsbr8vweD9I/L + D/++3O2o6v3nzff+j4++9k9uH1p3P3Y7W7mv+vzi8/qO7+cvq+/z4n78Pvrkb//r8vv6frG4uv7m + X//1w92378ltn/3wu0cf1+38rvstz5zui4cfavKJ3U25+iXWj4U/pnPhL+4+tdt/+PJgDfTHh3Tm + pW+6gZ6b+3y5qvz7J+l3pP9HfPDPj7/Jt3+4zf+/+98238D/ZzUn657A7y/f3H8lP3SrjfPr8bIX + fnF23k2FHlz+wR9yPl3czC8O/uuXbw4+rhpXN+n5uGzZ3e88WV/ji4e/2d3H8pLj8ZPZYvrh+ovf + L78Ks67PXy8mF2fTLz5+ufrS/P6/C2yby/ap/mg0j8dT5r90k6LVE+CqawHXy9nTagp3/4D65jcP + P7g/HHQj/Oirr4+/Ojz65uCbruw3//Fx+Z/GXx+PD482t/d/GS0z/an/+z+SKx9/9XXXPg4fXvl4 + /PVo/PVh5cqPf8q88uHT5MqHTz1XfvhTxpW7Zvc/e1c+GX/9P+tXfvxT9pWP0ysfu658XLvyaXrl + U9eVT2tX7v8FT1x/wZPaX/Dkq8Ovkysffu258sOfsq98mF750HXlw+KVlx9y78rLj69+5cc/ZV+5 + /33ufsfxfX78U/aVn6VXfua68rPalfvf51PX9/m09n0+Xc85elc+cV35pHbl/kg5dY2U09pIOU2/ + z6eu7/Np7ft8mn6fT13f59P69znpoqeuLnpa66Kj9Ps8cn2fR7Xv8yj9Po9c3+dR7fs8Sr/PI9f3 + eVT7Po/S7/PI9X0e1b7Po/T7PHJ9n0e17/Mo7fwjV+cf1Tr/KP0+j1zf51Ht+zxKv88j1/d5VPk+ + L1dcvVnB0689s4LeT9lXfpZeuf597v2UfeWj9MpHrisf1a58nF65PlJ6P2Vf+SS9cn2k9H7KvvJp + euX6SOn9lHnl/ve5+x3H97n3Uw+u/FBU7hYPD1YAB39cKRy3c/bfPV5WrkX8B1PzW/l+XeHRz26W + Nb3/pVvumfU2M/lsvc2EXVhvNZIL9VYDVlZvM+vP1ttM7pX1jiv1jsX1Tiv1TsX1it+XE/H3ZbOa + KNRbTbKU9Q4r9Q6V9TYrj2y9zQJDWa84/jbLDmW9Z5V6z8T1iuPvVDz+NiuaUr0Tcb3ieD8Vj/fT + yvg7FY+/08r4O5WPv/Lz6FT8PBpVxt9IPP5GlfE3Eo+/UWX8jcTjb1QZfyPx+BtVxt9IPP5Gleft + SPy8HVXG30g8/kaV8TfSjr/b9V6u3u2yTlmvNP5uF3vKekeVekfieqXxfrswVNYrjffb5aKyXmm8 + 3y4ihfWK4+92aRmuN5/MrqcHf5+c30y/m88v51/89mG44b/++zaIchfQ+e2TdXbwkQV2a7tdzZcG + /2LtjS59rcnV1fnsbOVOjt9NFtNPk8/jq/nsY/ePd571eBNHWXrQq5TYY4frh42PFvK4HmghK7vt + m/94fk/y/Rrk5Zrjuw3Gi3uK+3BWTTG5zzM8wQoUxZZW6McN0U/aop80RD9ti37aDv1Wj2qEvlat + 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 + qTHAfUpqDHCfkhgD3aekxgD3KakxwH1KUgwiayLGQEMmYgw0XSLGQGMlYgw0TyLGQIMkWgw4QSLG + QKMjQgwmMyLGQMMiYgw0JSLGQOMhYgw0FyLGQAMhWgw4CYJhyCMgqYqxX9mP7cQ+6MgHHvegox54 + zIOOeODxDjragcc66EgHHuegoxx4jIOOcODxDTq6gcc26MgGHtegoxp4TIOOaODxDDqagccy6EgG + Hsegoxh4DIOOYODxCzp6gccu6MgFHregoxZ4zIKOWODxCjpagccq6EgFHqegoxR4jIKOUODxCTo6 + gccm6MgEHpegoxJ4TIKOSODxCDoagcci6EgEHoegoxB4DIKOQDSIP2wp+TCA1MMAEg8DSDsMIOkw + gJTDABIOA0g3DCDZMIBUwwASDQNIMwwgyTCAFMMAEgwDSC8MILkwgNTCABILA0grDCCpMICUwgAS + CgNIJwwgmTCAVMIAEgkDSCMMIIkwgBTCABIIQ0gf7E/wYDF5rXzdxOZs+p4a9POqSF1pTU+uf2L+ + vqHxHpvKtrdwelR9oLAlLvsL29qyo7Cds/AWzsUsfIUNiTVQ2FRYfYUNlTNQ2BQ5fYWJL1cuYOEq + bPmw/sK2DesrbKi6gcKmqOsobGcrvIVz0QpfYWIc54IVvsKGTxMobNo0vsLEOM6FKnyFDaMkUNj0 + SXyFiQaSC1S4CjPjOBen8BWmhhMxjpnHYi5K4ShsJym8hXNBCl9hYhznYhS+wsQ4zoUofIWJcZyL + UPgKE+M4F6DwFSYmArn4hKswM45z4QlfYWo4oeM4k5xwFs4GJ3yF8XGcjU34ChupiUBhMzThK4w3 + kGxkwlcYbyDZwISvMN5AsnEJV2FiHGfDEoXCYFZiLQtUoxKb5X5WZU0X9I8EnT43oPMeV9TudGWv + J6DiIgICMi2iIWDCIhoCJiuiIWCiIhICKimiIWCCIgICMieiIWBiIhoCJiWiIWBCIhoCJiOiIWAi + IhICKiGiIWACIhoCJh8iICDjIRoCJh2iIWDCIRoCJhuiIWCiIRoCJhkiIaCCIRoCJhfCE7CxEA0B + kwrREDChEA0BkwnREDCREA0BkwiREFCBkBBBmzzIRijZkzhI6yAIkQFB4h9E8gMJfRB5DyTqQaQ8 + kIAHke1AYh1EogMJcxA5DiTCQaQ3kOAGkdlA4hpEUgMJaRD5DCSaQaQykEAGkcVAYhhEAgMJXxC5 + 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 + Qd6dL7ApcvIdB6MMTvMy02c4FPWDx57KaEonntrYV1kdL+xZJ8sQLEOwDKERkmUIr4Uh1EwWliBs + kCDUJPXrnm9ayMkreINKDF7bUzeGTNjX2tvHblpkIRt4PGMzD2C8BBtZHYUsG7FsxLIRy0YaIVk2 + 8lrYSM1kYdnIBtlIDVV4rqct1Munwd+ID0bxYkGjuRsKfk99gNja69PXfuM5EDKzI5HBRilslMHW + abIqlGhHoP3/4KXkCvXDlHrT+saBF+Sj+knvJG8tWc/fIH6VtGOUNmNTT1LUqHyJLLtudDXm2fYI + pT1CaY9Q2iOU9gjlOpDskoRdkrBLEnZJwi5JNEH6UyxJ1GbWdlFig4sStSsGa74JPl+I+C9QSwME + FAAAAAgAMDB4U1GD4tWdAAAAWgEAADQAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA3XzAxL192ZXJzaW9uLnB5rY+xCsJAEET7fMWgjRYe2qVJIWIRMApG7OWySU7ibdjbiP69 + R4J+gdPN8HaGncNy5XyTDVqv0mSO1d8Uy3bcv8U1rWJhlyicFQ5ca8ylZ7mpY2+w7TqMUIBQIHlS + ZeLtwVnygSoMviKBtoQiv3xjg5LoZ/SlcH5keuE7WYUwK2qW2NRNVCSif0yr//00ue7PZX46IsNs + k5q1Wc+SD1BLAwQUAAAACAAwMHhT0DmNgrUAAADOAQAAMgAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv + cmVkX3Nka3MvdjIwMjBfMDdfMDEvbW9kZWxzLnB5rY+xigJBEETz+4oCEz1wGBfBu+ACMRLcSPNF + Znp1jt3ppacV/XuHFQVBNLGzKl5VUwM49iHu/g5aj3++Bhh/7HLZgruzhN1eMXQjlMEJJ641+9Kx + bDVwNJg3DXooQSiRHMmbnF0FRzGRxyF6EuieUC43N9tgTXQXelKE2DOd8D85hTArapbc1FypTGTd + Xr9+dmkt3MIcCzv5rWxR2Ylp2VOTENq8U/H9SMxeEoWt7PQt8bTjAlBLAwQUAAAACAAwMHhTsQUv + LggBAAA6AgAAOAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvYWlv + L19faW5pdF9fLnB5rVAxbsMwDNz9igMyJBniuUuGIENRoOmQdisKQZFpW60sBjSd1L+vLKNBl27R + IpB3vDtyAceVj8120HrzUCywudtLYns+j+KbVrFyaxy8E+651tSXM4tVz7HELgRkUg+hnuRCVZlm + n72j2FOFIVYk0JZweHr7bZd4JboV+q3wMXPOwp/kFMKsqFkQZk7CU9XNnjlaRWgoUoqRTE7jn3ir + 4xq7QflIvc7Ex5nIkkdbGxvq0dkRzg5Z27HIZHui1l58srWxwtWn1U6EwEnH1zmfm+T8tOrNvLzv + 2YtauENpIumV5ct0NtqGOopqXPDpg+/S9RUvM+Fww/cZLoyxIRiDLd6X/3CWH8UPUEsDBBQAAAAI + ADAweFNlKWlw/gMAAGUMAAA+AAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS9haW8vX2NvbmZpZ3VyYXRpb24ucHmtVk1v4zYQvetXDJyDrMBWroWBFHDdRRNgkwbe7F6K + QqClscxaIlWSSlYt2t/eIWV9WnaLYnUwLM7wvTfDmaFuIJYJF+l9afbL77wbWH6zh8A2sqgUTw8G + 5nEATzxWUsu9oXVVSMUMlyKEdZaBc9KgUKN6wySkvR95jEJjAqVIUIE5IDw9vjbLIXxCbF/MVwNc + OJ9Cyd8wNqCkNLCXipCy2os86D2vWb0bJy9BSFEgSSGiXdWTON8GsC6N3KI2teNPtaNUVt3mwESK + GnJWQcxKhx5LpSz1Dg/sjUsFTCTwzim8HUImCYfvncbYwnFNMApb+vDbJn+vZA6mKuhsgeeUbQNr + UXn1OvujVBiSXvsj9jwt68NoPDf9xbMtBS8w4wIb70JShjnqvmOe5ubkfbK2KrZPD8YUH2WakrYX + a21khWH0hkr3hHz5sP30+POz53lxxrSGZzTvUh2fmGAp5ijMJuP2t693PngLVh7QM5vNBsu2NC6h + hZ7b8iwN0nExA4yOsGCK5WhIHpS2Ko2EWCFzLpyCE9owESMwhaAZ1TCwbtXhMWMU35UG9Ylg5TAt + TEKsnGUr2LT/QSD9TZxOVzNOmqOVQtgyo79rl+sajM4aB1h/90+5XdcR05WIw7X9fZVHFB1nX5Uu + dzpWvLDJiniyglcS0V/scWl4P/D4QJ3Kfy8xq4A7w76qu7btKSd3ABKewz7+aGPOtc24AVl3zOft + o8sEUn1UYIcE9TQ1Xpb1oz/TrI1qTr9OeYJ7iCIuuImiuVuxj8Zsv2jfurgWADe2h3AFs6l8zTqE + IXNvYyPBPre3x3emUt1ZbUtaSwDL76ngBK5aZ5oVnRKaFiOzfRTjNHi+sKzED0pJNZ+9NFUKfrfZ + h7yk4SOkHU0OJpwFfZ6R+v9BNkK4zqjLAtX8v7Tywh1NELZH1mQw8AaH16tvuO+lbeg0DvN+HPgl + zEjHsqAJdg81O820Yu6f2f0F/OIfaLbp1d1d3sYVNn2Y34VUf6zMjP9rl40TpEZzMs59nRyjXAp+ + REWYvtu/tBN1Keqk3f35lx/Wl9n8NCKDYKg+agY7jpPmeqCzXuiCZtPVGnVMNA5VRLEKE7lZX3V5 + SpGiObP7AVArN/dC+Jnsa2uu74Ke3AHNARl9B+hpjqFxRPBQG6/D03fD12oavG8aQb9Y03XgrL7o + pqGHxhH4qUNeFYtxcF1eTBHVXnSVb8KjJp26lS/RKDTqQqr6plE0boBurf06ekyTQ+bRQcrjNMe5 + w4hp4xweyP5vcSTcfrBdCmVgnY6mdrlOw0q6wWhOxG6kTZNN+vjDIT2ac/bj0g7YyxzD+X1VyzCu + H5C+YtTosjsFOZKxgNvpYbmALh3/AFBLAwQUAAAACAAwMHhT04CCxdt9AADEWgoASgAAAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvYWlvL19uZXR3b3JrX21hbmFnZW1l + bnRfY2xpZW50LnB53b3dclzHla1776dAuC8s95bYAjfxpzjecdS0rVZs2c2Q1O6Ic4MugkWqjiAA + Gz+k2R19nv1UoQogUCtn5pxzfFm1BN9YosA1v1WonCtzjJEr/2Hn5PzN7OzdH26u335x+Jt/2PkC + +9/8Yi/PLz5ezt79dL3z2cnvd/4yO7k8vzp/ez3/88uL88vJ9ez87NnO16enO7c/dLVzOb2aXr6f + vnk2/7vfzU6mZ1fTNzs3Z2+mlzvXP013/vLtj3d//Gznh+n0/l+u/369Mzu7/ZmLy/P/d3pyvXN5 + fn698/b8cn6l0+VPzX9i/u+/LKv+5h9u8d5Md95Nz6ZzlHmh1x8fIH72/e93vr65Pv9+enW9/MFv + lj94frmge/nT5Ozd9Grnl8nHnZPJze3VT84vLxelX09/mryfnV/uTM7e7HyYzW/v9XTn9Hx+ndnb + W8aTxeVmV/PLXE7vyz9jP/zfvL08/2Vn8p83l9Nnv7z75frZnG5e9Jf553698/XVx7OTr7//y6vZ + xfR0djZ9eTqbnl0v/8ovV5eLW1795A/Ty9nkdPaf08vPd/64+O2s/u3R9eef+dvZ6fzTWP2l/312 + /uHs1eoPP99Z/dMfp29nZ7PFp1/6u89+uTm9nk0uZie3LHeX+sviT7++mC0J/zL7+2z1t58dn5yf + vZ29u1l+je5+/q/T6w/nlz//ZXI2eTf9Zf5Xln/x5cOfvbvA+cV0+QdXx78sLty4xr/e//gS4+R0 + cnW1c/zDH//38r9/dv568c37/Ve/2Zn/78307c7x8eKGj48/u5qevv185x8nl+/mH8c//uPPHxb/ + tPrBxf9++9vf/vjTbP75Xe1Mdt5Ofp5/RW4vfn2+c3VzcQt1cjP/ci0/l9M51PXyrs/flj6hZ7+9 + v/K/r75+l9NfzucDazFK5r+FyenO++nl1eoKd5/88jfyxe0X5fVkMfSWv4uHmPf/fDHn+83qMzA+ + sM98H+TnpVv4/MEHu/qg5tVXF9xZ/vmz39z++e0ndzmdvJmPxPOz68ns7Gp5S/MPaufrV9/e3er8 + o59/nj9NTy92Pp7fzH9B80/hw+z6p53J/CM6X47MrxefwPy2z2/eXN1e/LPln/xwPTn5+fPVf/5m + /kleni3u5+5PXv40/0w/35lenzz7/bPbv/fPHxffgMkc4/Od2fXOvEFc3RY4nQ/1+eh6gLUzeT+Z + nU5ez2Hn/3Jx83rerpaXXV7pz/NGMh8kb25OFh/Z57fsVz+d35y+2bm6np38vLipyfzXcTn/l5vT + ybzrXMy+uL/22Zt/Wv79xSB7tvq8pnd/sHM1vV585X6ZXFzMHwLzL8r1h+l08dd27gfHzrvL85uL + 2142m//wA/JPl3tYck4ymX8/5y379uKLm159Eo/uetUK78vcXmtZav7rPJs37zfTq5PL2evll/b6 + E/Tq1/7VbaGdk8vpm/lvYt6Wvtp5ef/PO2fT+T++WTwAlh132VTmH9X8K3K2aNLzf3zwIX91/fFi + +uha/9+yPS0Gw7NPf351PFm0zme3DfTH85+nZ59qPqS6unm9gL9Y3Nnx7M1Xt5/Swz98UOtq58NP + s5Of5s+52f+5mZ5+3Jnd/oe3H5fPvPsn0vKr9vAiz4aX/faPi3v+5er2C3H3rf6377+9/SSm8w// + 487iETt/Is4fW6enD+9+wHx1ffnonq5vv1vHq9/gV49+nfOP8/Yh+Hb+q7v/ds1/kfN/fD+/nzef + 78zrz94u28cvs6urxddt/nt99M18UGjRf45vLue/iB9WuP/2/XcPf2j1F+cU9+Xe3D9gPt+5bfGP + nkMLxDezk+uHt3x/kbVn0aO/uPz5n6cf561n8V283rk4P50/Nd/Nu/v8a/5+8W354+ob/mEyrz+/ + s+vZL9P70TTvWbd/5er2l/Dd9//66Vt/tfrEvp9eX3784uu3i2Hz07yVzf/v9sObP3HPVsSL5nv7 + D3/805+//rfvfjyef/zHf/vT9z98+69/3fnDzu+ef/n8yy92d7/4cvd3tz92/Or7f/3zt9/96fjH + r7+Z//ffPpgKnC3b6DOjPy+b/Hdf//inH368u8r8CoPH+Gf/df80eFjsq51Pf77431/Pz+afcIH6 + 80c/9ru3s8vph/l38nj+Wc1OPh5f3pxOj287wtXvvlrd35cvFve39hdvfw1vJyfT4+nZm4vz+b+u + /sLu0RdfPi/8hYvnx1fvL86Obyebl48nEg/+6sHjv/rf//158X53/sfOb1d9ffnJ/f43wxnA/d+8 + nQrc/9unLvD5zs4/7Cy+lF/t/LbUXT49edfG6YO/eDdgF/97MFL/sPgNfKp5N7TW/nj15f/Do+/+ + s7uH2P2P3c1ePlX9+uzj8rZ3vvhfy1/2/Q/ffrmvPw3mR7+Guz9dfHl/ur6+uPrqn/7pl/uv4rO7 + /vvL7x59dnfzvvnf8sz1Pnv4CQ8+ufup2HqJ5ePiD8ZE+bP7j/DuHz7fWVL94SFi8fo386FvTYw+ + vy3/+2fDb836b/TBPz/+bt/9Flf/f//fVt/J//t2wjZ/PP90/ubTl/SX+Xpk/mhbdMfPTk7n86QH + l38wS72cXt9cnu38189f7by/bWXzGdH7RROf/51ny2t89vBvzu9jccnj42ez6+kvV5/9fvF9mM07 + /9X15Oxk+tn7z2+/Qb//7wrb6rLrVH8otJPH8+m/zGdMt8+Ei3lTuFpMrW7nd58eWV/95uEH9487 + 8zG/98WX+1/s7n2189W87Ff/8X7xR8df7h/v7q1u7/8qNNHhT/2v/xhcef+LL+cNZffhlfePvzw6 + /nK3ceXHP1W88u7zwZV3n3uu/PCnCleet7//uXblg+Mv/2f7yo9/qnzl/eGV911X3m9d+XB45UPX + lQ9bV17/DR64foMHrd/gwRe7Xw6uvPul58oPf6p85d3hlXddV96tXnnxIa9defHxta/8+KfKV17/ + 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 + 4y1q711V7n3FdIuKyd5Wc623bz+C8N0sqSxGu3q5o8tz+2qsr8ZIX41tqMZO1Io9wPi2tiarLW37 + 1si+hs8uqr5pOlsFJWMVdrbT2x7YIgA+HtrFYnftMVonzFl54iDVtDtsKlzxzGHbwhWdvoX5E69n + 8QWZ50+9qO3SczIB7Y5c5e6zAO4W4vnDCXH/Vfjm1P9D1OZqh7+u69MrzGtvKmxRTDtb7CfSADlu + 0SoLqG8L9Hvqa/fUlTj2JH6oioa8QFq4a56qr3ypr3IYC3dulFfr2rw5UxfTZrmzbfL+Naz+Nazd + vobV5XP38GrWHVfBj/lW1022VPp3vrbYpjMkHs3bX1UmmFgoptHth3tJ7N6K69KJbv4GWrPIbhnr + 1Nn9Ltlj3SWz48n9vqkm08yBBCQHJkX3r63JVdG/tnaX19bq6ezHAu46RQu6yL8rWv8IAryXAGFn + B2dQSH7aBoQPcoLq91ic3ASLa/TdLYc2qivMLRB35RkPiLH7t/D6M+XHfaZsBe7+FPmp1sct89qf + IvenyA94ilxl13s7N6YivPjJT46f+qHx0z6DbUuVTxi8IWyLoQIKoPjtwmwdJ5vlDxZurujwRwVP + ZW1bO+KU3yICzmsqf/yWEZ4rWWa0wdXDFe8JiYT6pUkw2CVzzl02nK1U+t/llMX+DUff/fHGux61 + VAI2Dl0eGTiwXekngAlbFfi4hjPOIO9hbJPJaZiwLyKAaHc5kZZ2g+K6GgmvW9ZJrUN3U8PgJU9I + BTGaNc8CupBOeVmVcRnztoY75bUd7Cmv74EEyut6nf43RgbrbN0CEMrrdkCha/R9AIby2ulXbPBq + bjBXc2CceMcG27kSugzSdCurVZu+oAmnoQhwEd3jEWEV+NurQJuLXNzpPGAxW7o/nznzr2hcsHpc + aT1ZrFHBRG03bTxK9M0kY9ZXv4VhfmO5RqrFrni6gBTWh/JqwjszQM3X7xfzKJlujnv0RNwQ++B1 + 3/hHarRrDGS5TMNEDQzi1nrumVzpJZ6zDk0XpUoj2d0EsNwKjWyCG7c/HnoAMLL+SEQDkvpRzXc5 + 7+nRT49+evTTo5+GXlugn/tGPg918GMY9lCrh1otc9BDrR5q9VCrh1oPB7Ue1blQCxL7P1BLAwQU + AAAACAAwMHhTyWQHZ7QGAACtFAAAaAAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + 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 + gSc2A3fiU58AeNaJqjBaf+0GqnpsHrYdtCTSeKatS9jNHN9LUA9JF/EmBi4lnthhT26E6Z4V39pr + 5lav6hhYwnEiY5WWQTVMxa4t+h5o3J9Sp2RjMRgc7CBQj7sSPAGqSsRsEZOMrP37WhptcFaSdoFS + 142OG1tcVJ9vLu10kSfKxVddGlQ9bwzOLVY7XArhihWHwz2hjvXeVtKCecd3cBbfYZh/PLTEbiTm + ZR7wapIE1BG8nrzBmZqEqytq2xeOcUdYtIKrh/vqdApHBrcyWYpY/8JiRkM0ezka3XTD5H4FCBpn + JrsYhY692w7rO8DEvXXrnL5OdX+uCPbyM6Vz4o/9rUBYyHRcVFNZCv+qGHhMKpSEXgo6EmOK1zVV + LdGNc4wGp80+Ik4f/Eb1eFpwtqHqnnHqflCLLs3t9LTqfXCsen08xbsTd/DYadLeZBTPt8p8fWWL + 9dC8b1byqeIc6lVrbPqvTlOV5uZHga/OUzsNVaOVelNzh51CGjzbw9Y+Xx1Ht+PodhzdjqPbvz+6 + dev89x7mKmlvlbBL8NC+6WtHseyHu0roV2a94/R4nB6P06PP8Dg9HqfH4/T4f54eDzTuvzNPet0Y + 9jvd+buOnH8BUEsDBBQAAAAIADAweFM+9KGwhAYAAOcTAABrAAAAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fYXp1cmVf + ZmlyZXdhbGxfZnFkbl90YWdzX29wZXJhdGlvbnMucHmtWG1v2zYQ/u5fQbgfLBcK4xYBuhnwgCBt + ugBN2mXZgMEIBEY622xkUSWpJG6Q/fYdX0RJluMWQwQElsh7v+fuyLwiqch4sZxVenHwy+AVOXix + B4WdiHIj+XKlSZSOyTlPpVBioXFdlkIyzUVByXGeE0ukiAQF8g4yiryfeAqFgoxURQaS6BWQ87Or + epmSPwHCh37QhBeWppTiK6SaSCE0WQhJckeD+/i1djqtaRmQJRSAZqCSm03LvOhyTI4rLS5BaUf4 + 0REKaVlXrFiCImu2ISmrrOxUSGnU3sCK3XFUy4qM3HN07QZILlAOX1j7UiOOG1eDcvqyYV9IsSZ6 + U2JWCV9jnDU5LjYxOVabIj3TqPMmh5icsDx3b+95qmPnIk9j8rk0MWJ5TK42JfzN5MBLuWeyQKFq + 4FSw75UEio4DZUZ0UrJlW6dXt/7ClpB59Z+40j1ueEjB6lQ170nOodCYghX+8NQm7YOUQsbkd61L + zEuJ1OCX8FNUMoUPDyhdbS1eCH0qEEJ+ec3KBMxrz4qSl5DzAmobvvjvWtmzDFRLVijL03a9bWht + 9rcKuv6vl2v9XBCOL8+t0acWtj7olNJ6f41IyhVhiiTudTC4IrM6adHoajQenOTKfONyndV5nff5 + fNvDecvIuO/ENQLCgWWuNIYSQXV97X8GgzRnSpFj49Upl3CPWk6/ZcUVW6rPJbhaV9MBwWc4HP6A + jlhAEREW6MBy/iMqolaiyjNSCFPySjMECBYR1hYWlTMi46YU8w0lZ0gADMG3aRhTCYaeeZB5IamR + gFE2WlpiMRmuixgBpqSZ1ixduXWMPCvMiuQ3lQZv45TfMemTM8XmxpFMC7fgDETuyjQ227HQ6uAm + WUpRldSJ0SZvtZh/W3ApQN8LeUvv3k7eTpLJu2TyhnoAWMaSSbZGTca7ae2l8cH0VmyG2HpsihXt + 0ItiwZdIb38rb5BYBC4nsMODW5zl/DtIdBSJb2zndZ42ex2WDPYxtXdpjRUXVo/2WQN2s5rBgiQJ + L7hOkkhBvoi9nbF3KG4ZEnfkj8nBb+RCFOBAaR4jgCZOAGpyL1u7QQASNMK2iFp6kKytdVuXNdLo + si+NUzm2sgRrI+owxOHr9etbbMdLl3LrSqe9z4c+THRXpZkujFVd5Xp43XiPof4IOISRzk4qy0lq + VnL6x/sLYsrU4JYRVd2oVPLSzdMgZHoLG0QnlplvMxhFUwYkrZR2cwkIYnFRFalFmKm6MChLUx2Z + 1e6K2JwIXPcNCiToShYWO1y7oYzRuoWmkBG0wFGG3NmOGueNHUaV9F8LY2tUaxy3VBqrQxH2Jh7t + jrr5zxXrDzJz3VLPOPaMrv5mXNDeRGxnNLyntngcaGgpymiEK6PYVsCYkFfE+egHxs/jJyiwUzXB + +YpqHsOqeY4mb6b7RvrR5Gj63Lw+mvw63TXgg4KnvgG0KjPs3VHb2bCJLj8+jZvkspIndyCVweKM + DE2aDibvDiZvmtCx1MTa7LKyzL3th1+VKIYN8E3RlhKwy0HiG2xUwINOcMLezmyUp52omCMoIlZW + iPIVDim0obPv1hLbNgGBbtL3+NRkqjuI97POR8fWh9G17VqdPkYddTR0bg5j729MRigdzxAd0XiK + NZM3eNb1aduvvy4/9fYrmddG1E2OopUMU8bmI9xFI4OTfFkg2nsySqZXiTvOJ5jjao2YUj3c1c+o + 3avOstG0FwLUGg3bHZm2WRKeDWOyb7uOVdzT/7TPfz9qqPfEWIF/MTb3nQ6O98a6yXaPDNEoN/8L + Sbu45yOsmQNfMzsRZTkQUE1pGVQ1X7uhZR5fOdsBWoJ2kdm2Je5jvRslbGHQx6jLQQDxCwfsxZ1w + I6+W20TNnZJN50FPJEt1Yoooqi8mSRhl3Qi0ziNZMLK1GI32N31soX0VHQ22sMUigRzW3QNQRu9Y + XsF2TzGHhF4ct6SY4dxe2hmjjqqQYDPpTQtu3UK3RO2IKeYrMRL2t/Em2c92/y2c92KHvOye4YWi + A5ck3C9lVUSyvpYh7ICtZ6csN9fK+hi4HYsguKeMrvC4EL56zT2Q4VlKVyqx/65wdy0yfzuZXPfT + FK7UUYtntktQHMSH7bgZ27Pw1m909gjUv/tHz8pzvXPWvUNvJcJDpheihspTdM93UUdIjZK4U4OB + xLnSG3SmodhZNyWjw/YwUYeP3Wn1dFhKccfN8eAw/IeKXrhj5SHbdY8ePfUG6H9QSwMEFAAAAAgA + MDB4U+Tp0uPcDAAAj3QAAGIAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 + XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19henVyZV9maXJld2FsbHNfb3BlcmF0aW9u + cy5wee1dbW/bOBL+nl9BpB9sLxTFLbq3dwZ8QNDd9gr0Dbn2gEMQCLRM29rIko6ikrpF9rffDElR + pF6cpHHSpJWAbiyKnDcOh89wZO8TEqbzKFlOC7E4+PveE3KwswuIvUizDY+WK0GG4Yi8jUKe5ulC + QDvPUk5FlCY+OYpjIjvlhLOc8XM292HsmyhkSc7mpEjmjBOxYuTt649ls0/+zZi5EZ8FiRLZJ+Pp + nywUhKepIIuUk1j1gedwt1Y8pWhzRpYsYSAGMJltLPGGxyNyVIj0mOVCdXylOqZcDl3RZMlysqYb + EtJC0g5TzpHtjK3oeQRsaTInFxGoNmMkToFOtJDyhUguQlUNc3+3Zl/wdE3EJoNZJdEa7CzIUbLx + yFG+ScLXAnjOYuaRFzSO1affo1B4SsUo9Mj7DG1EY4983GTsP5R75FMCLXua2AXlCdDO9xQn+qXg + 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 + O18zuI7qO7vSZtZrYgW19XnG8m2B1kYSsPvFsKXc/R9QSwMEFAAAAAgAMDB4U8gWUqLADAAAeWkA + AGUAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAx + L2Fpby9vcGVyYXRpb25zL19jdXN0b21faXBfcHJlZml4ZXNfb3BlcmF0aW9ucy5wee1ca2/bOhL9 + nl9BpAvYvlCUtChwdw14gSC37QboI8imCyyCQKBl2tGNLGkpKolb5P72nSEpitQjTydNWglobVHk + zHA4HJ5DKn5FwnQWJYtJIeZbf994RbbWdoGwvTRb8WhxKsgwHJFPUcjTPJ0LKOdZyqmI0sQnu3FM + ZKWccJYzfs5mPrT9GIUsydmMFMmMcSJOGfm0f1QW++TfjJkbcSlIlMg6GU//ZKEgPE0FmaecxKoO + PIe7pdIpTZsxsmAJAzNAyXRlmTc8HJHdQqSHLBeq4gdVMeWy6SlNFiwnS7oiIS2k7DDlHNVO2Sk9 + j0AtTWbkIoKuTRmJU5ATzaV9IYqLsKtGub9et895uiRilcGokmgJfhZkN1l5ZDdfJeG+AJ3TmHlk + j8ax+vZHFApPdTEKPfIlQx/R2CNHq4z9h3KPfE2gZEMLu6A8Adn5htJEvxWc+dB/5lPUEGR0YavW + WpcHdMFm2oqPUS4ardllyKTqvGy7F0csETASp/ARhXLs3nGegkX/EiKD4cmgNtNFcJsWPGTvLkF6 + Xiv8nIr3KUSSLl7SLGD4tWFFFmUsjhJW2nCg70tlnQ18wWmSyzZ2121DS7P/V7CW/mdpHNcd9/Hw + ywEUM64d9zk9ULX0vb77xMRpOrMlLhdL0eXW3cNP0g3v5Xxob6WN0UNK+TJoMw8kaQt0MPi+X1ZY + QqDHOaE5CdTXjY0jMiljajg4Gow29uIc76G4DLrjMiyPj+ueP7ac5zWdewLxqmL5OBfor2R1cqI/ + NjbCmOY52StykS73Dw44m0eXLP+SMZWF8vEGgWtzc7O7CpG+IKkp8Ddko/+mBclP0yKekSTFPJQL + CuEKMxsmPMx0pXoWYX6IVz7ZhwqMwlRYVQ1DzrA+1SGvhYQoAUYItVhiYSBVakMBmGeoEDQ8VeXg + b5pgCY+mhWDaxnF0TrkekjFk3AiqiVQVKAOhdYHZVqZRsNp0kyx4WmS+EiNwtEoxf1lBkzBxkfIz + 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 + TKalotbpuJuUutV2ZSWes/ga28JOrP6ea8iOevFvUEsDBBQAAAAIADAweFOgk6dtoAwAABpcAAB0 + AAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9h + aW8vb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jaXJjdWl0X2Nvbm5lY3Rpb25zX29wZXJhdGlv + bnMucHntXG1v2zgS/p5fQbgfbC8UJS0K7J0BHxBk216BviHXPeAQBAIt0442sqijqCRukf3tO0NS + FCnJjtM63aSxgDYWX2aGw+HMPCTtZyTm0ySbj0s52//H3jOyv7UHiB3zfCmS+bkkg3hI3iex4AWf + SSgXORdUJjwLyVGaEtWoIIIVTFyyaQh93yUxywo2JWU2ZYLIc0bev/1cFYfkP4zZF3ktSZKpNrng + f7BYEsG5JDMuSKrbQD28LTRPJdqUkTnLGIgBTCZLR7zByZAclZKfsELqhm90Qy5U13OazVlBFnRJ + Yloq2jEXAtlO2Dm9TIAtzabkKoGhTRhJOdBJZkq+GMklOFTLPNyu2meCL4hc5jCrJFmAniU5ypYB + OSqWWfxWAs9JygJyTNNUf/otiWWgh5jEAfmYo45oGpDPy5z9l4qA/J5ByZ4hdkVFBrSLPc2JfikF + C2H8LKTIIcrp3GVtuC4+0TmbGineJYVs9WbXMVOsi6rvcZqwTMJMnMOfJFZz90oIDhL9W8ocpieH + 1swUwSsvRcxeXQP1olH4gcvXHCzJFC9oHjH82JIiT3KWJhmrZPhk3itmKzuEUtCsUH3cobuCVmL/ + v2Qd4895mjYV9+7k4ycoZsIo7gP/pFuZd/P2nslzPnUpLuYLuUqtRyfvlRpeq/XQ3csIY6aUikXU + JR5QMhIYYwjDsGqwAENPC0ILEumPe3ufybiyqUH/c3+4d5wW+A7FldGdVmZ5etrU/KmjvKCt3DOw + V23Lp4VEfWXLszPzZ28vTmlRkFfXObiY4oSXkh0nIi4TecyzDBYu6udjzrRPKkZ7BJ5er7dpB6L0 + RLgtCPcUif/xkhTnvEynJOPoowpJwZRh1YMzAC+gxZom6DvSZUjeQgNGYZks646xYNiemuVgiMRI + AWYPuThkYZK120MC6IOolDQ+1+UwFzTDEpFMYEBGxlFySYWZrhF44wSaSa4LtIDQu0RPrFwsSG2H + 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 + yw8SWN91PwYQ2WddWQoghrgSKsyOc0S/dDGpS8hkGyVkbcMHrCL7E1ny6vcQH2YP0QuQ/b7hjwEb + O+zU7xv2+4YPuG9Yp76tbR1SEZ/84puH/b7hIz2f1p01H0NBhAsKbOvn09qFjr+0eUuciI9/BWh4 + bwfDfCP3sK6Hdb8arNviAXo1uX6VM/R4wOkZ/ve8RyvfgjLkNzNrdLEpRD8GDKHWhfU0eCgA0dgh + l5DAWyz9Q8rz63x/tT/P0p9nud/zLDintnCYxUfvP9MRFX9k/amUjcWl7fhAZ1F+ukMmdzsY0sAc + ePUl3k9y4CPN4/6Mh736Mx7fdMZDxe1HUIRgDE2TUkSzdeQHmbsXIhtqDfN7b61davwJtkOp68Z3 + AuTP54DV60Ma8msAP8Th/wc7t4CwU6hf/ANLnTIPhPoHp2tFfgvqdH86L/R/M++W56hreVpw9fue + i3A9rl8GVxdGAih+YAoh4pFrZMOMXUDoS7LTqVSsH0avWnfE645rj51d72f9ES9Z+wliR9aGgJv2 + A8zlrDZ3R84bbw+Y62YY0lwPhiUtw++A/Mx1eZX6b73Yf5WpO9b8zXW3tf9NvbexB2Cue/2JGrza + 6Km2gZ1D96ywex+EBnyabq21egUWRsJpLCKctff3BYU6zXTvsbtEZSjJFxEAx5X/G4nz8IymFWtG + sc7ytUEFk7776NovMoTWpoggVLlrfya3QapDjYiUkcLViaO278Z803Dt7W70KJluv9mjDXHLQyl4 + feNWDF7b3i2SStnqlo/jgi2Vt06M+DjUr1eN1wXeNG4s7l2Tqr9DhXZdSbapANt2eeUO1y2u+oqn + r3j6iqeveG7+u6XmumV905cbfbnRYYO+3OjLDV+NfbnRlxs/cLlxp+LijpXD/wFQSwMEFAAAAAgA + MDB4U6seObcUDAAA3lYAAHYAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 + XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX2JhY2tlbmRfYWRk + cmVzc19wb29sc19vcGVyYXRpb25zLnB57Vvrb9s4Ev+ev4JwP9hZKIpbFNg7Az4g2932CvSFXveA + gxEItEQ72sqSjqLSukXub78ZkqJIUXIeTfpIbaCNRZEzw+E8fkPSD0hcJGm+ntdidfS3gwfk6NY+ + QOxJUW55uj4TZBIfkpdpzIuqWAlo52XBqUiLPCQnWUZkp4pwVjF+zpIQxr5IY5ZXLCF1njBOxBkj + L5+/a5pD8i/GzIP4KEiayz4lL/5isSC8KARZFZxkqg+8h6eN4ilFSxhZs5yBGMBkubXEm7w9JCe1 + KN6ySqiOz1THgsuhZzRfs4ps6JbEtJa044JzZLtkZ/Q8BbY0T8iHFKa2ZCQrgE66kvLFSC7FqRrm + 4e2qfcWLDRHbElaVpBvQsyAn+TYgJ9U2j58L4LnMWECe0CxT335PYxGoKaZxQF6XqCOaBeTdtmT/ + pjwgf+bQcqCJfaA8B9rVgeJEP9WchTB/FlLkEJV0bbPWXDdv6JolWooXaSW80exjzCTrqhn7JEtZ + LmAlzuBPGsu1+4PzAiT6pxAlLE8JvZlugsei5jH74yNQrzqNrwrxtABL0s0bWkYMv3pSlGnJsjRn + jQxv9HPDbHBAKDjNKznGnrotaCP2f2vWM/+yyLKu4l68ff0GmhnXintVvFG99LN+esnEWZHYFDfr + jRhS68nbl1INT6U/9I/SwuglpXwT9YkHlLQE2hjCMGw6bMDQs4rQikTq68HBOzJvbGoyfjc+PHiS + VfgMzY3RLRqzXCy6ml9Yygt85Z6CvSpbXlQC9ZVvT0/1n4ODOKNVRV4UNPmNZjSPGf+Nxu9Znpwk + CUSd6k1RZNXrkqmgVM0OCHxGo9GVRxCpKVKYhvBA0vhPUZPqrKizhOQFRqlKUDBm8HsIBxAHlGBJ + itEj24bkOXRgFBxl2w6MOcP+VDuEJhIjBVg/5GKRhWVWgQ8JYBSiQtD4TLXDatAcW3i6rAXTMs7S + c8r1gs0gHqfQTRSqQQkIo2uMxTLIgtRmmmTNi7oMFRmBa9mQ+Z9lUjkTHwr+Pjx/NH00jaa/RtOH + oTYKObCknG6AE85u1swS54DpAOI3REu57FXo9C/yVbqG/vJvrQUqVmaUIuiMgVcpzdJPjMNEofNS + Jgs10/adMyRhuwbZb8PGapRatQfMWwfA1oStSBSleSqiaFKxbBVoOQM9ocASJHDoH5Kjf5BXRc6U + eeIHCYSRIgCc1JfOW0MAOrTEOp0sPtDN5trlJYVEXvJLO6kMwu7E6RyYJ67DcCTNJcrphs0Iuqnp + kYGjRUvtaX0dfvnlPWSetbIYqQknoS1GWsvhbpfF1AMho87E6LRVI6zZMwYABIKPzNIoDWmkgS9A + BRxJUSEler52HctOeuf4DojhNzRLJNx0sv2m9Z0hNXVZ9Smry8mZQpfRgLbbXu/ZFjwWQo8Ox2BZ + GBpIXFdCwQtgxMmqzmPpdRiJDN4pMWIkUgoV2HBiKnsaBpyJmufSn1KhsBVY0HvWBjeYB0uBBr8k + bLcrihJpJcunFUo9aXgfWsxRfhOiPOwSuqBlcbVQdmXDO7UEoSnEVleSNmGHHsqxDdZ8j2WQUd4B + ibucjKFlHMhIcUjIA6Jmq5PtTRzFsJKYKQL0BAw/m1b8PJ4+nO0CbI+nj2dDaOzx9O+zPvhmGFz4 + AoR1mUC2m9jTNi9h8p8vDtsFp2UanTNeoaXOyQiX7mj669H0YatEGqPW8S0ty0zLfvxXVeSj1tMx + zJWcgROySKekSc4+ighwyvu51PfM0QrWGWDPvAYfOIO0DjI471VbJL2agRvgQn6+aNfMhTO7hy7G + J3IO41MZ553IH6rek5Ga5ijQ8w3IGKgDEnNIQ6mCWMXMzJ1Td15/vn3hva951giBaSEECSksF12M + 4Q0IaCaYrnOweW98ScVZpOo1AJ/regP2VHk213zGTdx8hmHzFehjPPM0AIwno54AC7roaW0UE/Qz + zCzX2cXPj7PAzm+8hFtVL6uYpzIoPE+GeNnpObSHRGkyCsiu18P8L3YtrcYdoV4olAL+BZCqe9fv + cKcZtYbsdQNH49sbOUnf6MUYwsGRDge9ziJHgK+0UQMdpn3q9xr86KDQVdCaCaWZriyB78auliBO + M9/91BoY/7xlhd36JFSub+i2WlMlEwZVmAmnsYgwRkyaijoymdvVgAVOEyOk1TgZXzWzQZ7wmTm8 + MHpFxSpiGdu4uDgJz2lWs27gRJzkabRDBVGJ3dSrLYeVWWqEOJhnrI2UDqke7cLKRUhhd65ql30w + xXUs3tMdjKUfKNSZjuFEZouE1/mENxU8GCCjm/lTmuHOSAPvu7owhD1m4RmgI/PkZTDTDeCkqKtI + brypEpwsHk2np/4ymV2hiTVm3kcoMOTN66DFJnPzzQ95EvH521eTQXoqis7dTZvOQmiT8VTU9tI9 + XGA7cYg0VhI43mi6qKk42RzDikzoMzI+tlNKdfzZzVkXx06Khvdeyr44LnlxniJEOjZbseErBbeP + 7YQLo7v59+J46W/OjC88nHHgOcYdVqxapEjXjRHWjVerbA1E94PXyC9ae4rV3K1W73mxqvjsUHeX + Xb+OXK67V+8bVMq+LQQ3LHgvK2R9Tt9JxdrjDvvaVH+GSjILr0O4u3IldrUK7KtVXl+n4hr7WWQX + r8EQASwH3w1w/gY13kWfjVy7pus1wJ5i7mY1ydco3nZt0txwg+aONmdutTK7W/R+E+R+fdR+14j9 + 1tH65bWrn+P6q1Rba17RqeE+ogFvqHOmlMhs5NUJdg/5zk4d3znsP/7cH8UvLq8HInXSGsFCqhQu + z+lAD99BldC68GxnffDldcUenV0LnUG6FSB0JNRNBovsyH4FYd2HbxajW8J4gya8R3575Od7xR75 + 3T3ye6KiwBFGy534rxMu7Ecj+w4+t4Ewl0WyjRrGKpRdbd72wB4B8PXEBqZ9OOdwlxiLsX6WE7Q7 + XAaPy/rq8BjNvYf5D46aA/Jo+vBHh85D85zPYXbT6x4R3QRmD7N/+DXY3z3Kvxw83F/sv2TrNPcU + cE+Av3uZeDdkdw4Ynkh9VLjRrBRSEbo/cPimBw6KuW0Vb1qMUtVYPeCRQqF+bqCuDpvl2712bXRB + 5u0t366oNvNbOFO48yOUhgHoUaKqNK/lvCJRgFCSldVKZCtqECgJygWYfCkdh6i78qSi5wypUbxC + 7XHRN+XBCnjN5DXm9p58QGTul6150XSVBznU1r66a69vGmNnWIoKL8ibdzAXYL/edgxDrU8jwVIu + I3dOa5qr/T0/IPCmkgKY0/0hFcCCn9MMICBbUTxvQtiDoogULH0Ja89QbR/UtCopNsQc6068ulkG + Bbvg26OTFdDTCAx/EVOCts11bSmFfUfUuhXqBjNlDapr1dwY9a3tS+6GOhpro+iNLd+7AHrl0zQn + NrcZQpuEu2mjWwFXoB1aGzfy1zyLpTxA9I2gFe5O9oEyXgASyujWJe2WxF2TG7sls1Psdvuanu2a + onMrV+/Ox4sF/vTML1PA4dppIBxrqYL1utfy8cPph0hbW6dEuHST0ZDwM968b+PEG+hnsHnPTog3 + bDAFzYc3NTwibXKYW3WV1w1saZ7RzTKh5GOwDT7N4I/XyUEy7cKax6E9PLmGvb3sotp0tLbn1W2p + rACLgsoNf+gWFbXAEvLLr6VdG/TjZ+hO2XXBf89YB//v9/9+pv0/O5CZX/ZVMlPMTMbfyIQAS9/5 + sd/EBPFAxvNCpav55/EqhUh5JIHR0XlKsUqUme1I1llHBgmML4J+O5v3tgakZ68ETN6RXQKrIeHN + DycnNoHe/rqhP9T3FuAuLggRJEZ+avHDu8t67j72REyP5LwVrC/A4k7U3N6W8ju1IUCRRQiOBjwf + iIKdQOyo8nLVTBxhrAwZDEXdoKMkxbK/Vv8JNinQ69h3dSzp7zW4SOiaIBKbf4ZDw1s77nMNYn/I + t0/yvhXvD/l+6OtdysV/lhteeFb1CP97fA8OrK55ZKN+2WOOaoaC+/3FNwrYaYP/HsFNZwtQwhVn + U+53KXsl9xqrksXpCnfj9ycm9/onGvvzhZ/sfAH9/g5OFNzq5z4dDrgz2x8CDBbyZuCPuPV/7/b0 + b7b53oFx+NnX2z9Bvf31NtWzIt7vo5vPfh/9i/bRVSq6j9Xl/wFQSwMEFAAAAAgAMDB4UyQmC73Q + BwAA2SIAAHsAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIw + XzA3XzAxL2Fpby9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX2Zyb250ZW5kX2lwX2NvbmZpZ3Vy + YXRpb25zX29wZXJhdGlvbnMucHntGdtu2zb03V9BuA9WCkV2iwLdDHhAlq1dgDQNsmzAYAQCI9E2 + G1nUKCqNG3jfvsOLKFEX1wnSdhsmILBEHp77lXmGIhbTdDkrxOLwu8EzdPhkDyA7ZtmG0+VKIC86 + QO9oxFnOFgLWecY4FpSlATpKEqSAcsRJTvgtiQM4e0ojkuYkRkUaE47EiqB3J5flcoB+JcR+iDuB + aKpgMs4+kEggzphAC8ZRomFgH77WmqZiLSZoSVICbACR602NPe/iAB0Vgl2QXGjAtxqQcXV0hdMl + ydEab1CEC4U7YpxLstdkhW8pkMVpjD5SEO2aoIQBHrpQ/EUSHZWiWuLB06p9wdkaiU0GVkV0DXoW + 6Cjd+Ogo36TRiQCa1wnx0TFOEv32E42Er0WkkY/eZ1JHOPHR5SYjv2M+MFg+Yp4C0nygSeBPBScB + CE4CLFGHGV7WaRpy63O8JLEhf0pz0TpN7iKiaObl2eOEklSACVbwQyNltJ85Z9xHvwiRgV0ygCZm + CT5ZwSPy8x1gzxuLZ0y8YeBCZnmNs5DI1xYXGc1IQlNS8nBuvktivQcCwXGaqzN10euMlmz/WRBX + /vVyLfqUcHTxTjH9RrmtUXoQBOX+GjwpyRHOUahfB4NLNCuN5o0uRweD4ySX37BcWnVe2n0+b0o4 + rzHpt4W4AofQzjLPBagSnOrqyvwMBlGC8xydMhz/iBOcRoS/4SwVJI1Pzo9ZuqDLQgd8/j4j5m06 + QPAMh8OHHUPK3RCzC8FAIfqDFShfsSKJUcpkQsgFBveBEIPIg5DTLMZUBmqyCdAJABAMrrmpDkac + SHhsXNAgiSQGsIGkUkMLptI5RiKQAY+FwNFKr4NdcCpXOL0uBDE8Tukt5sZ0U0h9FMAE0wuaQThd + yLSn8hlwbcVES86KLNBohLRqieavmjOlRHxk/Ca4fTl5OQknr8PJi8C4hzqYYY7XQElKNy2llDLI + zAupEhKTcoA8cOCVKQC+bhLEFvaURuicgS2KE/qJcBAUgK9VXtaSVnvOkZjsOlTfDUrX0Wo1sTCr + QkGuxmSBwpCmVIShl5Nk4Rs+fSOQX2PEd/AfoMMf0BlLifZR+UgEQagRACX90ti1CACgQtYAqtEB + sDrVJi3FpKSlXiqhEkh0ngPs2y9uEl+o3CVM8ZpMkQxYC5FAtIXXJty6AJ4/v4Fcv9QeozTh1I75 + 0Gg52CNuZcaHDFIkYnhV6RIM95ZAwYdcpKqiZAmVLKGFQYVOzo3ohRvpNZfpFPcSUMo36aESfQlU + D6EqjPo01iTVpbcmJUeQJqEexVdQN2QDwQtZyORocDKZJVBU5EIXdSAE+inSSAWgTEq2y8hk8ogV + FzrHScF06bIEOBEFT1VoUaE7GnCmG1LlOZCDUMDB98nllXElW0bT6mshWfdKBg5qHEghbMpqdQ+B + 2zbM90ttD3PEqxo3mELCddmpKnHQajbqDmzfI5V5dMgEGcu8EayMfJU+DhB6hrTIphY/OnosPdW/ + hNDJANV7uyqfV5MX013N06vJq2lfZ/Rq8v20q5WyBLZtBoIii6EOenXZ7SZo4H57UJkeZzS8JTyX + jjtDQ2nEw8nrw8mLSpM4kqqXuzjLEsP7+EPO0mEV+DIBZpxATJLQFCsvJXcihF7mZqaUPnW0Ipt9 + cG9eQEisoOADD86+XgtVkBOICmnN+21lOLfl2X10PjpSMoyuVAVwakKgob2hFnPoG3l9NALs0K05 + qGFekF2MlcyVqSnXbxenrf2CJyUTsmAEwCEGc+H5CHaAQSsgXabg+K3zGRarUA9NIdi3WIM/5S2f + K59RmUbfyix6BvoYTVsaAMLesCPfgi46VkvF+N0Ek1r87KLXTrtArr34GWp5cZ1HnKrMcBL30aoX + 7qB+JKTx0Ee7tvvpb3eZ1nQkgTGU5AL+fCjinfY72OlGlSO3wCDQ+OZRQdJ1ej6CdHBo0kFnsKgT + ECtV1pABU311R418TFJoKmhJhNZMkxe/HcauliBZk3b4aRvY+HxihT25ELr0l3grrelhSiZVkITj + SIQyR3jldBvaGu5qoNa2xpbJ2qI3elB5g2LRpugQlCksZIuQJGTtts1xcIuTgjSzp+ydWmptYJFN + Sn2pU2UOKWtv2fHIYlO72Wig6lAxmC+UGHYXrMr2vXWu4fYt3cFZ/BHDGOp4T2jvLHiRerwc9cEL + CV7P3uBEXlWU3X9TFxZxi1iwgj7JfrXKmAWDFlMUeaiuwPSEjuYvJ5OrtpnsNY1XOzPrQuRb9Hbb + rxqUmX1r5z3V+7Xvk7xefDqVztx7mYYhjMu0VFRBGQi3z/UcJKWX+E5IWhAtilPSZW5RVX2KRuN6 + XcnH927h2o6dOg37rbq9HWec3VLZJ43tpWhwprvvcb3qwulmEd6OFz0XOKNtq+MYtKLjC061JV8h + zUJnqtxvBLZte08uG7an2z2n2v/4UKvpfE77TZo7tOXS38Os32DA7nES/5Fz8ufm3x5y/5BBty9i + /h9pzdM3ydXafMiNew9w+w1uX21g+zqD2qin7uwiuDt3APHdAD2MfINJcdvlMg+eDDv9sWMkfNxk + 8zVGwF1XPY+85vlCVzxPOt992fb/Ma3/w9v+L93yP3m7//kJuKfudc+6ddW1RlczNMheoXXU+cdV + rCpUa9qoQ6i9ejn5NwwP4/sd6X3bMVr8DVBLAwQUAAAACAAwMHhTVs/XT9UHAABcIgAAdQAAAGF6 + ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29w + ZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJfbG9hZF9iYWxhbmNpbmdfcnVsZXNfb3BlcmF0aW9ucy5w + ee0ZbW/buPm7fwXhfrBzUBS3KHA7Ax6QddeuQNs7ZLkBgxEItETbvMiiRlFpfYX32/c8JCWRouy5 + Qdo7DBMQWCIfPu+vzDOSiowXm0Wt1pd/Gj0jl0/2ALJXotxLvtkqMk0vyHueSlGJtYJ1WQpJFRdF + TK7znGigikhWMfnAshjOvuMpKyqWkbrImCRqy8j7t7fNckz+zlj7oT4pwgsNU0rxK0sVkUIoshaS + 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 + ZKCDoVFzGFp9QzQC6jAttUjDvK4mDadZW6euXn9cnHn3Jc8qIVRRj0BCDO7C8xHcgIBOQbrKIcw9 + /ALLdWyWlhj8W24gnoQXc9VvVBXEl6oenoM9RlPPAsA4GPZUTrBFz2llmLCfYdbIlkP8/AIK7PzD + T3AT5UIknOo68Crdx6vZXKMmSkzTYYgOXe/nvzvkWjs1RNZRSgr4F0Kj7fXf0cEwqgPZA4NE49t7 + JUkf9nwE5eDYloPeZNEYkCt11VAJU7/1Z4362aLQNdCKSGOZriyhn8ZtK0FpJn76GR+4/Hxggz24 + EqaJV3Rrq5mFRxVV0ITjRMaqRgTVdhm7/ty2QGO0TJ2QjcNgdKCZQWvw6bfIq4IVs2VMMrJpD7Jp + dIOzknRrpZp5PCN2qKhxo3nUa6AWK+ddNbuo1tL4jtAh1WNQcFasKBxuT7Wn93a1TpB7tgNc/B7D + YtiKldh9IeBlHvBqsYaYI3gze4Ez9WGgmse7tnCEPWbRGmYg9+Y1LQcGo6EsRaw/OJmdGc2fTiZX + vpvcR5GggTPrIxQ68u46rMeRmXvyq5ye6/yvN8FeeqZwztpfQTqOsCHjmaiGshDtiTVoEamiJGwl + oAMxqrQauKokuodP0Wjc7CJifNtuU7txqyvDvdeld2NYkm6omorG7hNkdG7m6HGzxwJ2t+VqZNiw + Rjtvmhh4ufAFt0otxd3WTTds65o09DfJng3yP75AGj5NG3bpWyu06XaM/g0WUu3C8J575af2RU38 + O1kMTaz+vwLa377NpzEWQ72588Jzt0Xnqy04X2exGen0PUS+zm8gW7/sIfcN9qNdn+M/ex/qjaqe + Reh+8/zXWHwOfeC458eNL/Rh40G3mi87Bt9nBP788fdLj74PPvZ+eu/Tvap/w2saylvY7KisereH + 2voPlFR3FW/GbkLou2YL+P5G5vGtK8C7nvH5X1BLAwQUAAAACAAwMHhTkDH9sqAMAAB4aAAAYQAA + AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlv + L29wZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJzX29wZXJhdGlvbnMucHntXHtv2zgS/z+fgkgPsL1Q + lLQosHcGfECu2+4V6Au59oBDEAi0TDvayJKOopK6Rfaz7wxJUaRE5Z20aSWgtUUN58Xh8Dek4ick + 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 + SyHP5OshjwxQIhi41hHTKVh+6Bq+W2C6WeyzuxR793j4+lX8h0HJar+9bc+DhMitA/1rgPJgMHgh + rSpxH1SZVRL6JF7KURJsX39s1umyQgSL+8m5+oMg9UcAxknO5r95/6Otgc38GzaO+9eH+teHdvz6 + kImyO3iJ6NaR/jjfONp+9NK/gXSDrSfD4h7fRWpy9tSC9h2yR/fK0g7hZR0Yt38DqgszPX0dpNlv + +TzON6XkArAvIfi+WSD716ZkpPevTX3La1PtZefHK0f1cinosrzfGvQTSPwgMffWGvTal6l+14Wm + XUShNX2t6akulWNccV9RWDZjd4+FZf/C1VN54ephnSBaGbI/M3xIANIzVv2ZYX9meI9nhs06eGdn + hlTEZ0/81PCRnRU++MM234L3wOsZrGRSwCoRgM9NZcyG863699F8aAt/texYYsvWQZf8Cw6QJdEn + 0JNaY/3HG5ZH7Drk3jAy7uIL9ft14Jdz5uzpd/btGzO/ZQff/i240P0RuNtv4zcqdTb0vzsGt6Pi + CaDxG+FonIAFZ7AUYfKR68UoY59FBOnofCp962atbbAFr6+ELt6uu4EVeMkzNUGMZd096U0FRX1Z + YLVOWDeuKurrZtVFfX0PcF5fV9vsvzVY3+ZrD2avr6/D7pt63wWGr6+d/qEBXt1N0WYMTBDv2GE7 + N0LjFM238VqziQmWcBqLCCfRTg+nmlTvB2Y2Xzmd80XEUrZyf3hvHl7QtGLtTOI902pxweXXbrr2 + ECs0w4prufoVAPMLrC1WHk/iHjhy2J68myHemPNb0X23hYfS6fbFhx6IWxYgeN11ESIt2nUhYoVM + x0WdssBFcO7JUR0lgTPzDIkypbO83aaGuGGBcF098PVHGndSLVhb8bpSaB83fJczi74s6cuSviyR + V1+WyLLkrkuS+zr4MAL7GqivgTxj0NdAfQ3U8WRfA/U10A5roO98huIpkf4PUEsDBBQAAAAIADAw + eFPm7L1VxwcAAOAiAAB2AAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18w + MS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZhY2VfaXBfY29uZmln + dXJhdGlvbnNfb3BlcmF0aW9ucy5wee0Z227bNvTdX0G4D5YLRXaLAN0MeECQtV2ANi2ybMBgBAIj + 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 + dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVy + YXRpb25zL19wdWJsaWNfaXBfYWRkcmVzc2VzX29wZXJhdGlvbnMucHntXXtv2zgS/z+fgsgeYHuh + KGlRYPcC+ICg+7gAfQRt94BDUAiMTCfaypJOj7TeIvvZb4akJJKibOdhx04ooI1NkZwZcjgzvyEl + /0DCdBIll+OqnB78vPcDOXiwCzp7nWbzPLq8KskwHJG3UZinRTotoTzP0pyWUZr45CSOCa9UkJwV + LL9mEx/avolClhRsQqpkwnJSXjHy9vRTXeyTj4w1X8pvJYkSXifL0z9ZWJI8TUsyTXMSizpwH77N + BE3O2oSRS5YwYAOIXMwV9oYfRuSkKtMPrChFxd9FxTTnTa9ocskKMqNzEtKK9x2meY5kL9gVvY6A + LE0m5GsEol0wEqfQTzTl/IXYXYSiNsT9hx32aZ7OSDnPYFZJNINxLslJMvfISTFPwtMSaF7EzCOv + aRyLT79EYekJEaPQI+8zHCMae+TTPGP/oblH/kigZE929pXmCfRd7AlK9K8qZz7Iz3yKFIKMXqqk + JdXZGb1kE8nFm6goO63Zt5Bx0kXd9nUcsaSEmbiCP1HI5+7XPE+Bo3+XZQbTk0FtJovga1rlIfv1 + G/ReGIXv0vK3FDRJFs9oFjD82OEiizIWRwmreTiT32tivQ38MqdJwduooquM1mz/r2IW+bM0js2B + e/Ph/RkUs1wO3Lv0TNSS3+W3t6y8Sidqj7PLWdk3rCcf3vJh+I2vB3sryYycUprPAht70JPkQCqD + 7/t1hRkoelwQWpBAfNzb+0TGtU4NB58Go73XcYHfobhWuvNaLc/PzZE/VwbP6w7uZ9BXocvnRYnj + lcw/f5Z/9vbCmBYFOasuwBycnp1MJmBqCla8z5gwQ8XxHoFrf39/QR3CR4OkTYG/x1v9N61IcZVW + 8YQkKVqioqSgsLC2YcnDWhfEJxFaiHjuk1OowCgshnnbMMwZ1qdS6WUnIfYAc4RUlG5hKoVxww7Q + 0tCypOGVKIcRpwmW5NFFVTLJ43F0TXM5KcdgcyOoVqaiQDAIrSu0t9yQAteNmOQyT6vMF92UOF91 + N38rapOw8muaf/GvXx69PAqOfgqOXvhy4nnDjOZ0BpRQuuNaSpQBTT7YaLCIfGoLX6ufJtPoEurz + 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 + gD0ansAzH6F+thIm85I5J0DrT3kqW9/nvMf+PUjf/SHIex76VPI1jn+eFl6xnfYnQC63whwYXDLO + YMlhyJUpc5iwzyKAIHw5kYZ2Y/W6yg2vb6zeWodup7LCSx7UCmI0ax5MdIGv8rLq9fZgfGs8Vl63 + w2Xl9Wj4zDD8DvCovG7Wmf/OcGndVLegpvL6NvTUNfohUFR5bfWvi/Bq7rdXc2DW0JYNtnUldHGo + 6VZWq3bBQRNOQxHgqn2409Iq7bSXxjYTGVrSecBitnR/CHTmX9G4YPWo1nrIWqOCRYLdtPFU1Tdz + jBWH+okP81vRNVItZsWzFqSwPpFU892Zf2qu/rA4UMl0dyyoJ+KOeBCvh8aEUqNt40LLZRomagAz + t850TyhLL/GcZWi6KFU2pNongOk2obYujPZgCEz+egMCsLVHRRqE2UayIViPi3pc1OOiHhfdGRc9 + NArqQUkPSlrmoAclPSjpQUkPSh4NlHwTBNkSvvgbUEsDBBQAAAAIADAweFO/MCxMHQwAAPFWAABh + AAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9h + aW8vb3BlcmF0aW9ucy9fc2VjdXJpdHlfcnVsZXNfb3BlcmF0aW9ucy5wee0ca2/btvZ7fgXhfrA9 + yIpbFNi9BjwgyNbeAn0ht7vAYAQCLdOOFlnSpaikbpH99p1DUhSph/Ny1jaxgC02dXhePDwvsn5G + wnQRJatpIZajfx08I6OdPYDsOM02PFqdCTIIh+RdFPI0T5cCxnmWciqiNPHJURwTCZQTznLGL9jC + h7lvo5AlOVuQIlkwTsQZI+/efCqHffJfxswX8VmQKJEwGU//ZKEgPE0FWaacxAoG3sO3taIpWVsw + smIJAzaAyHxjsTc4GZKjQqQnLBcK8LUCTLmcekaTFcvJmm5ISAuJO0w5R7JzdkYvIiBLkwW5jEC0 + OSNxCniipeQvRHQRimqI+7tV+5KnayI2GawqidagZ0GOko1HjvJNEr4RQHMeM48c0zhWn36NQuEp + EaPQIx8y1BGNPfJpk7H/Ue6R3xMYOdDILilPAHd+oCjRLwVnPsjPfIoUgoyubNKa6vojXbGF5uJt + lIvGbPY5ZJJ0Xs49jiOWCFiJM/gThXLtfuM8BY7+I0QGy5MBNNND8DUteMh++wzY89rg+1S8SsGS + 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 + HzDKKZOj7TmyqtD7G2wvPk7WHHIXEM6CEoTeX4Ny7LEy8tRPhLFFkCZCmd33T3PgjG0wzlYL/o2c + 146cCQKbPXOma/oWYT978OzZHjyrWtenP32mc/RsjqBV3aQgbc+htahRChL2JBrZ35NoS6UnpVLZ + 42i2LGj/AFxJwJ5A2+cTaFVHd6BFEJelDW4MqwLijrwYJtbwl1K3Xwsx/B22OLxibF5yLj8i5zL9 + 7NwWpbtWgCQGRN+POCIVCylu/02Xc3TWwooHFj+YFMDCihZWXBlWxMBOThXEdghn1VPgpdHHBf6p + Oy+gqQymIVAWstx/yJLdNubcZXRTeHvz85xLIJ6MHGdj9+BP3MK7gHS2CiB2O9DnxkUxN61fnGmQ + /fAC/UrpWw/3O50Oo5kSPg2kmAYCEfD3wI8lHrgvoOKO/bm7PxqmvrJIsRlx5PgXb6twLVe2vpJr + gAwX6KpFDi1yuCnkEBd6/SChhhQdEtCnCWaRvJaFP0HGonlk39C8xdF2qUMWuLOFNwvclQQscLfP + wJ3Jrx1uTg/iRvEOwndzkvkoVnJ5C9YdPljXqKAWqzuwkMG0/hars1jd9o4Aznc39iCgRdXkZVG1 + daNqiz39jgfgaCxWwtRqku978L0YQItii58tgZ9d7jx+FsU7AJ+pCmrRM4ueWfTMomeM311Dz1qU + 3QQVC54RC55Z8OwZVcIseGbBs70Ez2pu7XBS9/8DUEsDBBQAAAAIADAweFPAZ7WAkhkAAKH4AQBr + AAAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9h + aW8vb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3JrX2dhdGV3YXlzX29wZXJhdGlvbnMucHntXW9v + 4zbSf59PQbgv7Bwcb7oocPcE8ANst+3e4rbbILsN8CBYCIrNOLp1JD2SnK1b5D77zZAURUmULDu2 + I9kjoN1YosiZ4ZDz50dS37FJMPX82XiR3J394+Q7dra1Cyp7G4TLyJvdJ2wwOWW/epMoiIO7BO5H + YRC5iRf4I/ZmPmeiUMwiHvPokU9H8O4Hb8L9mE/Zwp/yiCX3nP36/nN6e8Q+ca5/JH8kzPNFmTAK + /s0nCYuCIGF3QcTmsgw8h18Psk1B2pSzGfc5kAGN3C4N8gZXp+zNIgmueJzIgu9kwSASr967/ozH + 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 + KJlun6zoibhlwoLXQyctUqNdJy6Wy3gm8vIHF9a5p021lwTOAjRdlCreLnebZON2mcRX84f5JnIr + aXc/H3lq+cYjnoEMqc2Q2qhrSG2G1Ka52qmNF20fOtF5rEMWw3DIrIbMqmMOhsxqyKyGzMqaiCGz + erDMqn+T/UsPdTpSsf8DUEsDBBQAAAAIADAweFOtrMKI3w0AACiEAABjAAAAYXpleHRfZmlyZXdh + bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9f + dmlydHVhbF9uZXR3b3Jrc19vcGVyYXRpb25zLnB57V17b9s4Ev8/n4LIHmB7oSjposDeGfABQfdx + BfoIcukChyAQGJm2dZElHUU59RbZz34zJEWRejhOmqROIwG7sSRyXhwOf8Oh3R9ImE6jZD4pxOzg + 73s/kIMHu4DYmzRb82i+EGQYjsj7KORpns4EPOdZyqmI0sQnx3FMZKOccJYzvmJTH/q+i0KW5GxK + imTKOBELRt6/PSsf++TfjJkb8VmQKJFtMp7+l4WC8DQVZJZyEqs28B7uloqnFG3KyJwlDMQAJpdr + S7zh6YgcFyI9ZblQDX9XDVMuuy5oMmc5WdI1CWkhaYcp58j2ki3oKgK2NJmS6whUu2QkToFONJPy + hUguQlUNc/9hzT7j6ZKIdQajSqIl2FmQ42TtkeN8nYRvBfC8jJlH3tA4Vp9+iULhKRWj0CMfM7QR + jT1yts7YH5R75FMCT/Y0sWvKE6Cd7ylO9M+CMx/0Zz5FDkFG5zZrzXV5QudsqqV4F+Wi0Zt9Dplk + nZd938QRSwSMxAL+RKEcu185T0GifwmRwfBk0JrpR3CbFjxkv34G6nnt4YdU/JaCJ+nHS5oFDD82 + pMiijMVRwkoZTvR9yayzgy84TXLZx1bdFrQU+38Fa9E/S+O4brh3px9P4DHj2nAf0hPVSt/ru/dM + LNKpTXE5X4ousx6fvpdm+E3Oh/ZeWhg9pJQvgzbxgJKWQDuD7/tlgyU4epwTmpNAfdzbOyOT0qeG + g7PBaO9NnOM9PC6d7rx0y/PzuuXPLeN5TeNegL8qXz7PBdorWV9c6D97e2FM85z8EXFR0PgDE9cp + v8o/ZkwFoXy8R+Da39/vbEGkJUhqHvh7ss9/0oLki7SIpyRJMQrlgoKzwryG6Q7zXDGeRhgd4rVP + 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 + RWbEthMDWTyZTq9njRhxI+DYuz/vQxI41O44qLPx3D1NGvhNCevOqeODuGx8zJvznmdBr6NMnBm9 + zfHIK1xQBjq6mzTUhS1Dk2FT801R74A2uujElBjftQygf8Oc+fUAfd+UhBkZnfo5WJ1+bib5/Wkj + +cJ5JxnvT3Mpthyj7dR9rgkvbI9xWuY+APSS6/7US4n1UZUg96N9p1S5WSOFqhzd7KIqMT5Md95t + vhtfaur2BD+e+BP0penHhteNthwvwaQKHR+2bL7sGA603WPjpEjxmmnY/6O9+j/WNcOEy7X9UAjO + c8vqzw3APOOAQ5J+K35lj935+hY2P7st7tiL9zN17ZH9ln35Icf/v0W3C3NVLhmEDyZuU2zHGfuo + TSM3N9ptZvxj3Quur+xgekHvp4vBBbULq7qTrClTWy5/VqmW17O2c/udB5hq3W2Qqda3Gmgc/X9q + sHEEH2bAwbU/ZtcvnkWO+VDPSFKtrxtNDkE/xIhSrXsdAHBBSmbd2LM2cMF5zwq7dyHK3rXEW2ut + /hwLkkga6wiTQrcxbmXUv+/R+4tYf7vuYzaJSiwjlrJN8/NyEm5pWrB2juz09z1YsLnwt3p10yDl + DIudCpYU7z96LVQ9ugQ7RYjheFmqjXywmrX8+2HnUcvTl8+kpSG+cC7F9dCzqZHovudTz2U6KuoM + i83+dNxAUnlJ0Ig9d8WKcrBw/7smzZ658i9QSwMEFAAAAAgAMDB4U/w2WrcoCQAA5h8AAGoAAABh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9v + cGVyYXRpb25zL192cG5fc2l0ZXNfY29uZmlndXJhdGlvbl9vcGVyYXRpb25zLnB57Rlti9s4+nt+ + hUg/JFkcT7oU9i6Qg2Fu2yu00zLb7XGEwSiOkmjrWD5JzjQts7/9nkeSZcl2prvc3oeFCwwTSc/7 + qx7lGcnFlpf7Va1387+MnpH5H/YBYjeiOku+P2gyzWfkLc+lUGKnYV9WQlLNRZmS66IgBkgRyRST + J7ZNAfcNz1mp2JbU5ZZJog+MvH39odlOyU+M+YX+rAkvDUwlxS8s10QKoclOSFJYGDiH1dHyNKJt + GdmzkoEYwGRzDsSb3s3Ida3FHVPaAr6ygEIa1AMt90yRIz2TnNaGdi6kRLYbdqAnDmxpuSUPHFTb + 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 + 4XTsQrsSE5Ilk0HMQSUgP8b+QcBzmeaymcENqwfWlgDqU7lFEojPrjrXeJ9hde46ANvXyJQTHdv4 + tVIOEw68DMQD6/c85QK5duKTb/1FBM5lpIL76DKiWCTEXMu4f+2169KkddQjLWUfqGuFUpUPtJBq + m0IDd2/rUjPQ7gtb6ycb4XzMaIKm2226wirWSfVjq/eqgZyUNLX5LiylJ25d3VxUXgxrsJgvzmh4 + MelwMDUfV5HiRqkMKnQ4gcPr8mVeTT4am1uJ/SjVZ6Bvdr/zm3j37scu6JkeiX+LvluZ192tprXZ + zJ2Q3zkHvCfaH6Gl4OY1VdH23CmIWc2eg4NoW42JqlntGhO71KdNS3aNiYdpTBxpix+h89zYnqi5 + BvejpX0Dnm00QGZ8vg4KxCYm3Yhvd2MLATg9cANn/xYxw2G7hb5pUUUqzt0Ff9XWwTrypj0dtIMW + 5E+71fPUuzzOtz102eN82aFLBpMJcH5QZbwGp/HFksGttNVrHtS9OlMudbXLCbPRXaG7Vx0R/5nX + D7pmMrncrni4YUPsntVDr9f7rCS+66CVSJ9QB03TUOrlmByXOU+WI2rskXGi7epGxJTezT3zoqFT + p8/FfbNvXd5GVXe9wl2vcLu9wlso33Zbits3jmfXoLxnMPuhO5pdt692y1PqaJZBZeLkXM+/8fmY + tQw+d2u0Nmualr2VsmZ3K/n8byUfpSGr4tuIZuskHNm8Yded3XVnb9+d1QHzR7ldAQF9p5cqd7sB + ud+tC2S9b5nc3XmUSJ/QnceD3wTYuvLmquXdsVZ8kKsSXQyOb1wNthaDj1u6Pd9vE2zrewDgwHe9 + /12W3aIZu97/0/ulREzHnv1vJD6zDvXT7yy7MeSZ1zsxBPtHL3juVsoUf9vmTjnUe+DzROWc1a4u + jmcEMuRNeXemyppdZUMetapISCT1XwgDLb1gld7V7ZtUpQLcq12l/oCWb/9y1gN0q0pCG32r779U + aTWzH7xoQTebCgYmi2FJpRqDhH2RAQSqi4kSfjWebcra8Llj5ta6dTvZGz6qJy2J5azZLemq3orH + ydUxLN24jCuem5VzxfNoZZ1F+DeVdxb/31CIFc/1psO+dWG2SbFa6rPiuVud1rX7Ieq14tlqNYRP + s2lQnoG12C0LbOtMmHTdwK06WOBB0FAG6C8et31chrz20sVFjG4t4IuAxWxV/UNuc/+Sxjmre9TW + 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 + jYvj1tp4/6sYDzGBh6Czn7p/99VXi+L2U/fHN3XHDP/Dj9wf+6D9kX6J3gzkj670jSCHfn3te7dq + tvwN+C0VxRsg70xWU/bX17+3CvebFZ04mhXqj3GA7i6ZNajt+kJvJcWvGtTKv0jh6j9Fcedv9lbk + NKa830sl22p3P3lNi+Ei5Qy8CgOmTHXDmH0UHoTQy6kUsR1pt1UNeN2xcmg9upvqAS/5ykQQzVlz + eNpV3JeXUStieL1xlV9eN6v2y+ubVf0a4QMU4uV1vU3Yty7Mtym2pT4vr7vV6V2n76NeL6+dVsN4 + NSeLlQ60x+xYYDtnoijkCrh2gAMeOPWFh/56H9+JrxJLe+lqgsfg4SULj0Vsbf8FksC9olHO6nGr + 9VVPDQrme3Ppi9+dd7VesXhQr4awBKlBabyuwmPb80Ol2M60UrPp+2rIFDW3b8oKud+yMcPrvpsz + ydGuGzTDQhoiavRJuk6037SUpuFYrqa3KC6stPmgPdWXeicPCv6u/umBuiJoKpq/lJqhLVJiysts + lfb9y75/2fcv+/5FXrX+BUPcffcw+5Zi31K06GDfUuxbCrJvKfYtxW5aCiuT3aat+Oqe4R9QSwME + FAAAAAgAMDB4UypJIoZMDAAASVcAAHMAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9h + dXRob3JpemF0aW9uc19vcGVyYXRpb25zLnB57Rxrb9u29nt+BeF9sD3ISjoU2L0GfIEg67ri9oXc + 7gJDUAi0TDtaZEmXpNK6Rfbb7zkkRZF62EnqdGtmAW0s8vA8yPMkaX9H4nyRZKtZKZeTfxx9RyZ7 + ewDZWV5seLK6lGQUj8mrJOa5yJcS2nmRcyqTPAvJaZoSBSQIZ4Lxa7YIYezLJGaZYAtSZgvGibxk + 5NWLd1VzSP7DmH2RHyVJMgVT8Px3FkvC81ySZc5JqmGgH97WmqZibcHIimUM2AAi843D3uh8TE5L + mZ8zITXgcw2YczX0kmYrJsiabkhMS4U7zjlHsnN2Sa8TIEuzBfmQgGhzRtIc8CRLxV+M6BIU1RIP + 9zvtS56vidwUsKokWcM8S/Lut7fPorNfnp39+8Xr50em8QPlGcCIIz2Cfio5C0EOFrKPMStwokSF + 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 + Hb+HuePnup97u1eootGEik0WT2wM310y3F0yvP0lw2a8ezQbDWkivs99w6+r9Kuf3bhJbvYGRDlR + U+yX/OqCIZhZ5QwF1vn0b/zlsO92ERDrHql/iwgM7Zx5VdC15U49n99U+Khf5gntT/J8e91T89Wq + gH6424Wda+LxnmPf6AQa3R7oC1Ya5p7qBGSUsUuICUl2PlO69kPLtoM5fL7ycK4T9W4OzvBRWxWS + WMnayXjfUXz1OMexGCZufPpePTfLyavnu+XmdsD7yNEt8f9DWl09V9tm8tYH69uspuN8vXq+7py9 + D/s+ztur505vMuLTTk7rObDL8Y4VdudCmHza0PW9J8jAaSwjdAb3utNQh6/uPQd3HHRRUb6MWMrW + /q89LcILmpas6R07NygaVDDPcJuu3ZEI7QRj0qK/AIk5UINKaw8H0bZHoXqGe4NXw7jv6zaA5ub2 + NwKM3m95uxaf+74UoCS664sBjoW0VNQ647b5qV+1V6YReGuusTPsBecfsyDtKEH/AlBLAwQUAAAA + CAAwMHhTb3xBsbIPAADI0QAAZQAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jaXJjdWl0c19vcGVy + YXRpb25zLnB57Vzrb9s4Ev+ev4LwfrC9UJR0UWDvDPiAINvtFddHkM0esAgKgZFpR1tZ0umR1ltk + //YbPkSREiU/6ri2QwG7tSlyZjgczvyGw/gH5MeTIJqNi3x6+o+TH9Dp1h4gdhknizSY3edo4A/R + u8BP4yye5tCeJnGK8yCOXHQRhoh1ylBKMpI+kIkLY98GPokyMkFFNCEpyu8Jevfmpmx20W+EyC/5 + lxwFEeuTpPGfxM9RGsc5msYpCnkfeA/f5pwnE21C0IxEBMQAJncLRbzB9RBdFHl8TbKcd3zNO8Yp + G3qPoxnJ0BwvkI8LRtuP05SyvSP3+CEAtjiaoM8BTO2OoDAGOsGUyedTcgGdqmTublft0zSeo3yR + wKqiYA56ztHNH1evvMt/v7r8z5v3r09E42ecRtAnO+Ej8F9FSlyYB3HJF58kVFFZSeAyDEiUg07u + 4Z/AZ1p8laZx6qB/53kCikqgNxFN8DUuUp+8+hJkeVZrfB/nv8awpqJ5jhOP0I8NKRI8U6bwJifz + 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 + 6QL2a0Ft3J1ZziBPYXSSKWWQsAsRQLw6k78N1jiI3oRp8Lklrmmduh3MgY+8rhPEaOaee6+rOcrH + QrJlNLt24VE+1ytAyudHIPfyudyk/42R/CZbtwD68rkdsF83+y4Afvls9Vci8HFPYKs1ME68ZYNt + XQkNZDTdeswBHXIaigC3z5Yvv6ow347abMpyK6fzgMVsWf+DhDP/nMYFa0aR1juzBhXMuXbTlZdk + vllSTODqV3ARATSoOBeJOG1ztK7WdG2Qb7jzXZUhSpqblyLa7jcsR/C565JEarTtssTyEMdETolg + sFr9Mqp0Da+2y8wQpYWTxG5SSly7TriqKPj+65IHVTo0by1+yNVHV6d0dUpXp3R1iqxT7rpGua/L + EsOwK4q6oqhlDbqiqCuKuqKoK4q+vyj64XcrLTXT/wFQSwMEFAAAAAgAMDB4UzScMypwDAAAa18A + AGUAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAx + L29wZXJhdGlvbnMvX2xvY2FsX25ldHdvcmtfZ2F0ZXdheXNfb3BlcmF0aW9ucy5wee0caW/bOPZ7 + fgXhfrA9kBW3KDC7BrxAkOl0iu2FbLrAIAgEWqZtTWRRS1FJ3SLz2/c9kqKoy03SJK1bC2hj83gX + H99Fyk9IyOdRspzmcjH6x8ETMrq3B4Ad83QjouVKkkE4JG+iUPCMLyS0i5QLKiOe+OQojokalBHB + MiYu2dyHua+jkCUZm5M8mTNB5IqRN69Oi2af/Icx+0V+lCRK1JhU8L9YKIngXJIFFyTWY6Afvq01 + TkXanJElSxiQAUhmG4e8wcmQHOWSn7BM6oEv9UAu1NQVTZYsI2u6ISHNFeyQC4FoZ2xFLyNAS5M5 + uYqAtRkjMQc40ULRFyK4CFm1yP37FftC8DWRmxRWlURrkLMkp3++fxEc//Hi+N+v3r48MI1XVCQw + JjvQM+inXDAf+GA++xiyFAWVFQCO44glEmSygj9RqKT4QgguPPKHlCkIKoXRzDTBV56LkL34GGUy + qzW+5fJ3Dmtqmtc0DRh+bFCR0qXDwivJ1u/pks2b46KUxVHCipHvzfeCqM4JvhQ0ydQcM1Xz8r8c + 1r3KWBMGj2OHutcn795DCwOG3vL3us8j5sMbJle8Qvd6uZZdoj46eaNE87vS1vZZBrtPxTqoUQLT + DVqzrr5fdK1B9eKM0IwE+uPBAShlRTcmBwSeJyTdAAQ5IfMoo7OYTfME1Hw+0oC8PFkKnqe2IVOz + WvTuKNl45JjGMQLxyG9RCHJVeykKPVxSoTveKRHQ2COnm5T9l4IYPyTQcqAAn5Jp0T7on/aHqvE4 + zrANuorJZwWis7O6Cpx1Luw5oNSEnWUS0ALF5+fmz8FBGNMsI695SOO3TF5xcfESNuwV3WTvUqbt + VzbgMzQ4Qy26Xq+3fTjh9qOv2fuT5yRb8Tyek4SjHcskhU0GM8FggKXQRMwjtC/xxievYACjc49s + yomhYDiemo1qgIQIAXQIsThgQdW0aUQAaKeolDRc6XbQDppgi4hmuWSGxkl0SYVRoAlY7AiGSa4b + NIEwG1VEm+HIYZMoXfE1GIlLVoD521HrRMvLv3w2fjYOxr8G46e+UVI1MaWCrgETcjcpuEQe0GGA + hQd7qlY38yvjebKIljBe/c0NQXxhZ2mAlTnQFdE4+sQEMAqD1eoaTsu+ypQ52zbJ7fULJdFiNTty + Wm5IbJ2zBQmCKIlkEAwyFi88Q6dnGPIcQrwKfKOF+OBEP9ATAYP+UOu1E2FACaQ2yIEPw1xsdVyK + OMSlPjjMaPUMuAjydI6fkDkAMqhA8Ow3YXxFoHQnSOgajASYJVSfCYGNakfGuNkCoz3BUm+3bRPU + ijGwPJkzoGfk77fs3Z6d+ssvF+Azl1k5D8yE6nXEXnQNfN8fktG/bgg7VGqg4YN5Twd9aOmjN0nY + sIRqrN7ZVqDnFqpyrAG4WID92bbi83z8dLLNqz8fP590uezn439O2ny8RXDdJMDXCz9wObSdwOfn + 6+HQzqJpFFzCCuFmnZIemoTR+NfR+KkjL55IIDqQ2gc4YHtuV88jPZqmsWHu8K+MJz0HUYjeF3E0 + Bh04KwrmA1Qohx394eS1bc9FrLaNUv0OBfdB1Sg00LM+DO+flysZLRPw5I5aylWgA9QAWMnXwEHW + WLV+sTFe4r54C4rcn9S3sg+IBr2WHQSyaN1XfeCtP/SqiOKmXm1D170NAeu2PaqQQxQYJUHMkqVc + TZ/WScnyWRaKSHn5V/MuClwT5LtTgmje88i27qYIrtsXWTsLs0qIFf55YBZaF2/YrkGl/bHd4LjE + Jig7cNmvS02pBieds876sG1GZtuApk0bclIzBj1nd4FgnG+FHNoJX0HM4VKtv9+a7Ma0s/6x3rAj + tGythOs5jZ3tfrW0b8FzpHb7VgzaIKBY1IemRGZ8vgkKxMYd3Ihvd2ILAdg9cH1Tv8WyO+y10HHW + N98Vh+4Ax6+qIKmu0WkutSrXdcprihH1vQV5SVmRXQXChNh1bIHNv0SeDEQRlYPIGF1Pf6dxxjzr + a4cO7RZcA4W/gpDefitXC9IbOwTCX5lngcq/dZxNzp6Nxx55Nn56PqmYHJuTDpxJ0zZInoVvu73S + 6U3tp2EFvqAR8NFInAedsLRtmVZTw+GX+ZxOgbtxlTkngJvbpXEaB62a5zWFflP8Tx8FP4RLVTyC + yVwk2D5oTK0EzXMVfRwc1Ca6I1Tfl508WgLl5yekf+g6mezwc9WLXR9WPDn0Nzz79WEq+GWENvfQ + lqZ8I5bDFv8MQDq89nX/uhF42OB8xpbgfOu8/QyRuS3a3DSchrztWMkJ0ltBtKAgXdasEsMqMawW + BcksZWG0iEDZC9kVGbGFa9LIFtlOyCmAwE+YtSK4OhALQ0XCrSBcIRtU3YvTxNjKXR3xNoAt+Mu1 + npD3ZQSR5RiGg6gk18VSXdawwu6QtK011Kly0dys2tCmASXQC7aB9jkJTaVJWR1yRMI8k7r4pYhd + 5EmoKg1YfbFV4BSrJHPFly7mWJvZRAAiU+FNlOSKsUDyC5YoVE4rUa0oLIAkqZCgi6nSaF2MoySj + lwyhUazkNLCY0iEsuciZqqaU1UOPKE+sWhNeDPWQPVra2aL4aAoeOBjWIsNynO0DXgD9clPTAb1A + BQUzzmOE/XezxupXy6gNLiIIqMxQsMiw2Jc0hjCMLWgeY5UbbDRQISPQ6BmsK0OJXWmOMkUx2AGn + KofOBBg+YVJsRkcLgGeCIKzap3hCURSMFBXaW6iqjy26wcaxtkXrgB6VERbB8ou2iiIyb/Y3ks2V + RxuUvq5EqK1Ym6BKg3Z3ZT93MGGYklUwleVqvxG+TFw7WVp1owXV4oZpBbeOqucUOFTZ9wy1oVY+ + L+l6mFJJLDhEITEsRAV2NRWtq1m/mqpWksz6WDuyXEvcy3pn1xlqbP0mf7bsDfurZAMjoRIqaCzO + qgVG9CowWval8kWVfTW56WCmbTFBY2K3g5huiRQaYEqLPnXihcYw0IhpTNezOSUfvY33aQJ/GoOK + qKHS4QSCXbUqtRCto9yM1A60IzHaWjIZxBzUAnIfPH0LeC4x/WpGtw8fNRf6Uo+c9TrfLnpumVsJ + oPeFru+00OVaDnuUmCmzPLFuda1MMKxSGR8MrMH0lO3k2i1MP/cXEVilkYo5RpcRxWRIeZARzTZJ + OLKetn/ttWvDtLXVIy1FAVDMCtkqZmmh2x7KDty5rUNNQ7tFbU0xrdv1MeoKmsa7aUarWKfVry3m + rAFyWtLUZv2w0DJ1qy7NQeX21GAxpp3R8GLaYaJqVrIixa1SGVTocNyP12UNvZp8NLb2RHW3k28Q + wDfItB/yIAtiv5cMLHo19e3MkOk+KyaPkVgWaUrL2nl3TD2+KpPWucXkxslFa26xPzS93aHpfR13 + gtXaH2zuaLzXspz7g80HOti8jwPHjiM7DBxuemS3s2dzu34st7NHXa6B38m4GjNT9k3vmd0txsbI + 5a7hDTbvoxgr2S9f2qrqyD6i2Uc0+4jm20U0ejf++EENXjh6hv893/Xw5vahCLooJwTpssA7GXLo + 8qTR4l2JN8oT42r00Ov1flOc3KiQty/a7W+D4LO/DXKn2yC49e73+kd1M/8gFzmqTP3U9zW6sls7 + 5Rvf0vjhrl/c7ZpELdzBZ588fl/Jo7sRH+z6Awpmf+Nhf+PhbjcetLHf7eTIXCuUdJl9d28WnAJR + 71TE+jiv+kJQ9eELrw6gnH7SpOrG7wdsfSNAC7BKwh1eBihV4xGzvv1Vjf1Vje/s/XbHfO+PSXY0 + 0m1Z1v0xyf6N9kd8o730pg/2IjuV4eqnfZV918+Tdva6TJt73Mk0LYZY5+vzs7slT8WvwW2N/V4D + gScq9q2+lq2unENA3p2QZN/RbfNHSyHwGELqH66Etb1glUOJ7ndRSyl/1bGE+v1G3/5w41e8lFoS + 1DjV+H7yklbd/HEzlBvlFmhUUsFgb6GJVe5xkLCPMgCjezFVQq7a5m3xGT53jNFap95P/ISPOiSU + xHLWPCjoSrKKx4nK0QjfOMsqnptlW8XzaFmXRfgNUp7iud4m7FunQNsWtiUTKp67ZURdsx8iMyqe + e71wjk+zXl6ugd0x9yywe2fChH4GbtXAAQ+ChjLA/fowL3KXrqU93HURoPkI+CJgMVtXf69z7l/S + OGd1y9V6sFmDgl7fbfriC9++XVkMIfRBKIYiNSiNw1mctt1DlEvb6VhqWv1QaZym5vapnJH7LdM5 + fB46pVMc3Xda52hIQ0SN3MpGi9UTxEI1vMpms0M0FxXH+Y3zr5Ys6/9QSwMEFAAAAAgAMDB4U/FP + vcvaDAAA12gAAFsAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3Yy + MDIwXzA3XzAxL29wZXJhdGlvbnMvX25hdF9nYXRld2F5c19vcGVyYXRpb25zLnB57Vx7b9s4Ev8/ + n4LwHmB7ISvposDeGfABQbbbK64v5LIHLIJAYGTa0UaWdCSV1ltkP/vNkBRFibLzctI8LKCNzce8 + OJz5DankBxLn0ySbT0o5G/195wcy2tgDxA7yYsmT+Zkkg3hIPiQxz0U+k9DOi5xTmeRZSPbTlKhB + gnAmGL9g0xDmvk9ilgk2JWU2ZZzIM0Y+vDuqmkPyH8bsF/lVkiRTYwqe/8FiSXieSzLLOUn1GOiH + bwvNU4k2ZWTOMgZiAJPTpSPe4HBI9kuZHzIh9cC3emDO1dQzms2ZIAu6JDEtFe045xzZnrIzepEA + W5pNyZcEVDtlJM2BTjJT8sVILkFVLfNws2af8XxB5LKAVSXJAuwsydHvn99EB/96c/Dvdx/f7pjG + L5RnMEbs6Bn0z5KzEPRgIfsaswINJSoCB2nCMgk2OYMfSays+IbznAfkX1IWYKgCRjPTBF/zksfs + zddESNFq/JjLX3NYU9O8oEXE8KMnRUHnjgrvJFt8pnM29cclBUuTjFUjP5vvlVArJ4SS00yoOWaq + 1uV/Jax7UzGfRp6mjnTvDz99hhYGCn3MP+u+gJgPH5g8yxtyL+YLucrU+4cflGl+Vd7aPctwDylf + RC1JYLpha9Y1DKuuBbheKggVJNIfd3bAKRu+Md4h8PxAiiVQkGMyTQQ9TdmkzMDNpyNNKCizOc/L + wjYINavD7/azZUAOaJoikYD8ksRgV7WXkjjAJeW645MyAU0DcrQs2H8pmPG3DFp2FOEjMqnaB/2j + /lA1HqQC26CrmnxcMTo+brvA8cqFPQGWWrBjIYEtSHxyYn7s7MQpFYJ8pPIt7NMvdCk+FUyHLTHI + TzHODLXFer1e5yiS24+hVub3vCTiLC/TKclyjFpCUthSMBPCA8QFzXKaYDRJlyF5BwMYnQZkWU+M + OcPx1GxLQyRGCuAxyMUhC46lAyESwKhEpaTxmW4HX6AZtvDktJTMyDhOLig37jKG+JzAMJnrBi0g + zEaH0EE3cdQkyjNCTUbiAlVk/nKcOGPyS87Pw4uf9n7ai/Z+jvZehcYl1cSCcroATqjduNISdcD0 + APEcoqdaSxE2xufZLJnDePWzNALlMztLE2zMga6EpsmfjIOiMFgtqtG07mtMmbJ1k9zesPINbVaz + /yb19sPWKZuRKEqyREbRQLB0Fhg5A6NQ4AgSNOgb58MHJ4aRnggc9IdWr50IA2oirUEOfRjmcmvz + UsIhL/XBUQZ0Y5IplWDqoDEvsN+4yQeR8pgoowsIBBB60GnGBDajHZlRGc311lo37McfzyGlzUXd + C7tY9Tp2qroGYRgOyeifEK4zZntjtTyaDATZYtCHln6gBg3rySb2HGPziZ2sslgE+QxIfLOt+Lze + ezVel0Jf770er8qPr/f+Me5KqJbBpS9AWBZTsNfAVcR2gjrfLodDO4sWSXTBuMC9MiE93JGjvZ9H + e6969ZAYkxT20qJIjey7f4g8M56tLQv7DtajhK3w2+F7217yVPmbdi7XM8IFkxQEpcd9GNQ/qQ2c + zDNIc5ZEQeVZpNFbBBqVC7Cg8KzcrzzqLTrUR3CU/rjt+SEwGvQ6XK8XdDtkHzTqD4Mmo8yG+nVc + 2m4LLHxP7qQvylMR80TltXfTVfTdbRi6U6Jk2gvIum6f72XnepmAaUyPXOFfADutc0WG3c6goiYs + Oxe2G4I3X0Z1B67lZb38zXS8ctZxH3x3ZHwX3Gfi2UnNGPQcFwfDON8qO3QLfgZ515Vaf7+x2N60 + 4/6+2lCdIuvRILMaguKqD76kJgW210pvMb1ObYMFvix1HKhQccQNNGpTjixu5mU24BWaArEYXUx+ + palggQ3CQzfOV+Q8FuEZQDH7rdYNYKkdAkBGliJSdZNGTOT4p729gECkwv9en4wbu8cWFANn5qSL + XGCZ2O6gDqIT+2nYoM9pAsp4Vc9gJS29TSZNXD9sKAtZpqkEZ7LkGbYPPKPpdKSiuCayKqyie6rI + Oib9XTcCiN1vzRBzuduIndDvxdLLXaisLxLcELu2Ug4/aiC3W0dEmNsMj5f9Sy+wW6xwyqDGM/I/ + cqBgS7xW2gd494uSX6j6XhQsTmYJYGOQhhhpwnq1DYjsUGpMjmA+fkLMirSqQS6oVjQUsO4k4epp + WLWt4vNpSNpk4k9ucDhnS1h/qEhM6aU8meyTuBRSV4PAhJNZmcUKjGOBYo9FCiwkpkoCXe/Y/egz + AK4INGWSlQp9RDI/Z5li5bQS1Yq1ClCSFCpQSgq1aLo6pUTQC4bUKBY7HhdTS4OFeMlUwVGX0wFR + IU61Znk1NED1aL13q2rc1AQ4GEojgfWp7QNdgP182VooZSwrwWmep0j7L//QIWyeK3haQOVe0YGY + AFH+gqaQndiMlike+0CUAClkAg5wCvuXocW+aI2Ekhhc3SlcMUCBwodM8uVofwb0TBrBY6wCj+yq + mkpJoUOXKoxsXQp+ZreP9gE9ShCWwPJzFdFQW+P1KGeuwqINq0OHg96ZXZZZtUnHKmqLxpz66CX0 + ovnY3d51ijQL2CwRTCvgavQap0xQRxjHuJCto6BarjsVHCnPMXTSZZNEE0u2HaHfxJoNlNgea0fW + xsfdpvdeW25vc/pq2JMa2AEnjfxXUwWfwlmtdEi/RMYtukuJptJqih8dJ12ZxJvYjngTL6t4U2DN + JildnE4p+Rosgz/H8MMbVGWdRocDA1YVa8qGnaPQagwNB8a1A+1ITK9zJqM0hxUFxIZnvVFeyqKU + PqYYNu3dBUm0UW8AS/DZVm4PULm5O8meBgsVjcY2ESxU5AHT1xltYANIoGJJrqPh5Ft/lsAuHaks + ObpIKALINNdlf/8y6F7VSWdrQDpKAnCchqQqsXaIao/SB+7czqGmoTuodGJrmypChAaRH7/8mNLk + Oml+7QgLHslJLVNXFMEya+LWXP6g+kBOk0XgdUrj88mKrd6KNg0rrrXKoCGHE4GDVVElaNlHc3MR + /lOqTEDJBytI2NeCZtOJjp9XZMvbFS89c+Qc1rcUNawBiPOWyTXlC9bc1Olq1yXPtLjRHPTijMkb + 9RMvbmeMM0C1tR1Em3A152FrpQp512sc3BJTX3FJ43hRG2GPrw2xOxH2DfFwl1tvD+RtELjyQB6C + 3PYQ/jFBuY41ejmH8BULwG46gCI2xCNfvyD0pfibnrJOAj0CmOsPz/DwH0HLsz/5f+rn/c6d+tQ5 + zrCNg36dzSA3+LX6Xa4OXOatWt1MdEeoPjdJPAHgHum3YyJYCZ11H/xFBHfb2QFrEfjtQL0tENbD + oBtiqvVUXwK6cs/VmpbruV0Qnn345TDa1EsTq/x5i9y2yO2RILcHRlAHeheOMF6txVGt7ep+9VDn + PSG103y6jCrGJspfS293YocA2D1wM42LGobr2B9XFwdKMXfAVfASrw6uCy/RzTuYP1nUia+avFIv + nTwz/Nl4AXKVISYT0Hyvqfhmcexqtq/uk+39w+er8/cTANX6FL+tybND1PXrA+shda/XO1C2EHjA + qo0hCH0Rr/xoDvWKjMnnOqOLErEuHlTn+red9G8qWCM1bhXsKyZtCVzidziR3r6ctH05aSMvJ1nf + 2uwrSjd27Wf3PtP6KPui32+6+hTLTn7AN53qyDxxcrI37Nm9ELVB0Fm5xM3fr/LBZ8fcBv7cHgE9 + u/ewVMAfUbHM4pFNg9uXsrYvZd38pax2inlKBalJipLOxSOpQo9AlE8KWN+1Cr3qZa3fTL3p1lJo + iG3J2VFkasM02d2ivqxX9wHry+0LXS/lha7HdeXoBNftJeNjQpgda7W9ZNxeMj7gJWOdB+/tkpHK + +OzFXjM+s8vFR38715XqnkD5kwJKiQB2rqp9bld4VH+QqwuGvQeOhwp0Nu/B1G+OgCQKlcJwUulj + fmnEsZdbnzwYdsaTfqn/dh9Y7Zw1zv29A/5ayzsd9au/XBfaP1l385P+Wg7vzP+7A/JOT3i+0Pxa + oBr3ZMEZ5CWMRyqFDDL2VUYQoc7VL3a1DpTXYRh8boljOqduBmPgoy7bJLGa+SfYq6qL6nGQaxXD + rl1iVM/1So3q+R5IvXou1+l/Y+S+ztYdAL56bgfkV82+D0BfPRv9rQZ8/BPVeg2sE2/YYBtXwkAX + Q7cZc0AHTmMZ4fbZ6CVWHeS7UZpLV23kfBaxlC2afzNwGl7QtGTtGNJ599WigtnWbbrysiu0C4qp + W/8uLWb+FhXvOhCnrY/V9YquDPEtZ76vokNLc/PCw9j9hsUHPvddgCiNNl2EOB7imcgrCSxKa14t + Va4RNPaYHaK18FLYTUqHa9YFV5UBd7/++A7FgnNCbwqF9i3Ed7nK2FYl26pkW5W8+KrkviuSh7oE + sQy3JdC2BOpYg20JtC2BtiXQtgS6awn0nW9OOiqk/wNQSwMEFAAAAAgAMDB4U9dhBY3tBwAAYCMA + AHIAAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAx + L29wZXJhdGlvbnMvX25ldHdvcmtfaW50ZXJmYWNlX2lwX2NvbmZpZ3VyYXRpb25zX29wZXJhdGlv + bnMucHntGW1v00b4e37FKXyIg1wnoEpskTKp6gpUg1J13SQUVdbVviRHHZ93dy4NVfjte+7F59eE + UkoR2iKh2nfP+/tjnqCIxTRdTHM53/ul9wTtPdgPiB2ybM3pYimRFw3RWxpxJthcwjnPGMeSsjRA + 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 + JLdfTbujK+ORNh5dgePdHVft8uLdcdUzPK7CpOrZn1U99RMq6/LKzNpyMo2D/qZ4B9GjvTXyPUdg + NkuNrRENaI+QfXYYea41SqButAUwqSqYP4XLQ+3BthswIPcoVR6tJtrlid+RJ9rbrXUt9uwuCC7t + RNIitK2LUl1LaJeD7nLQXQ76d+WgR8oTjNB/rs1EGy7D/jS8r6GzjVx3ms5WQUlYR6BbyW0DOhjA + 7sH6aLk5ExuuY/O8PPuSCrAHbErk8fTrtok8LgcH8Seb3+M1tJdPPcnvknMyAekO6sI9RkHQzczL + x2fm4auTzWnHc61Z1CFSU/xdwXKfK4P3KSx6vd6RVH6Oe/ZK+zmh5Kx1pKN/i7Q69dndL3zU050u + mpX1jclJlWrlBRZCeKKTqt+uVb/tZiYZMVVOrXF6V15428yoTX3rpzi7K5W7K5VbuVK5weK2e91y + S8vg2d3YvE94+qHvdW7ezjXAT/OG57pw4kBi5VktVM/usuiDFzb43O9GarvAccDWapzd7qih+IPs + jtqu78Fursp4OKL5KglHJqPYXWPdXWO9+zXWZqx99hsvcZQ/9o3W++1vlH8L5/b543sQ7VSaQn2j + Ay+ugjW29zZy3Nz4se+rPtrdUSzchPqLYWCDV6xWxt2yXqsm+LsqN/lXtHzz57O2VbhV3LVKuP/T + C6nOBfN8rxzc6rIA+siMM1iLmPrKI6ZBwr5AYImSq4nUeD0+rTsJxeeep6FO0O2cVOIjd18EMZK1 + a4GuWxPlY51/Y0y59UWJ8rldSVA+j1YaGIKPXiIYyn9D4l4+N+um+c7XHNaZlOO2Q/nc79ZDF/RD + 3H4on63eb8Wnnf5Wc2DW6pYVtnUhdMau8dZdK8jAaSgC9BSPsBdSRTj3rohNDb1YkM4DFrNl/Y+3 + zfxrGhes6UCdWygNLJiW2E0b90x8M82Y46hfAsbEqYGltdeEYOsDVTXPnfGtYeIPdSNDcXP3Wxla + 73e8eY3PQ1/MkBJt+3KGZSEtFbXuFph0tr47UJqGV1t5jd3vWvx+EoWvo8L9C1BLAwQUAAAACAAw + MHhT8mV+aGMSAACyHAEAYQAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZhY2VzX29wZXJhdGlvbnMu + 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 + 2u5bft8Sr7s+cpYa7frY2fKQmolq56imliyj3Nw1nNKCq2yHbkinPwCk2wTa2iDaAwEv+XsX18Fd + tvls1NVBoQ4KdVCog0LXg0J3DXw6HNLhkIY56HBIh0M6HNLhkFKP2+KQG6GOHUGK/wNQSwMEFAAA + AAgAMDB4U4oorORIFwAA6pwBAF8AAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw + XzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX25ldHdvcmtfd2F0Y2hlcnNfb3BlcmF0aW9u + cy5wee2dbW/buLKAv+dXEN4PcQ4cN1sUOPcG8AWKbLcb3L7kZLO9OAgKQZFpR6eypKMXp95Fzm+/ + Q1KkKInyW2VFtsdAUUcWyeFwOJzhQ8s/EScYu/50lCaT8/86+YmcN/aCyq6CcBG508eE9J0z8tF1 + oiAOJglcj8IgshM38IfkrecRflNMIhrTaE7HQyj7wXWoH9MxSf0xjUjySMnH6zt5eUh+p1T9kXxP + iOvze8Io+Bd1EhIFQUImQUQ8cQ98Dn/NRJtctDElU+pTEAMaeVho4vVvz8jbNAluaZyIG9+LG4OI + F320/SmNycxeEMdOed1OEEWs2Qf6aM9daNb2x+TJha49UOIFUI874fI5rDqXdVU1PmxW7ZMomJFk + EcKoEncGek7I3T9v3llXv727+t/rT+9PsotPduTDPfGJKGH/mUZ0CP2gQ/rdoSFTVCwruPJc6ieg + k0f4z3W4Ft9FURANyG9JEoKiQribZpfgzyCNHPruuxsncenipyD5NYAxzS7P7NCi7G1FitCeal24 + Tujsxp7ScfU+N6Se61N55032txSqtsAwiWw/5mWyoqIv/05h3Isdq9YReJ4m3YfbzzdwhUKHPgU3 + 4rMByd58pMljUJB7Np0ldap+e/uRq+ZXbq3mUlnrQzuaWSVJoHjWbDauw6H8aAam58XEjokl3p6c + gFEWbOPyhMDrJxIuoIbkkozd2H7w6Cj1wczH56KiQepPoyAN1YWYlzLY3Vt/MSBXtuexSgbkF9cB + vfK55DoDNqSR+OAzV4HtDcjdIqRfbFDjHz5cOeEV35GRvN4/vTs94xevvJhdg49k4XvZ0P192QTu + awf2KzQpBLuPE2gWJP76Nfvv5MTx7Dgmn2jyFETf/s9OnEcaxZ9DKlxX3A8emK85E1rr9Xq1d5JA + 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 + Ss+OKcjyRLH8G+d4FQiibcYbHGit9wLFaf76RDFFJKbIKoAFmEDzKrz+QwXtyEJFKDuLMNiivC3K + 2zcstqgUb9+wqK3Cr1diUKTsqxf21Qub29sau62xl5rvdI29zVnsRiK4zCNOYJJ+QCZPWn1XpZym + x9PKMzwXHbp/e6N+uO4L+dURXkJFf+Pe4lhrK9if5H32X3qqW0ULENgXOx71xQ7lnfqtzsi+22FB + ls0AWSrx4BagLY3OduOj7beS8x+FX5QIdjrkbkRyWmJuHdKhmHLvn0Ysw2tAeYQkl4M9agT7OomY + Bl9iliYITxTXv1PCBJ8fRVYIn6JcgeUyVKcoya9Vt2/QQwtUWaDqMYCqsro9I2JVZmXXoasWD2Ax + rIdU7BTNJwCzpHEf5XGFRbseGI3nerKJsJetWNnfJrew18uCvZR/2a2M3Jv4VM61bvK0O/xLUe82 + K+8oHzeKUWvGb+yyha2eHLZaUXMtXLWm84+5MTldHgLU7mgYqmGnWxjLwlgbDWNZAAtZAKsNwFof + IRK/xKeQobV91jPGmBU3cH9YcF8OOFt/qU2E10umvusBZlH8NMPFXq/3VkmG4zRlOGHtl3OUzAog + 7NnxmtrFqQVu2PFFqAG6aaDShuGwETT3iRNiYDiFVtZBOV1DNxa0saDNo4A2zKZ0C9GYVmpHkBZz + Ui8aTVm77qNoPRRFqTXeo3qvbXGVB4IfpYCTy93WNfhAT1fXsGCHBTs2HOxYYv53IgH9P1BLAwQU + AAAACAAwMHhT3rfEG5kNAADWiAAAXgAAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fcGFja2V0X2NhcHR1cmVzX29wZXJhdGlv + bnMucHntHWtv27b2e34F4X2wM8iKGxTYvQZ8gSDruuL2kWXdLoYgEGiZdrTIkqZHWq/Ifvs9h6Qo + UqSdx+IucSSgqEXxvMjD81Tsb0iYzqJkManK+fBfe9+Q4YNdgOw4zVZ5tLgoySDcJ++iME+LdF7C + eJ6lOS2jNPHJURwTPqkgOStYfsVmPsC+jUKWFGxGqmTGclJeMPLuzcd62Cc/M6Zuys8liRI+J8vT + 31lYkjxNSzJPcxKLOfAc7paCJmdtxsiCJQzYACLTlcbe4HSfHFVlesqKUkx8LSamOQe9oMmCFWRJ + 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 + FlyK0tXxuzp+V8eX11Op4zvXbjKBFRv9rS+OspzuzX8puZ6Vw6/Nylf4/tkNbvUJRrZ/NGt8czuk + EX2notubvl52Uxza6/X4Y/HXCnwOllspkcnR022iSE0jUqMU9i11UxbRlWg3dD2Vrqfy2Hoqm83B + P//lrhZLO9euubtlftYtnU31KAXWNXaezve53jUWrlWn+2rXrmzU9Zi6HpOcvsM9psblPYN8PI6K + r/v1rvfLrOsfkF0Tvr0FKVwZNY4XBNRuTSJYQI5WXkTt329pZ8fPKcX+al+8inlTKX5qG7TwkhlZ + lCtdajb5b+VJ/LemffUj0/dKkxpWrPzoMXyDq/M4PPNGJxo7SOLhVGGMytsRg4R9Bu8QJZcTvrym + k9nU2sHrnu0dJ+jDtHjw4jWMkijJ7KB9Xce3vrSGHjqHW7d66+t2sXt9fbUYXhH8irG8ovkPhNr1 + db1pg+/csd2kTI7GbX3dr4G7Dnobjdz6etDvhMXLjl6bPVCn9IEX7MGFkAG3xGsaVZAhp2EZoI14 + 6GJF48jcVQodNRqrIJ0HLGZLYvyS+cy/onHF2nbSWdJoYcG4Qh9yLot4SRaDmdZcq76DG77Z6zRb + t9ZZtbR2W614wc3d2/FydW9qyZ/ba/9AHXO8tt3c54uz1c68pl/W0lvNZRXNmnWAWuU845C2ys2G + k3/cia4jkf0/UEsDBBQAAAAIADAweFNwwYpzbwgAABglAAB1AAAAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19wZWVyX2V4cHJl + c3Nfcm91dGVfY2lyY3VpdF9jb25uZWN0aW9uc19vcGVyYXRpb25zLnB55Rltb9u4+bt/BeF+sH1Q + FLcocJsBDwiytBeszRVZNuBgBAIj0TYvsqiRVBpf4fvte/giipRkpymcWw8jUEQmn3c+r+wrlLKM + Fqt5JZcnfxm8QidHW0DsnJVbTldricbpBH2kKWeCLSXs85JxLCkrYnSW50gDCcSJIPyBZDHgfqAp + KQTJUFVkhCO5Jujj5U29HaN/EuJ+yEeJaKFhSs5+JalEnDGJloyj3MDAOfzaGJ5atIygFSkIiAFM + 7raeeOPrCTqrJLsmQhrA9waQcY26xsWKCLTBW5TiStNOGeeK7R1Z4wcKbHGRoc8UVLsjKGdAhy61 + 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 + kNlLPjgs4M5RKKxa/54aiLL9gkteRiNYGcXolhd03HSJm8uLH2iSB6/DnKgSOFuBpm9+VT+n01ez + 545zp9PT2bGz2un011nf4c4r2HcNwFWZwZCMQn/9Jnj9bT9uMkdKlmypkLqQ5mioc3UyfXMyfdVE + j6Q63HqXlGXubJ98krwYDgKkgREFZVxBxf11d+3XK5EbaAZ41eiBN1QRsI4sRrAzemiCz1YF5Nbz + lUStE3t9SMCNagNhk53Qjmo4uNRocAu9NJodTgYMiqJhD24M437sHoEbo3HcVuSg4NYW9XOa+kAD + VPWDf68uCw3P6QjAA0S3hsUxiTIVzDTNVXZUajAEcciSsEyreWa7q3ffVwJummOXWK0V/mIYZr35 + HvfXl8FcqqBq/TYcncQuaTZ0peyb4mofko9yLUbQDieuHaA45504GY5oGHQNBCb4quPQb/gaTr2h + 1fb7h83usC1GZ6ZHe0221GCzIdHmmpeupe4AepirFVU2SYfRiruGNLhS3wyTelgcik383VFURSTq + Cw7YRMlm/pbkksb+kDMOjPTiOirwGqaB/2ocg4uhJ4E7hKpkYv4nYC8raPF6On2YtRrGX5GjgH7e + JyT2ov123EDx3L+NW/LNVOve46OjsmxnzNuX4iB3waE285EOFqPRd2cZTIZORMetIOpzSNsNc5Aw + Z4IOa+tYn5mpE5aaYQwpzF5rROhmMFNihkaTEG/k5Fsb0PaT1hyA/c5c2E9KwbdMt9/E/9sJOzif + tNEd+Ltwv59YmLXKHT7vJ0fCOtp3Jtt/UEsDBBQAAAAIADAweFMuEn2/DQ0AAD9tAABoAAAAYXpl + eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRp + b25zL19zZXJ2aWNlX2VuZHBvaW50X3BvbGljaWVzX29wZXJhdGlvbnMucHntXHtv2zgS/z+fgvAe + YHshK2lRYO8M+IAg2+0W2xdy2QMWQSDQMu1oI0s6kkrrLbKf/WZIiqJedtI82qQS0MYmOZwHhzPz + I5X8QMJ0ESWrWS6Xk3/u/UAmd/bAZEdptuHR6lySUTgmb6OQpyJdSmjnWcqpjNLEJ4dxTNQgQTgT + jF+yhQ+0b6KQJYItSJ4sGCfynJG3r0+KZp/8hzH7RX6SJErUmIynf7JQEp6mkixTTmI9Bvrh21rz + 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 + ddZuh/1er/ezkD/vXiLt7sR0d2LuficG19N+b8PYK/Q7ueBiD+pZX2jZlGHqLo94jeW7u4dyv4sj + NUyCT5e2SUaHfyEkSvzuDkh3B+Sed0Cktz6ktCQKc+5N1569xv9+gnK/zKP8Na3qNPodyGf8KtW5 + mBv75QRsAhkJgG0b4+eYQNNazvH0ycqj3V1AZMrlL/7BNF8zC6cqQNqq3r+FUMUP3rn6l+52va7d + KkgD2D7RlYjbjPCZ74ejH4EECZYTwiSxWTaI2RfwnmF8PRHKtZ3wtq1HfO65/djadT9bkPiI/JAT + PbImbtx0MFA+xoZzu9/d+ZygfHYDnuXzVABU838sIIrPzTb133m/f9tUt2z7l8/9tv839X6IY4Dy + 2etv6uDTxF7VHOg1tGeF7X0QCi4qurbLgzFk1Ocertc9vPLQGmTaD+dNwsKRJDMPkOfS/rHDwF3R + qGB1H9aa8daoYLw3i259N8LVM4rgQWbICD5qVBpZO3bbHiuqKd0YYmrW/FDHO1Kaux/xKL3f8c4J + Pg99wCNGtO9DHsNCGipq3ATRONHOQkvTcKxFVtunuyWEPk3ydVuutSmz+nbyJVM3ZrbU5S1d3tLl + LV3eku/+46XlczhZSpc0dElDlzR0SUOXNHzHScO9UoQ94H8PJWSzGcDfcMU888wT8gzO8ke/SF4J + owQwfp1CrsfmpQaNLl+Xnc9F3+odUQNhdjfVn8d7izubdncT/lu6UtE2k91N+O6txnu/1QiQZUtM + wUswCF6aN992eRtyC2EYwcZo1N92HaTG1wo8+32fMsmf9y/HvuxeXrhzjPxG7g8dM3tt3f6aw20j + fe4Ad8sbFm8YVz+YWnInUnT1/ygrMhaI2+vG5j2xfo5V1eUp88MZ/lKLrnn6y0+P9Ds2W6Z944/Z + gM22631mv/qg9Orr0dYl3Mp8x2OFjab3iOcx3Tsp3Tsp3Tsp3TspjXdS7r6NpYk94tsq20L/tlSi + Qah77aV77aV77aV77aX2dK+9ELJjuneACe3/AVBLAwQUAAAACAAwMHhTG2NDpOYQAABC7QAAcgAA + AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3Bl + cmF0aW9ucy9fdmlydHVhbF9uZXR3b3JrX2dhdGV3YXlfY29ubmVjdGlvbnNfb3BlcmF0aW9ucy5w + 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 + kSqSqvLaIqp9FVfP3du61Ay0p5ZWbG0Lho8AIWhmsWZmqXIdVi9b0kSD5LCUqS2rYJs1dHuu5qLy + rqImi/BrTMPz4YrQr2WfihXXWqVXkcPJw96qLOPV7KO5uQD+OXQmfwNQSwMEFAAAAAgAMDB4U0KJ + rgLqBwAApB4AAF0AAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3Yy + MDIwXzA3XzAxL29wZXJhdGlvbnMvX3dlYl9jYXRlZ29yaWVzX29wZXJhdGlvbnMucHnlWH1v2zYa + /9+fgnAPsDwoilsU2M2ADwiytAuu7Yost8NgBAIt0TYXWdRIKo1X5D77noeUKOrFRhOktwETEEQi + n3c+Lz/6BUlEyvPNotTrk3+OXpCTZ3tA2Lko9pJvtpoEyZS854kUSqw1rMtCSKq5yCNylmXEECki + mWLyjqUR8L7jCcsVS0mZp0wSvWXk/eV1vRyRnxhzH/peE54bmkKKX1miiRRCk7WQJLM0sA9fO6vT + mJYysmE5AzNAyWrvmRdcTclZqcUVU9oSvrWEQhrWLc03TJEd3ZOElkZ2IqREtSu2pXcc1NI8JZ84 + uLZiJBMgh6+NfQmK4+iqUx49b9jXUuyI3hdwqoTvIM6aXP/y8SI+/+Hi/N+XH96OqsVPVOZAo0aW + g/5eShaBHyxi9wkrMFCqFnCecZZriMkW/vHERPFCSiFD8oPWBQSqAGpWLcGnKGXCLu650qqz+EHo + NwLOtFre0SJm+NqzoqAbz4VLzXYf6YalfTpesIznrKb8WH3XRh1kiLSkuTI8Fav15bcSzr3tmC9j + t9npQ3E6u3pv/HpjUq2KbBTV2zs4/EwRqkhsX0cjSIvW6cxHBJ4XpNiDiXpOUq7oKmOLModES0+s + oLDMN1KUhVtQhmvg5M/yfUjOaZahkJB8zxPwzGQzT0IMqrQbPxo/aBaS633BfqZyZCRek0W9EEyu + J1OzeJ4pXIOtmmtZa1guu9FfHozpDeiyFi2VhkwAU29uqn+jUZJRpch/2eocSmQjJGfqx4LZnqEC + scIin9pgjcfjA3REuNfIOvSLKInaijJLSS6waShNIaOBF6oTytKqTTkWc7aPyCUQMJqGZN8wJpIh + Pa2qohKSoAQ4c9TiiYXUsH0IBWBToFrTZGvXIRFojiuSr0rNKhvn/I7KKlfm0B45kGlhF6yBwI3Z + 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 + 6p79bbxICFA4TQeGRUQzQjuL8KjbVp7PnKsBD/3Vsf5DTTe4fdwDtOJVqealKl9za+04WW6/2rDF + 0SRrnfT2QNc9tnKhyueD+icdeWJ2TuOxl9Get9xXL76MjECIIaOBqBh/Jl2qt3NSP/8GUEsDBBQA + AAAIAIIweFPc2RtAEQAAAA8AAAAtAAAAYXp1cmVfZmlyZXdhbGwtMC4xMy4wLmRpc3QtaW5mby90 + b3BfbGV2ZWwudHh0S6xKrSiJT8ssSi1PzMnhAgBQSwMEFAAAAAgAgjB4U/bd0r5fAAAAbgAAACUA + AABhenVyZV9maXJld2FsbC0wLjEzLjAuZGlzdC1pbmZvL1dIRUVMC89ITc3RDUstKs7Mz7NSMNQz + 4HJPzUstSizJL7JSSErJLC6JLwepUdAw0DM20DPQ5ArKzy/R9SzWDSgtSs3JTLJSKCkqTeUKSUy3 + UiioNNLNy89L1U3Mq4SJGCNEuABQSwMEFAAAAAgAgjB4U1EL3txRAQAAPQMAACgAAABhenVyZV9m + aXJld2FsbC0wLjEzLjAuZGlzdC1pbmZvL01FVEFEQVRBlZLdTsMwDIXv8xR+gbZjGyDlijKEmNif + NH6uTet1kZqkctLBeHrcsSFtN6h3kfydHB/bc4pYYsTkjTgY7zQM04FaoCUN+N0yJRvD9Il1rf6I + QXo1EmjdWou81zBHhxVB3uHweMSBKfiWCwqpevKWkkYYDdsYm6CzrDJx236khbfZQZf9mhW1Segr + kuucQhaZKLMYInEWuMguOsrbuPUsDZiCffCbCBPPjWeMoj5WE7Jo6i5Ms5ff7+yJ7bzVzBTiJX3N + py9qVWPceLYaXhfPi+X7Qk1qDMFsDInJA+2o9o0lF2EdMbYBtIYxJHAvMzxDp04SlFRC3paGXEEd + edTLEP9n13uJbCEvrXEmRAnkL2Qr9hWjlXoFM3RV221AlKu9hHY90O417Muntz0Vo758Ou6tuO6t + uDlTHG+hKy3XU8ibhv1OFqMP13EqK3U6DqV+AFBLAwQUAAAACACCMHhTkK1ZABpUAACqJQEAJgAA + AGF6dXJlX2ZpcmV3YWxsLTAuMTMuMC5kaXN0LWluZm8vUkVDT1JExL3HlttY2qY7P2udOyH6wJvB + GcB7EiAIguQEC47w3uPqm1T+WSWVFBIjitk9yVTkSgFvbPO5/e0H3hYtg3tPu2j2iuL/c920SgfX + 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 + d2FsbC9fcGFyYW1zLnB5UEsBAhQDFAAAAAgAMDB4UzN5+mw1AwAAwQwAABcAAAAAAAAAAAAAAKSB + jR4AAGF6ZXh0X2ZpcmV3YWxsL191dGlsLnB5UEsBAhQDFAAAAAgAMDB4U01xj2igBgAAQygAAB0A + AAAAAAAAAAAAAKSB9yEAAGF6ZXh0X2ZpcmV3YWxsL192YWxpZGF0b3JzLnB5UEsBAhQDFAAAAAgA + MDB4U27PRlo+AAAASQAAACIAAAAAAAAAAAAAAKSB0igAAGF6ZXh0X2ZpcmV3YWxsL2F6ZXh0X21l + dGFkYXRhLmpzb25QSwECFAMUAAAACAAwMHhTvE6Ou2UGAAD4JAAAGgAAAAAAAAAAAAAApIFQKQAA + YXpleHRfZmlyZXdhbGwvY29tbWFuZHMucHlQSwECFAMUAAAACAAwMHhT1MKCtGEdAAD55gAAGAAA + AAAAAAAAAAAApIHtLwAAYXpleHRfZmlyZXdhbGwvY3VzdG9tLnB5UEsBAhQDFAAAAAgAMDB4U2TW + 3YnzAAAA/gEAABoAAAAAAAAAAAAAAKSBhE0AAGF6ZXh0X2ZpcmV3YWxsL3Byb2ZpbGVzLnB5UEsB + AhQDFAAAAAgAMDB4U7OEssV/AAAAPQEAACAAAAAAAAAAAAAAAKSBr04AAGF6ZXh0X2ZpcmV3YWxs + L3Rlc3RzL19faW5pdF9fLnB5UEsBAhQDFAAAAAgAMDB4U0R/yGbgAAAACQIAACcAAAAAAAAAAAAA + AKSBbE8AAGF6ZXh0X2ZpcmV3YWxsL3Rlc3RzL2xhdGVzdC9fX2luaXRfXy5weVBLAQIUAxQAAAAI + ADAweFPb0nQ9DhYAAODUAAA7AAAAAAAAAAAAAACkgZFQAABhemV4dF9maXJld2FsbC90ZXN0cy9s + YXRlc3QvdGVzdF9henVyZV9maXJld2FsbF9zY2VuYXJpby5weVBLAQIUAxQAAAAIADAweFOJan9E + pAAAAJIBAAAoAAAAAAAAAAAAAACkgfhmAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL19f + aW5pdF9fLnB5UEsBAhQDFAAAAAgAMDB4U0rCsHc5AQAAnwIAADQAAAAAAAAAAAAAAKSB4mcAAGF6 + ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvX19pbml0X18ucHlQSwECFAMU + AAAACAAwMHhTM6i0v/wDAAB5DAAAOgAAAAAAAAAAAAAApIFtaQAAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS9fY29uZmlndXJhdGlvbi5weVBLAQIUAxQAAAAIADAweFPY + JF/C430AAAIPCgBGAAAAAAAAAAAAAACkgcFtAABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz + L3YyMDIwXzA1XzAxL19uZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50LnB5UEsBAhQDFAAAAAgAMDB4 + U2Kr23KVCgAA34AAAD0AAAAAAAAAAAAAAKSBCOwAAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nk + a3MvdjIwMjBfMDVfMDEvX29wZXJhdGlvbnNfbWl4aW4ucHlQSwECFAMUAAAACAAwMHhTUYPi1Z0A + AABaAQAANAAAAAAAAAAAAAAApIH49gAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy + MF8wNV8wMS9fdmVyc2lvbi5weVBLAQIUAxQAAAAIADAweFOtOElmuAAAAM4BAAAyAAAAAAAAAAAA + AACkgef3AABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL21vZGVscy5w + eVBLAQIUAxQAAAAIADAweFOxBS8uCAEAADoCAAA4AAAAAAAAAAAAAACkge/4AABhemV4dF9maXJl + d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL2Fpby9fX2luaXRfXy5weVBLAQIUAxQAAAAI + ADAweFNlKWlw/gMAAGUMAAA+AAAAAAAAAAAAAACkgU36AABhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA1XzAxL2Fpby9fY29uZmlndXJhdGlvbi5weVBLAQIUAxQAAAAIADAweFPT + gILF230AAMRaCgBKAAAAAAAAAAAAAACkgaf+AABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz + L3YyMDIwXzA1XzAxL2Fpby9fbmV0d29ya19tYW5hZ2VtZW50X2NsaWVudC5weVBLAQIUAxQAAAAI + ADAweFMFXlxkvAoAAAyEAABBAAAAAAAAAAAAAACkgep8AQBhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA1XzAxL2Fpby9fb3BlcmF0aW9uc19taXhpbi5weVBLAQIUAxQAAAAIADAw + eFNKwrB3OQEAAJ8CAABAAAAAAAAAAAAAAACkgQWIAQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z + ZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL19faW5pdF9fLnB5UEsBAhQDFAAAAAgAMDB4U+h9 + sOU2BAAACQ0AAEYAAAAAAAAAAAAAAKSBnIkBAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvX2NvbmZpZ3VyYXRpb24ucHlQSwECFAMUAAAACAAwMHhT + CKuqNdUSAAAmpQAAUgAAAAAAAAAAAAAApIE2jgEAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr + cy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9fbmV0d29ya19tYW5hZ2VtZW50X2NsaWVudC5weVBL + AQIUAxQAAAAIADAweFOxBS8uCAEAADoCAABEAAAAAAAAAAAAAACkgXuhAQBhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9fX2luaXRfXy5weVBL + AQIUAxQAAAAIADAweFO7kCNGJwQAANAMAABKAAAAAAAAAAAAAACkgeWiAQBhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9fY29uZmlndXJhdGlv + bi5weVBLAQIUAxQAAAAIADAweFNpMxt6zxIAAIOmAABWAAAAAAAAAAAAAACkgXSnAQBhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9fbmV0d29y + a19tYW5hZ2VtZW50X2NsaWVudC5weVBLAQIUAxQAAAAIADAweFP0t+3+BAgAAJcxAABPAAAAAAAA + AAAAAACkgbe6AQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIw + XzA1XzAxL2Fpby9vcGVyYXRpb25zL19faW5pdF9fLnB5UEsBAhQDFAAAAAgAMDB4UzST3eUVDAAA + D1kAAIMAAAAAAAAAAAAAAKSBKMMBAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3YXlfcHJp + dmF0ZV9lbmRwb2ludF9jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uwuc + CyX5BgAAwxYAAH0AAAAAAAAAAAAAAKSB3s8BAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3 + YXlfcHJpdmF0ZV9saW5rX3Jlc291cmNlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U7Wu + MlIzEwAA0xABAGcAAAAAAAAAAAAAAKSBctcBAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3 + YXlzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTYX3k5I8MAABabAAAbgAAAAAAAAAAAAAA + pIEq6wEAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8w + MS9haW8vb3BlcmF0aW9ucy9fYXBwbGljYXRpb25fc2VjdXJpdHlfZ3JvdXBzX29wZXJhdGlvbnMu + cHlQSwECFAMUAAAACAAwMHhTikhLLrQGAACtFAAAaAAAAAAAAAAAAAAApIFF+AEAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9u + cy9fYXZhaWxhYmxlX2RlbGVnYXRpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTV7PL + bb4GAADLFAAAbgAAAAAAAAAAAAAApIF//wEAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fYXZhaWxhYmxlX2VuZHBvaW50 + X3NlcnZpY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTcwsPaE4HAAD2IwAAcwAAAAAA + AAAAAAAApIHJBgIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAy + MF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fYXZhaWxhYmxlX3ByaXZhdGVfZW5kcG9pbnRfdHlwZXNf + b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPtlvlW9QYAAO8VAAB3AAAAAAAAAAAAAACkgagO + AgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fp + by9vcGVyYXRpb25zL19hdmFpbGFibGVfcmVzb3VyY2VfZ3JvdXBfZGVsZWdhdGlvbnNfb3BlcmF0 + aW9ucy5weVBLAQIUAxQAAAAIADAweFPLUxsFOAcAACAjAABsAAAAAAAAAAAAAACkgTIWAgBhemV4 + dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVy + YXRpb25zL19hdmFpbGFibGVfc2VydmljZV9hbGlhc2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTrJm/BIQGAADnEwAAawAAAAAAAAAAAAAApIH0HQIAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fYXp1cmVfZmly + ZXdhbGxfZnFkbl90YWdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTdKk1WNsMAACPdAAA + YgAAAAAAAAAAAAAApIEBJQIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8w + MS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fYXp1cmVfZmlyZXdhbGxzX29wZXJhdGlvbnMu + cHlQSwECFAMUAAAACAAwMHhTbNjcYf8LAAB4WgAAYAAAAAAAAAAAAAAApIFcMgIAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9u + cy9fYmFzdGlvbl9ob3N0c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U0PgWwV9BgAAzRMA + AGoAAAAAAAAAAAAAAKSB2T4CAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVf + MDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2JncF9zZXJ2aWNlX2NvbW11bml0aWVzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTYR14hIMOAAD/sAAAZgAAAAAAAAAAAAAApIHeRQIA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8v + b3BlcmF0aW9ucy9fY29ubmVjdGlvbl9tb25pdG9yc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA + MDB4U2ZuaI/MCgAAbk8AAGcAAAAAAAAAAAAAAKSB5VQCAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk + X3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2Rkb3NfY3VzdG9t + X3BvbGljaWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT7Zz61JgMAAAqagAAaAAAAAAA + AAAAAAAApIE2YAIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAy + MF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fZGRvc19wcm90ZWN0aW9uX3BsYW5zX29wZXJhdGlvbnMu + cHlQSwECFAMUAAAACAAwMHhTBBBHCc8HAACMIgAAaQAAAAAAAAAAAAAApIFUbQIAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9u + cy9fZGVmYXVsdF9zZWN1cml0eV9ydWxlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UwdP + v+QxDAAAcVYAAHcAAAAAAAAAAAAAAKSBqnUCAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2ly + Y3VpdF9hdXRob3JpemF0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uzws+kagDAAA + GlwAAHQAAAAAAAAAAAAAAKSBcIICAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9j + b25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uwg4vyUsDAAA9lQAAHEAAAAA + AAAAAAAAAKSBoo8CAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIw + MjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9wZWVyaW5nc19v + cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UxbkvW+eDwAA4c8AAGkAAAAAAAAAAAAAAKSBXZwC + AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlv + L29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdHNfb3BlcmF0aW9ucy5weVBLAQIUAxQA + AAAIADAweFNwGaIIKwsAADZUAABsAAAAAAAAAAAAAACkgYKsAgBhemV4dF9maXJld2FsbC92ZW5k + b3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19leHByZXNz + X3JvdXRlX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTK+7FHB0MAABp + VwAAegAAAAAAAAAAAAAApIE3uAIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + NV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jcm9zc19jb25u + ZWN0aW9uX3BlZXJpbmdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTnkQKjpsOAADoqAAA + cgAAAAAAAAAAAAAApIHsxAIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8w + MS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jcm9zc19jb25uZWN0 + aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U3pXEQtDCwAAgFcAAGkAAAAAAAAAAAAA + AKSBF9QCAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVf + MDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfZ2F0ZXdheXNfb3BlcmF0aW9ucy5weVBL + AQIUAxQAAAAIADAweFPEDQyF5QcAAAQiAABmAAAAAAAAAAAAAACkgeHfAgBhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19l + eHByZXNzX3JvdXRlX2xpbmtzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTLG1697gHAADT + HgAAcAAAAAAAAAAAAAAApIFK6AIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + NV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9wb3J0c19sb2Nh + dGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMCkpT3fAwAALRpAABmAAAAAAAAAAAA + AACkgZDwAgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1 + XzAxL2Fpby9vcGVyYXRpb25zL19leHByZXNzX3JvdXRlX3BvcnRzX29wZXJhdGlvbnMucHlQSwEC + FAMUAAAACAAwMHhTqo1GsIQGAAASFAAAcgAAAAAAAAAAAAAApIGQ/QIAYXpleHRfZmlyZXdhbGwv + dmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fZXhw + cmVzc19yb3V0ZV9zZXJ2aWNlX3Byb3ZpZGVyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4 + U/CNtfVSDAAAPFwAAGQAAAAAAAAAAAAAAKSBpAQDAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nk + a3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2ZpcmV3YWxsX3BvbGlj + aWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTF1T5DCMMAADvWAAAeQAAAAAAAAAAAAAA + pIF4EQMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8w + MS9haW8vb3BlcmF0aW9ucy9fZmlyZXdhbGxfcG9saWN5X3J1bGVfY29sbGVjdGlvbl9ncm91cHNf + b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPuWGKCWQwAAERVAABcAAAAAAAAAAAAAACkgTIe + AwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fp + by9vcGVyYXRpb25zL19mbG93X2xvZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPKn/u/ + KQwAAHxUAABjAAAAAAAAAAAAAACkgQUrAwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19odWJfcm91dGVfdGFibGVzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTWjKR9kUMAAAnVwAAcgAAAAAAAAAAAAAApIGvNwMA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8v + b3BlcmF0aW9ucy9faHViX3ZpcnR1YWxfbmV0d29ya19jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4UyQtZZ9TDAAAzFYAAGQAAAAAAAAAAAAAAKSBhEQDAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMv + X2luYm91bmRfbmF0X3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTMixW5bYMAADE + aAAAYQAAAAAAAAAAAAAApIFZUQMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + NV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9faXBfYWxsb2NhdGlvbnNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFNSGLuV5wwAAD1pAABcAAAAAAAAAAAAAACkgY5eAwBhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRp + b25zL19pcF9ncm91cHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNnqK3aFAwAAN5WAAB2 + AAAAAAAAAAAAAACkge9rAwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx + L3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX2JhY2tlbmRfYWRkcmVz + c19wb29sc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uwt4ry7QBwAA2SIAAHsAAAAAAAAA + AAAAAKSBl3gDAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf + MDVfMDEvYWlvL29wZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJfZnJvbnRlbmRfaXBfY29uZmlndXJh + dGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOFE1jv1QcAAFwiAAB1AAAAAAAAAAAA + AACkgQCBAwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1 + XzAxL2Fpby9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX2xvYWRfYmFsYW5jaW5nX3J1bGVzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTPRwCKfMGAAAFFgAAcwAAAAAAAAAAAAAApIFoiQMA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8v + b3BlcmF0aW9ucy9fbG9hZF9iYWxhbmNlcl9uZXR3b3JrX2ludGVyZmFjZXNfb3BlcmF0aW9ucy5w + eVBLAQIUAxQAAAAIADAweFP439Ua1gcAANwhAABvAAAAAAAAAAAAAACkgeyQAwBhemV4dF9maXJl + d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25z + L19sb2FkX2JhbGFuY2VyX291dGJvdW5kX3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAw + MHhTWAJRbbEHAAAZIQAAZwAAAAAAAAAAAAAApIFPmQMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fbG9hZF9iYWxhbmNl + cl9wcm9iZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMn8CVcoAwAAHhoAABhAAAAAAAA + AAAAAACkgYWhAwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIw + XzA1XzAxL2Fpby9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2Vyc19vcGVyYXRpb25zLnB5UEsBAhQD + FAAAAAgAMDB4U5Jz7rdeDAAAlF4AAGkAAAAAAAAAAAAAAKSBpK4DAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX2xvY2Fs + X25ldHdvcmtfZ2F0ZXdheXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPmYFyitgwAAEpo + AABfAAAAAAAAAAAAAACkgYm7AwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1 + XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19uYXRfZ2F0ZXdheXNfb3BlcmF0aW9ucy5w + eVBLAQIUAxQAAAAIADAweFPexThLxwcAAOAiAAB2AAAAAAAAAAAAAACkgbzIAwBhemV4dF9maXJl + d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25z + L19uZXR3b3JrX2ludGVyZmFjZV9pcF9jb25maWd1cmF0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQD + FAAAAAgAMDB4U4PLgF/0BgAAXxYAAHMAAAAAAAAAAAAAAKSBF9EDAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX25ldHdv + cmtfaW50ZXJmYWNlX2xvYWRfYmFsYW5jZXJzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT + 61nRaToMAADgWAAAdwAAAAAAAAAAAAAApIGc2AMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr + cy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZh + Y2VfdGFwX2NvbmZpZ3VyYXRpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTWDPdEPYQ + AABN7QAAZQAAAAAAAAAAAAAApIFr5QMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy + MF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZhY2VzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTz9KH1lIQAADXvgAAbAAAAAAAAAAAAAAApIHk9gMA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8v + b3BlcmF0aW9ucy9fbmV0d29ya19tYW5hZ2VtZW50X2NsaWVudF9vcGVyYXRpb25zLnB5UEsBAhQD + FAAAAAgAMDB4U9Tkzr5IDAAAQl0AAGMAAAAAAAAAAAAAAKSBwAcEAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX25ldHdv + cmtfcHJvZmlsZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMZLhAmwgwAAMtrAABqAAAA + AAAAAAAAAACkgYkUBABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3Yy + MDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19uZXR3b3JrX3NlY3VyaXR5X2dyb3Vwc19vcGVyYXRp + b25zLnB5UEsBAhQDFAAAAAgAMDB4U1i+fePZDAAAAW0AAG0AAAAAAAAAAAAAAKSB0yEEAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJh + dGlvbnMvX25ldHdvcmtfdmlydHVhbF9hcHBsaWFuY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTZX8aiAUXAADUmQEAYwAAAAAAAAAAAAAApIE3LwQAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fbmV0d29ya193 + YXRjaGVyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U2m2UjEbBgAARxIAAFIAAAAAAAAA + AAAAAKSBvUYEAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf + MDVfMDEvYWlvL29wZXJhdGlvbnMvX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTu04KzV4Q + AABHzQAAYwAAAAAAAAAAAAAApIFITQQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy + MF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fcDJfc3Zwbl9nYXRld2F5c19vcGVy + YXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U9icJHKCDQAAnIcAAGIAAAAAAAAAAAAAAKSBJ14EAGF6 + ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29w + ZXJhdGlvbnMvX3BhY2tldF9jYXB0dXJlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uz+2 + NylJCAAAiCQAAHkAAAAAAAAAAAAAAKSBKWwEAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3BlZXJfZXhwcmVzc19yb3V0 + ZV9jaXJjdWl0X2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTFz1q+VQM + AAAGWAAAagAAAAAAAAAAAAAApIEJdQQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy + MF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fcHJpdmF0ZV9kbnNfem9uZV9ncm91 + cHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMKHbOYcAwAAExeAABkAAAAAAAAAAAAAACk + geWBBABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx + L2Fpby9vcGVyYXRpb25zL19wcml2YXRlX2VuZHBvaW50c19vcGVyYXRpb25zLnB5UEsBAhQDFAAA + AAgAMDB4UyTsAqlHEQAAM/MAAGgAAAAAAAAAAAAAAKSB144EAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv + cmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3ByaXZhdGVf + bGlua19zZXJ2aWNlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UysdbEDNDgAA8Z0AAGYA + AAAAAAAAAAAAAKSBpKAEAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEv + djIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3B1YmxpY19pcF9hZGRyZXNzZXNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFMlVPl/0gwAAItpAABlAAAAAAAAAAAAAACkgfWvBABhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRp + b25zL19wdWJsaWNfaXBfcHJlZml4ZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFODz3M9 + XAYAAGQTAABsAAAAAAAAAAAAAACkgUq9BABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19yZXNvdXJjZV9uYXZpZ2F0aW9u + X2xpbmtzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTcCQXZxkMAABOVAAAZQAAAAAAAAAA + AAAApIEwxAQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8w + NV8wMS9haW8vb3BlcmF0aW9ucy9fcm91dGVfZmlsdGVyX3J1bGVzX29wZXJhdGlvbnMucHlQSwEC + FAMUAAAACAAwMHhTCXMx7sQMAADYaAAAYAAAAAAAAAAAAAAApIHM0AQAYXpleHRfZmlyZXdhbGwv + dmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fcm91 + dGVfZmlsdGVyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U+kqGM6fDAAAy2cAAF8AAAAA + AAAAAAAAAKSBDt4EAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIw + MjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3JvdXRlX3RhYmxlc19vcGVyYXRpb25zLnB5UEsBAhQD + FAAAAAgAMDB4U13xjmTrCwAAWFIAAFkAAAAAAAAAAAAAAKSBKusEAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3JvdXRl + c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U3b7cqePDAAAKGwAAG0AAAAAAAAAAAAAAKSB + jPcEAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEv + YWlvL29wZXJhdGlvbnMvX3NlY3VyaXR5X3BhcnRuZXJfcHJvdmlkZXJzX29wZXJhdGlvbnMucHlQ + SwECFAMUAAAACAAwMHhTlbKcOh0MAADxVgAAYQAAAAAAAAAAAAAApIGmBAUAYXpleHRfZmlyZXdh + bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9f + c2VjdXJpdHlfcnVsZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPvx9bBXQYAAGQTAABs + AAAAAAAAAAAAAACkgUIRBQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx + L3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL19zZXJ2aWNlX2Fzc29jaWF0aW9uX2xpbmtzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT0yC0Ue0MAABrbAAAbAAAAAAAAAAAAAAApIEpGAUA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8v + b3BlcmF0aW9ucy9fc2VydmljZV9lbmRwb2ludF9wb2xpY2llc19vcGVyYXRpb25zLnB5UEsBAhQD + FAAAAAgAMDB4U1FRcklvDAAAo10AAHYAAAAAAAAAAAAAAKSBoCUFAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3NlcnZp + Y2VfZW5kcG9pbnRfcG9saWN5X2RlZmluaXRpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAw + MHhTmv2BwEMGAACVEQAAXwAAAAAAAAAAAAAApIGjMgUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fc2VydmljZV90YWdz + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTgCnobewNAAB4igAAWgAAAAAAAAAAAAAApIFj + OQUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9h + aW8vb3BlcmF0aW9ucy9fc3VibmV0c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U10vaqa6 + BgAAURQAAFkAAAAAAAAAAAAAAKSBx0cFAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3VzYWdlc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U6+nh6I2DAAAIFcAAGoAAAAAAAAAAAAAAKSB+E4FAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMv + X3ZpcnR1YWxfYXBwbGlhbmNlX3NpdGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTL3io + yF0HAACbHQAAaQAAAAAAAAAAAAAApIG2WwUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9hcHBsaWFuY2Vf + c2t1c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UwEfqRG4CgAAwUUAAG0AAAAAAAAAAAAA + AKSBmmMFAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVf + MDEvYWlvL29wZXJhdGlvbnMvX3ZpcnR1YWxfaHViX2JncF9jb25uZWN0aW9uX29wZXJhdGlvbnMu + cHlQSwECFAMUAAAACAAwMHhTl9cpGPcGAAAdFgAAbgAAAAAAAAAAAAAApIHdbgUAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9u + cy9fdmlydHVhbF9odWJfYmdwX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAw + MHhT5CKBZj8MAADkVAAAbwAAAAAAAAAAAAAApIFgdgUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9odWJf + aXBfY29uZmlndXJhdGlvbl9vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U4fPNYNZDAAALVcA + AG8AAAAAAAAAAAAAAKSBLIMFAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVf + MDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3ZpcnR1YWxfaHViX3JvdXRlX3RhYmxlX3Yy + X3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNVLwnwpQ0AAFmBAABfAAAAAAAAAAAAAACk + gRKQBQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx + L2Fpby9vcGVyYXRpb25zL192aXJ0dWFsX2h1YnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAw + eFNUQpcA0hAAAILrAAB2AAAAAAAAAAAAAACkgTSeBQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z + ZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL192aXJ0dWFsX25ldHdv + cmtfZ2F0ZXdheV9jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uyc3COmS + GQAAofgBAGsAAAAAAAAAAAAAAKSBmq8FAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3ZpcnR1YWxfbmV0d29ya19nYXRl + d2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U9ctBk8lDAAAU1gAAGsAAAAAAAAAAAAA + AKSBtckFAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVf + MDEvYWlvL29wZXJhdGlvbnMvX3ZpcnR1YWxfbmV0d29ya19wZWVyaW5nc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U3zggrSEDAAATWcAAGcAAAAAAAAAAAAAAKSBY9YFAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMv + X3ZpcnR1YWxfbmV0d29ya190YXBzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTb7MUFVYO + AABajwAAYwAAAAAAAAAAAAAApIFs4wUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy + MF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3Jrc19vcGVy + YXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U6URXVs+DAAAJlYAAGoAAAAAAAAAAAAAAKSBQ/IFAGF6 + ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29w + ZXJhdGlvbnMvX3ZpcnR1YWxfcm91dGVyX3BlZXJpbmdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhT5esC4VwMAACEXQAAYgAAAAAAAAAAAAAApIEJ/wUAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9y + b3V0ZXJzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTnnV9wa4MAADAZwAAXwAAAAAAAAAA + AAAApIHlCwYAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8w + NV8wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF93YW5zX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTOLCGhGQMAABKVAAAYgAAAAAAAAAAAAAApIEQGQYAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fdnBuX2Nvbm5l + Y3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTKOSxIEoNAADIfQAAXwAAAAAAAAAA + AAAApIH0JQYAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8w + NV8wMS9haW8vb3BlcmF0aW9ucy9fdnBuX2dhdGV3YXlzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTHOmmO0MHAABdFwAAZwAAAAAAAAAAAAAApIG7MwYAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9ucy9fdnBuX2xpbmtf + Y29ubmVjdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNR4whb/AgAAKAfAACIAAAA + AAAAAAAAAACkgYM7BgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3Yy + MDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL192cG5fc2VydmVyX2NvbmZpZ3VyYXRpb25zX2Fzc29j + aWF0ZWRfd2l0aF92aXJ0dWFsX3dhbl9vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U5KZAJrM + DAAAum0AAGwAAAAAAAAAAAAAAKSBJUUGAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3Zwbl9zZXJ2ZXJfY29uZmlndXJh + dGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMaCu7XiAYAACEUAABsAAAAAAAAAAAA + AACkgXtSBgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1 + XzAxL2Fpby9vcGVyYXRpb25zL192cG5fc2l0ZV9saW5rX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMu + cHlQSwECFAMUAAAACAAwMHhTvI35RfUHAABsIQAAYQAAAAAAAAAAAAAApIGNWQYAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9haW8vb3BlcmF0aW9u + cy9fdnBuX3NpdGVfbGlua3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFN8YcuyKAkAAOYf + AABqAAAAAAAAAAAAAACkgQFiBgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1 + XzAxL3YyMDIwXzA1XzAxL2Fpby9vcGVyYXRpb25zL192cG5fc2l0ZXNfY29uZmlndXJhdGlvbl9v + cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U3Y1AsGhDAAAwWYAAFwAAAAAAAAAAAAAAKSBsWsG + AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlv + L29wZXJhdGlvbnMvX3Zwbl9zaXRlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UzXGenas + CwAA1FAAAHQAAAAAAAAAAAAAAKSBzHgGAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDVfMDEvdjIwMjBfMDVfMDEvYWlvL29wZXJhdGlvbnMvX3dlYl9hcHBsaWNhdGlvbl9maXJl + d2FsbF9wb2xpY2llc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U51NV+nfJQAAkV8BAEcA + AAAAAAAAAAAAAKSBCoUGAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEv + djIwMjBfMDVfMDEvbW9kZWxzL19faW5pdF9fLnB5UEsBAhQDFAAAAAgAMDB4U72ZuuYNjgEA54IN + AEYAAAAAAAAAAAAAAKSBTqsGAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVf + MDEvdjIwMjBfMDVfMDEvbW9kZWxzL19tb2RlbHMucHlQSwECFAMUAAAACAAwMHhTkY99uWu0AQDC + sQ4ASgAAAAAAAAAAAAAApIG/OQgAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + NV8wMS92MjAyMF8wNV8wMS9tb2RlbHMvX21vZGVsc19weTMucHlQSwECFAMUAAAACAAwMHhTpPlf + XlMcAAACiAAAXwAAAAAAAAAAAAAApIGS7gkAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9tb2RlbHMvX25ldHdvcmtfbWFuYWdlbWVudF9jbGllbnRf + ZW51bXMucHlQSwECFAMUAAAACAAwMHhT9Lft/gQIAACXMQAASwAAAAAAAAAAAAAApIFiCwoAYXpl + eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRp + b25zL19faW5pdF9fLnB5UEsBAhQDFAAAAAgAMDB4UzIqFC8sDAAA51kAAH8AAAAAAAAAAAAAAKSB + zxMKAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEv + b3BlcmF0aW9ucy9fYXBwbGljYXRpb25fZ2F0ZXdheV9wcml2YXRlX2VuZHBvaW50X2Nvbm5lY3Rp + b25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTtr3pRhoHAAAUFwAAeQAAAAAAAAAAAAAA + pIGYIAoAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8w + MS9vcGVyYXRpb25zL19hcHBsaWNhdGlvbl9nYXRld2F5X3ByaXZhdGVfbGlua19yZXNvdXJjZXNf + b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMEoJMBVRMAANYSAQBjAAAAAAAAAAAAAACkgUko + CgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29w + ZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3YXlzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAw + MHhT8f0eg6wMAAAobQAAagAAAAAAAAAAAAAApIEfPAoAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19hcHBsaWNhdGlvbl9zZWN1 + cml0eV9ncm91cHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPmSSUd1gYAAPYUAABkAAAA + AAAAAAAAAACkgVNJCgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3Yy + MDIwXzA1XzAxL29wZXJhdGlvbnMvX2F2YWlsYWJsZV9kZWxlZ2F0aW9uc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U8Be2+viBgAAFBUAAGoAAAAAAAAAAAAAAKSBq1AKAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fYXZh + aWxhYmxlX2VuZHBvaW50X3NlcnZpY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT2hWr + YmwHAABGJAAAbwAAAAAAAAAAAAAApIEVWAoAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19hdmFpbGFibGVfcHJpdmF0ZV9lbmRw + b2ludF90eXBlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U2xuLqEbBwAAQBYAAHMAAAAA + AAAAAAAAAKSBDmAKAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIw + MjBfMDVfMDEvb3BlcmF0aW9ucy9fYXZhaWxhYmxlX3Jlc291cmNlX2dyb3VwX2RlbGVnYXRpb25z + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTX5O/W1oHAABwIwAAaAAAAAAAAAAAAAAApIG6 + ZwoAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9v + cGVyYXRpb25zL19hdmFpbGFibGVfc2VydmljZV9hbGlhc2VzX29wZXJhdGlvbnMucHlQSwECFAMU + AAAACAAwMHhTTjZC/aQGAAAoFAAAZwAAAAAAAAAAAAAApIGabwoAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19henVyZV9maXJl + d2FsbF9mcWRuX3RhZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOkHkf49gwAAF91AABe + AAAAAAAAAAAAAACkgcN2CgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx + L3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2F6dXJlX2ZpcmV3YWxsc19vcGVyYXRpb25zLnB5UEsB + AhQDFAAAAAgAMDB4U09Rw2YUDAAAF1sAAFwAAAAAAAAAAAAAAKSBNYQKAGF6ZXh0X2ZpcmV3YWxs + L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fYmFzdGlv + bl9ob3N0c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U9nBLPCcBgAADhQAAGYAAAAAAAAA + AAAAAKSBw5AKAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf + MDVfMDEvb3BlcmF0aW9ucy9fYmdwX3NlcnZpY2VfY29tbXVuaXRpZXNfb3BlcmF0aW9ucy5weVBL + AQIUAxQAAAAIADAweFPnwluFnQ4AAKGyAABiAAAAAAAAAAAAAACkgeOXCgBhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2Nvbm5l + Y3Rpb25fbW9uaXRvcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMv8UsY8AoAAGFQAABj + AAAAAAAAAAAAAACkgQCnCgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx + L3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2Rkb3NfY3VzdG9tX3BvbGljaWVzX29wZXJhdGlvbnMu + cHlQSwECFAMUAAAACAAwMHhT/e1OgbcMAAD4agAAZAAAAAAAAAAAAAAApIFxsgoAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19k + ZG9zX3Byb3RlY3Rpb25fcGxhbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFO/S88b+AcA + AAwjAABlAAAAAAAAAAAAAACkgaq/CgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw + XzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2RlZmF1bHRfc2VjdXJpdHlfcnVsZXNfb3Bl + cmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFObXWhtTAwAAElXAABzAAAAAAAAAAAAAACkgSXICgBh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJh + dGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9hdXRob3JpemF0aW9uc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4UyKF1Ta1DAAAIl0AAHAAAAAAAAAAAAAAAKSBAtUKAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fZXhw + cmVzc19yb3V0ZV9jaXJjdWl0X2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAw + MHhTuH3cNkgMAADOVQAAbQAAAAAAAAAAAAAApIFF4goAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19leHByZXNzX3JvdXRlX2Np + cmN1aXRfcGVlcmluZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOnRWvusg8AAMjRAABl + AAAAAAAAAAAAAACkgRjvCgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx + L3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdHNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFN4PIeFTgsAAElVAABoAAAAAAAAAAAAAACkgU3/CgBhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMv + X2V4cHJlc3Nfcm91dGVfY29ubmVjdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFO9 + u3YUPAwAAEFYAAB2AAAAAAAAAAAAAACkgSELCwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz + L3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY3Jvc3Nf + Y29ubmVjdGlvbl9wZWVyaW5nc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U7QEdZm6DgAA + WKoAAG4AAAAAAAAAAAAAAKSB8RcLAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jcm9zc19jb25uZWN0 + aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U0TtRptqCwAAelgAAGUAAAAAAAAAAAAA + AKSBNycLAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVf + MDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQD + FAAAAAgAMDB4UwKkBP8NCAAAhCIAAGIAAAAAAAAAAAAAAKSBJDMLAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19y + b3V0ZV9saW5rc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UzYJfrfgBwAAMx8AAGwAAAAA + AAAAAAAAAKSBsTsLAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIw + MjBfMDVfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9wb3J0c19sb2NhdGlvbnNfb3BlcmF0 + aW9ucy5weVBLAQIUAxQAAAAIADAweFM+G2iMmgwAAIJqAABiAAAAAAAAAAAAAACkgRtECwBhemV4 + dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlv + bnMvX2V4cHJlc3Nfcm91dGVfcG9ydHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFM/331W + ogYAAFMUAABuAAAAAAAAAAAAAACkgTVRCwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfc2VydmljZV9w + cm92aWRlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOc8lBJbAwAAOFcAABgAAAAAAAA + AAAAAACkgWNYCwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIw + XzA1XzAxL29wZXJhdGlvbnMvX2ZpcmV3YWxsX3BvbGljaWVzX29wZXJhdGlvbnMucHlQSwECFAMU + AAAACAAwMHhTGlgtqD0MAADHWQAAdQAAAAAAAAAAAAAApIFNZQsAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19maXJld2FsbF9w + b2xpY3lfcnVsZV9jb2xsZWN0aW9uX2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4 + U+FH21NvDAAAHFYAAFgAAAAAAAAAAAAAAKSBHXILAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nk + a3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fZmxvd19sb2dzX29wZXJhdGlv + bnMucHlQSwECFAMUAAAACAAwMHhTRKLabUUMAABUVQAAXwAAAAAAAAAAAAAApIECfwsAYXpleHRf + ZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25z + L19odWJfcm91dGVfdGFibGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTsMneCF4MAAD/ + VwAAbgAAAAAAAAAAAAAApIHEiwsAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + NV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19odWJfdmlydHVhbF9uZXR3b3JrX2Nvbm5lY3Rp + b25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTBublgXQMAACqVwAAYAAAAAAAAAAAAAAA + pIGumAsAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8w + MS9vcGVyYXRpb25zL19pbmJvdW5kX25hdF9ydWxlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA + MDB4U4qdLe7TDAAAmGkAAF0AAAAAAAAAAAAAAKSBoKULAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk + X3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9faXBfYWxsb2NhdGlvbnNf + b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOse18fBQ0AABFqAABYAAAAAAAAAAAAAACkge6y + CwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29w + ZXJhdGlvbnMvX2lwX2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uwo7FZY6DAAA + tlcAAHIAAAAAAAAAAAAAAKSBacALAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fbG9hZF9iYWxhbmNlcl9iYWNrZW5kX2FkZHJl + c3NfcG9vbHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFN4YjPm+QcAAFkjAAB3AAAAAAAA + AAAAAACkgTPNCwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIw + XzA1XzAxL29wZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJfZnJvbnRlbmRfaXBfY29uZmlndXJhdGlv + bnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFP4lPPT/AcAANwiAABxAAAAAAAAAAAAAACk + gcHVCwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx + L29wZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJfbG9hZF9iYWxhbmNpbmdfcnVsZXNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFOrwuuuFQcAAFYWAABvAAAAAAAAAAAAAACkgUzeCwBhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMv + X2xvYWRfYmFsYW5jZXJfbmV0d29ya19pbnRlcmZhY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTXTzkyPcHAABcIgAAawAAAAAAAAAAAAAApIHu5QsAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2Vy + X291dGJvdW5kX3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTACYR2tkHAACZIQAA + YwAAAAAAAAAAAAAApIFu7gsAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8w + MS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX3Byb2Jlc19vcGVyYXRpb25z + LnB5UEsBAhQDFAAAAAgAMDB4UxKKvJW+DAAATGkAAF0AAAAAAAAAAAAAAKSByPYLAGF6ZXh0X2Zp + cmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9f + bG9hZF9iYWxhbmNlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMVv0m4cAwAAGtfAABl + AAAAAAAAAAAAAACkgQEEDABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAx + L3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX2xvY2FsX25ldHdvcmtfZ2F0ZXdheXNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFNooYL2zwwAAB5pAABbAAAAAAAAAAAAAACkgfQQDABhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMv + X25hdF9nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U5oycUXtBwAAYCMAAHIA + AAAAAAAAAAAAAKSBPB4MAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEv + djIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZhY2VfaXBfY29uZmlndXJhdGlv + bnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNVLTSHFgcAALAWAABvAAAAAAAAAAAAAACk + gbkmDABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx + L29wZXJhdGlvbnMvX25ldHdvcmtfaW50ZXJmYWNlX2xvYWRfYmFsYW5jZXJzX29wZXJhdGlvbnMu + cHlQSwECFAMUAAAACAAwMHhTKwd4ME8MAAC4WQAAcwAAAAAAAAAAAAAApIFcLgwAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19u + ZXR3b3JrX2ludGVyZmFjZV90YXBfY29uZmlndXJhdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQA + AAAIADAweFOlRNwrFhEAABjvAABhAAAAAAAAAAAAAACkgTw7DABhemV4dF9maXJld2FsbC92ZW5k + b3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX25ldHdvcmtfaW50 + ZXJmYWNlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U9DvgJqAEAAAxb8AAGgAAAAAAAAA + AAAAAKSB0UwMAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf + MDVfMDEvb3BlcmF0aW9ucy9fbmV0d29ya19tYW5hZ2VtZW50X2NsaWVudF9vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U5MQbPRqDAAAFF4AAF8AAAAAAAAAAAAAAKSB110MAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fbmV0 + d29ya19wcm9maWxlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U5/y/H7jDAAAn2wAAGYA + AAAAAAAAAAAAAKSBvmoMAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEv + djIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fbmV0d29ya19zZWN1cml0eV9ncm91cHNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFNI8wE2+wwAANVtAABpAAAAAAAAAAAAAACkgSV4DABhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMv + X25ldHdvcmtfdmlydHVhbF9hcHBsaWFuY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT + 8nUmakgXAADqnAEAXwAAAAAAAAAAAAAApIGnhQwAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr + cy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19uZXR3b3JrX3dhdGNoZXJzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT5qBYWDgGAACIEgAATgAAAAAAAAAAAAAApIFsnQwA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVy + YXRpb25zL19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U9wigUhyEAAAyc4AAF8AAAAAAAAA + AAAAAKSBEKQMAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBf + MDVfMDEvb3BlcmF0aW9ucy9fcDJfc3Zwbl9nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAA + AAgAMDB4Uy2RtLaZDQAA1ogAAF4AAAAAAAAAAAAAAKSB/7QMAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv + cmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fcGFja2V0X2NhcHR1 + cmVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTFT4o2G8IAAAYJQAAdQAAAAAAAAAAAAAA + pIEUwwwAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8w + MS9vcGVyYXRpb25zL19wZWVyX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9jb25uZWN0aW9uc19vcGVy + YXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U3tj5DZxDAAA3lgAAGYAAAAAAAAAAAAAAKSBFswMAGF6 + ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0 + aW9ucy9fcHJpdmF0ZV9kbnNfem9uZV9ncm91cHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAw + eFMmRKmUiwwAAPFeAABgAAAAAAAAAAAAAACkgQvZDABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z + ZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3ByaXZhdGVfZW5kcG9pbnRz + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTFhXFRl4RAADU9AAAZAAAAAAAAAAAAAAApIEU + 5gwAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9v + cGVyYXRpb25zL19wcml2YXRlX2xpbmtfc2VydmljZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAI + ADAweFMiHPNk7g4AADifAABiAAAAAAAAAAAAAACkgfT3DABhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3B1YmxpY19pcF9hZGRy + ZXNzZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOtFr4L8AwAAF9qAABhAAAAAAAAAAAA + AACkgWIHDQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1 + XzAxL29wZXJhdGlvbnMvX3B1YmxpY19pcF9wcmVmaXhlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAA + AAgAMDB4U4E6u6eLBgAA+BMAAGgAAAAAAAAAAAAAAKSB0RQNAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv + cmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fcmVzb3VyY2VfbmF2 + aWdhdGlvbl9saW5rc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U1j9Qj83DAAAJlUAAGEA + AAAAAAAAAAAAAKSB4hsNAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEv + djIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fcm91dGVfZmlsdGVyX3J1bGVzX29wZXJhdGlvbnMucHlQ + SwECFAMUAAAACAAwMHhT6TjDzOUMAACsaQAAXAAAAAAAAAAAAAAApIGYKA0AYXpleHRfZmlyZXdh + bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19yb3V0 + ZV9maWx0ZXJzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTPPPDsroMAACfaAAAWwAAAAAA + AAAAAAAApIH3NQ0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAy + MF8wNV8wMS9vcGVyYXRpb25zL19yb3V0ZV90YWJsZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAI + ADAweFPbRwV7BgwAADBTAABVAAAAAAAAAAAAAACkgSpDDQBhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3JvdXRlc19vcGVyYXRp + b25zLnB5UEsBAhQDFAAAAAgAMDB4U9T3XBKtDAAA9mwAAGkAAAAAAAAAAAAAAKSBo08NAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9u + cy9fc2VjdXJpdHlfcGFydG5lcl9wcm92aWRlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAw + eFMzy92ROAwAAMlXAABdAAAAAAAAAAAAAACkgddcDQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z + ZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3NlY3VyaXR5X3J1bGVzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTPsdui4wGAAD4EwAAaAAAAAAAAAAAAAAApIGKaQ0A + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVy + YXRpb25zL19zZXJ2aWNlX2Fzc29jaWF0aW9uX2xpbmtzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTLNMoJw0NAAA/bQAAaAAAAAAAAAAAAAAApIGccA0AYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19zZXJ2aWNlX2VuZHBv + aW50X3BvbGljaWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTwUUS3YcMAAB7XgAAcgAA + AAAAAAAAAAAApIEvfg0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92 + MjAyMF8wNV8wMS9vcGVyYXRpb25zL19zZXJ2aWNlX2VuZHBvaW50X3BvbGljeV9kZWZpbml0aW9u + c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uz7ts0lyBgAAGRIAAFsAAAAAAAAAAAAAAKSB + RosNAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEv + b3BlcmF0aW9ucy9fc2VydmljZV90YWdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTXEab + Pv4NAADYiwAAVgAAAAAAAAAAAAAApIExkg0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL19zdWJuZXRzX29wZXJhdGlvbnMucHlQ + SwECFAMUAAAACAAwMHhTgvLR394GAACaFAAAVQAAAAAAAAAAAAAApIGjoA0AYXpleHRfZmlyZXdh + bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL191c2Fn + ZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPZRDOgUgwAAPhXAABmAAAAAAAAAAAAAACk + gfSnDQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx + L29wZXJhdGlvbnMvX3ZpcnR1YWxfYXBwbGlhbmNlX3NpdGVzX29wZXJhdGlvbnMucHlQSwECFAMU + AAAACAAwMHhTOy1AZ4UHAAD7HQAAZQAAAAAAAAAAAAAApIHKtA0AYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL192aXJ0dWFsX2Fw + cGxpYW5jZV9za3VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTQpdOouMKAACtRgAAaQAA + AAAAAAAAAAAApIHSvA0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92 + MjAyMF8wNV8wMS9vcGVyYXRpb25zL192aXJ0dWFsX2h1Yl9iZ3BfY29ubmVjdGlvbl9vcGVyYXRp + b25zLnB5UEsBAhQDFAAAAAgAMDB4U0AA7x8ZBwAAbhYAAGoAAAAAAAAAAAAAAKSBPMgNAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9u + cy9fdmlydHVhbF9odWJfYmdwX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAw + MHhTXCrnel4MAAC8VQAAawAAAAAAAAAAAAAApIHdzw0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL192aXJ0dWFsX2h1Yl9pcF9j + b25maWd1cmF0aW9uX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTbvdTTHoMAAAFWAAAawAA + AAAAAAAAAAAApIHE3A0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92 + MjAyMF8wNV8wMS9vcGVyYXRpb25zL192aXJ0dWFsX2h1Yl9yb3V0ZV90YWJsZV92Ml9zX29wZXJh + dGlvbnMucHlQSwECFAMUAAAACAAwMHhTQniEv7wNAABUggAAWwAAAAAAAAAAAAAApIHH6Q0AYXpl + eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRp + b25zL192aXJ0dWFsX2h1YnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNYuBT75hAAAELt + AAByAAAAAAAAAAAAAACkgfz3DQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1 + XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfbmV0d29ya19nYXRld2F5X2Nvbm5l + Y3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTyZi0jrQZAAAp/AEAZwAAAAAAAAAA + AAAApIFyCQ4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8w + NV8wMS9vcGVyYXRpb25zL192aXJ0dWFsX25ldHdvcmtfZ2F0ZXdheXNfb3BlcmF0aW9ucy5weVBL + AQIUAxQAAAAIADAweFMxhGLBQAwAACtZAABnAAAAAAAAAAAAAACkgasjDgBhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3ZpcnR1 + YWxfbmV0d29ya19wZWVyaW5nc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U3eV/xWgDAAA + G2gAAGMAAAAAAAAAAAAAAKSBcDAOAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3JrX3RhcHNfb3BlcmF0 + aW9ucy5weVBLAQIUAxQAAAAIADAweFPwGxH8dA4AAIuQAABfAAAAAAAAAAAAAACkgZE9DgBhemV4 + dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlv + bnMvX3ZpcnR1YWxfbmV0d29ya3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFODaOjVWQwA + AP5WAABmAAAAAAAAAAAAAACkgYJMDgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw + XzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfcm91dGVyX3BlZXJpbmdzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTRwmGSHgMAAApXgAAXgAAAAAAAAAAAAAApIFfWQ4A + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVy + YXRpb25zL192aXJ0dWFsX3JvdXRlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMEa3m4 + zQwAAI5oAABbAAAAAAAAAAAAAACkgVNmDgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfd2Fuc19vcGVyYXRpb25z + LnB5UEsBAhQDFAAAAAgAMDB4U2VMIFOEDAAAIlUAAF4AAAAAAAAAAAAAAKSBmXMOAGF6ZXh0X2Zp + cmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9f + dnBuX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTYzMO7GcNAAC3fgAA + WwAAAAAAAAAAAAAApIGZgA4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8w + MS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL192cG5fZ2F0ZXdheXNfb3BlcmF0aW9ucy5weVBLAQIU + AxQAAAAIADAweFPP0e50aAcAALYXAABjAAAAAAAAAAAAAACkgXmODgBhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29wZXJhdGlvbnMvX3Zwbl9saW5r + X2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT1WczzBcJAAAMIAAAhAAA + AAAAAAAAAAAApIFilg4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92 + MjAyMF8wNV8wMS9vcGVyYXRpb25zL192cG5fc2VydmVyX2NvbmZpZ3VyYXRpb25zX2Fzc29jaWF0 + ZWRfd2l0aF92aXJ0dWFsX3dhbl9vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U7Ag9PLoDAAA + iG4AAGgAAAAAAAAAAAAAAKSBG6AOAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fdnBuX3NlcnZlcl9jb25maWd1cmF0aW9uc19v + cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U5WmJlu6BgAAvRQAAGgAAAAAAAAAAAAAAKSBia0O + AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3Bl + cmF0aW9ucy9fdnBuX3NpdGVfbGlua19jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAA + AAgAMDB4U+A76+MeCAAA7CEAAF0AAAAAAAAAAAAAAKSBybQOAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv + cmVkX3Nka3MvdjIwMjBfMDVfMDEvdjIwMjBfMDVfMDEvb3BlcmF0aW9ucy9fdnBuX3NpdGVfbGlu + a3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFP4oik7TgkAAGIgAABmAAAAAAAAAAAAAACk + gWK9DgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAx + L29wZXJhdGlvbnMvX3Zwbl9zaXRlc19jb25maWd1cmF0aW9uX29wZXJhdGlvbnMucHlQSwECFAMU + AAAACAAwMHhTCZWvDMYMAACPZwAAWAAAAAAAAAAAAAAApIE0xw4AYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wNV8wMS92MjAyMF8wNV8wMS9vcGVyYXRpb25zL192cG5fc2l0ZXNf + b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMXABvl1AsAAHFRAABwAAAAAAAAAAAAAACkgXDU + DgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA1XzAxL3YyMDIwXzA1XzAxL29w + ZXJhdGlvbnMvX3dlYl9hcHBsaWNhdGlvbl9maXJld2FsbF9wb2xpY2llc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U0rCsHc5AQAAnwIAADQAAAAAAAAAAAAAAKSB0uAOAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvX19pbml0X18ucHlQSwECFAMUAAAACAAwMHhT + M6i0v/wDAAB5DAAAOgAAAAAAAAAAAAAApIFd4g4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr + cy92MjAyMF8wN18wMS9fY29uZmlndXJhdGlvbi5weVBLAQIUAxQAAAAIADAweFMbOBXa5H0AAAIP + CgBGAAAAAAAAAAAAAACkgbHmDgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 + XzAxL19uZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50LnB5UEsBAhQDFAAAAAgAMDB4U2Kr23KVCgAA + 34AAAD0AAAAAAAAAAAAAAKSB+WQPAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDdfMDEvX29wZXJhdGlvbnNfbWl4aW4ucHlQSwECFAMUAAAACAAwMHhTUYPi1Z0AAABaAQAANAAA + AAAAAAAAAAAApIHpbw8AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS9f + dmVyc2lvbi5weVBLAQIUAxQAAAAIADAweFPQOY2CtQAAAM4BAAAyAAAAAAAAAAAAAACkgdhwDwBh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL21vZGVscy5weVBLAQIUAxQA + AAAIADAweFOxBS8uCAEAADoCAAA4AAAAAAAAAAAAAACkgd1xDwBhemV4dF9maXJld2FsbC92ZW5k + b3JlZF9zZGtzL3YyMDIwXzA3XzAxL2Fpby9fX2luaXRfXy5weVBLAQIUAxQAAAAIADAweFNlKWlw + /gMAAGUMAAA+AAAAAAAAAAAAAACkgTtzDwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA3XzAxL2Fpby9fY29uZmlndXJhdGlvbi5weVBLAQIUAxQAAAAIADAweFPTgILF230AAMRa + CgBKAAAAAAAAAAAAAACkgZV3DwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 + XzAxL2Fpby9fbmV0d29ya19tYW5hZ2VtZW50X2NsaWVudC5weVBLAQIUAxQAAAAIADAweFMFXlxk + vAoAAAyEAABBAAAAAAAAAAAAAACkgdj1DwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA3XzAxL2Fpby9fb3BlcmF0aW9uc19taXhpbi5weVBLAQIUAxQAAAAIADAweFNKwrB3OQEA + AJ8CAABAAAAAAAAAAAAAAACkgfMAEABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw + XzA3XzAxL3YyMDIwXzA3XzAxL19faW5pdF9fLnB5UEsBAhQDFAAAAAgAMDB4U+h9sOU2BAAACQ0A + AEYAAAAAAAAAAAAAAKSBigIQAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvX2NvbmZpZ3VyYXRpb24ucHlQSwECFAMUAAAACAAwMHhTFL3wE2sTAADD + qgAAUgAAAAAAAAAAAAAApIEkBxAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS92MjAyMF8wN18wMS9fbmV0d29ya19tYW5hZ2VtZW50X2NsaWVudC5weVBLAQIUAxQAAAAI + ADAweFOxBS8uCAEAADoCAABEAAAAAAAAAAAAAACkgf8aEABhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9fX2luaXRfXy5weVBLAQIUAxQAAAAI + ADAweFO7kCNGJwQAANAMAABKAAAAAAAAAAAAAACkgWkcEABhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9fY29uZmlndXJhdGlvbi5weVBLAQIU + AxQAAAAIADAweFOZO3AVYhMAADCsAABWAAAAAAAAAAAAAACkgfggEABhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9fbmV0d29ya19tYW5hZ2Vt + ZW50X2NsaWVudC5weVBLAQIUAxQAAAAIADAweFPp9KUvSggAADwzAABPAAAAAAAAAAAAAACkgc40 + EABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fp + by9vcGVyYXRpb25zL19faW5pdF9fLnB5UEsBAhQDFAAAAAgAMDB4U8F8lyAVDAAAD1kAAIMAAAAA + AAAAAAAAAKSBhT0QAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIw + MjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3YXlfcHJpdmF0ZV9lbmRw + b2ludF9jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U+Zq6535BgAAwxYA + AH0AAAAAAAAAAAAAAKSBO0oQAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3YXlfcHJpdmF0 + ZV9saW5rX3Jlc291cmNlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U+bacVozEwAA0xAB + AGcAAAAAAAAAAAAAAKSBz1EQAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3YXlzX29wZXJh + dGlvbnMucHlQSwECFAMUAAAACAAwMHhTqzaiA48MAABabAAAbgAAAAAAAAAAAAAApIGHZRAAYXpl + eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3Bl + cmF0aW9ucy9fYXBwbGljYXRpb25fc2VjdXJpdHlfZ3JvdXBzX29wZXJhdGlvbnMucHlQSwECFAMU + AAAACAAwMHhTyWQHZ7QGAACtFAAAaAAAAAAAAAAAAAAApIGichAAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fYXZhaWxh + YmxlX2RlbGVnYXRpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTEkViDr4GAADLFAAA + bgAAAAAAAAAAAAAApIHceRAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18w + MS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fYXZhaWxhYmxlX2VuZHBvaW50X3NlcnZpY2Vz + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT3aQwjk4HAAD2IwAAcwAAAAAAAAAAAAAApIEm + gRAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9h + aW8vb3BlcmF0aW9ucy9fYXZhaWxhYmxlX3ByaXZhdGVfZW5kcG9pbnRfdHlwZXNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFO3ezjY9QYAAO8VAAB3AAAAAAAAAAAAAACkgQWJEABhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRp + b25zL19hdmFpbGFibGVfcmVzb3VyY2VfZ3JvdXBfZGVsZWdhdGlvbnNfb3BlcmF0aW9ucy5weVBL + AQIUAxQAAAAIADAweFN2v4y8OAcAACAjAABsAAAAAAAAAAAAAACkgY+QEABhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19h + dmFpbGFibGVfc2VydmljZV9hbGlhc2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTPvSh + sIQGAADnEwAAawAAAAAAAAAAAAAApIFRmBAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fYXp1cmVfZmlyZXdhbGxfZnFk + bl90YWdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT5OnS49wMAACPdAAAYgAAAAAAAAAA + AAAApIFenxAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8w + N18wMS9haW8vb3BlcmF0aW9ucy9fYXp1cmVfZmlyZXdhbGxzX29wZXJhdGlvbnMucHlQSwECFAMU + AAAACAAwMHhTZC//NP8LAAB4WgAAYAAAAAAAAAAAAAAApIG6rBAAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fYmFzdGlv + bl9ob3N0c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uz6K1Nx9BgAAzRMAAGoAAAAAAAAA + AAAAAKSBN7kQAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBf + MDdfMDEvYWlvL29wZXJhdGlvbnMvX2JncF9zZXJ2aWNlX2NvbW11bml0aWVzX29wZXJhdGlvbnMu + cHlQSwECFAMUAAAACAAwMHhTvflG6+AOAABssgAAZgAAAAAAAAAAAAAApIE8wBAAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9u + cy9fY29ubmVjdGlvbl9tb25pdG9yc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U8gWUqLA + DAAAeWkAAGUAAAAAAAAAAAAAAKSBoM8QAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX2N1c3RvbV9pcF9wcmVmaXhlc19v + cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U5nYB0XMCgAAbk8AAGcAAAAAAAAAAAAAAKSB49wQ + AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlv + L29wZXJhdGlvbnMvX2Rkb3NfY3VzdG9tX3BvbGljaWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTmNAYj5gMAAAqagAAaAAAAAAAAAAAAAAApIE06BAAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fZGRvc19wcm90 + ZWN0aW9uX3BsYW5zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTTJN1E88HAACMIgAAaQAA + AAAAAAAAAAAApIFS9RAAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92 + MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fZGVmYXVsdF9zZWN1cml0eV9ydWxlc19vcGVyYXRp + b25zLnB5UEsBAhQDFAAAAAgAMDB4U/IFqV7tCwAAylsAAGUAAAAAAAAAAAAAAKSBqP0QAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJh + dGlvbnMvX2RzY3BfY29uZmlndXJhdGlvbl9vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U9zU + L6UxDAAAcVYAAHcAAAAAAAAAAAAAAKSBGAoRAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2ly + Y3VpdF9hdXRob3JpemF0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U6CTp22gDAAA + GlwAAHQAAAAAAAAAAAAAAKSB3hYRAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9j + b25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UxBDS3wsDAAA9lQAAHEAAAAA + AAAAAAAAAKSBECQRAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIw + MjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9wZWVyaW5nc19v + cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U73GAU+eDwAA4c8AAGkAAAAAAAAAAAAAAKSByzAR + AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlv + L29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdHNfb3BlcmF0aW9ucy5weVBLAQIUAxQA + AAAIADAweFMmnAuIKwsAADZUAABsAAAAAAAAAAAAAACkgfBAEQBhemV4dF9maXJld2FsbC92ZW5k + b3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19leHByZXNz + X3JvdXRlX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTBwZgOR0MAABp + VwAAegAAAAAAAAAAAAAApIGlTBEAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jcm9zc19jb25u + ZWN0aW9uX3BlZXJpbmdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT581JpZsOAADoqAAA + cgAAAAAAAAAAAAAApIFaWREAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18w + MS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jcm9zc19jb25uZWN0 + aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U+9It3RDCwAAgFcAAGkAAAAAAAAAAAAA + AKSBhWgRAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdf + MDEvYWlvL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfZ2F0ZXdheXNfb3BlcmF0aW9ucy5weVBL + AQIUAxQAAAAIADAweFPjMJzL5QcAAAQiAABmAAAAAAAAAAAAAACkgU90EQBhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19l + eHByZXNzX3JvdXRlX2xpbmtzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTHHRQW7gHAADT + HgAAcAAAAAAAAAAAAAAApIG4fBEAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9wb3J0c19sb2Nh + dGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNRmOaYMA0AAMh3AABmAAAAAAAAAAAA + AACkgf6EEQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3 + XzAxL2Fpby9vcGVyYXRpb25zL19leHByZXNzX3JvdXRlX3BvcnRzX29wZXJhdGlvbnMucHlQSwEC + FAMUAAAACAAwMHhTe+oVPYQGAAASFAAAcgAAAAAAAAAAAAAApIGykhEAYXpleHRfZmlyZXdhbGwv + dmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fZXhw + cmVzc19yb3V0ZV9zZXJ2aWNlX3Byb3ZpZGVyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4 + U+EJxo1SDAAAPFwAAGQAAAAAAAAAAAAAAKSBxpkRAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nk + a3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX2ZpcmV3YWxsX3BvbGlj + aWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTzpG1LiMMAADvWAAAeQAAAAAAAAAAAAAA + pIGaphEAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18w + MS9haW8vb3BlcmF0aW9ucy9fZmlyZXdhbGxfcG9saWN5X3J1bGVfY29sbGVjdGlvbl9ncm91cHNf + b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOVnjMhwwwAAGpjAABcAAAAAAAAAAAAAACkgVSz + EQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fp + by9vcGVyYXRpb25zL19mbG93X2xvZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMRFpq/ + KQwAAHxUAABjAAAAAAAAAAAAAACkgZHAEQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19odWJfcm91dGVfdGFibGVzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTO8ZD/UUMAAAnVwAAcgAAAAAAAAAAAAAApIE7zREA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8v + b3BlcmF0aW9ucy9faHViX3ZpcnR1YWxfbmV0d29ya19jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U1qBP9pTDAAAzFYAAGQAAAAAAAAAAAAAAKSBENoRAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMv + X2luYm91bmRfbmF0X3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT6EAjwKEJAAA5 + JQAAaAAAAAAAAAAAAAAApIHl5hEAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9faW5ib3VuZF9zZWN1cml0eV9ydWxlX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTyz0Rr7YMAADEaAAAYQAAAAAAAAAAAAAApIEM8REA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8v + b3BlcmF0aW9ucy9faXBfYWxsb2NhdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMQ + kQhn5wwAAD1pAABcAAAAAAAAAAAAAACkgUH+EQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz + L3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19pcF9ncm91cHNfb3BlcmF0 + aW9ucy5weVBLAQIUAxQAAAAIADAweFOrHjm3FAwAAN5WAAB2AAAAAAAAAAAAAACkgaILEgBhemV4 + dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVy + YXRpb25zL19sb2FkX2JhbGFuY2VyX2JhY2tlbmRfYWRkcmVzc19wb29sc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4UyQmC73QBwAA2SIAAHsAAAAAAAAAAAAAAKSBShgSAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMv + X2xvYWRfYmFsYW5jZXJfZnJvbnRlbmRfaXBfY29uZmlndXJhdGlvbnNfb3BlcmF0aW9ucy5weVBL + AQIUAxQAAAAIADAweFNWz9dP1QcAAFwiAAB1AAAAAAAAAAAAAACkgbMgEgBhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19s + b2FkX2JhbGFuY2VyX2xvYWRfYmFsYW5jaW5nX3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhT7GwbAvMGAAAFFgAAcwAAAAAAAAAAAAAApIEbKRIAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fbG9hZF9iYWxh + bmNlcl9uZXR3b3JrX2ludGVyZmFjZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFORh+kl + 1gcAANwhAABvAAAAAAAAAAAAAACkgZ8wEgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX291dGJv + dW5kX3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTAq9ij7EHAAAZIQAAZwAAAAAA + AAAAAAAApIECORIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAy + MF8wN18wMS9haW8vb3BlcmF0aW9ucy9fbG9hZF9iYWxhbmNlcl9wcm9iZXNfb3BlcmF0aW9ucy5w + eVBLAQIUAxQAAAAIADAweFOQMf2yoAwAAHhoAABhAAAAAAAAAAAAAACkgThBEgBhemV4dF9maXJl + d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25z + L19sb2FkX2JhbGFuY2Vyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U/f4OHNeDAAAlF4A + AGkAAAAAAAAAAAAAAKSBV04SAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX2xvY2FsX25ldHdvcmtfZ2F0ZXdheXNfb3Bl + cmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMURlggwAwAAANoAABfAAAAAAAAAAAAAACkgTxbEgBh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9v + cGVyYXRpb25zL19uYXRfZ2F0ZXdheXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPm7L1V + xwcAAOAiAAB2AAAAAAAAAAAAAACkgXloEgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19uZXR3b3JrX2ludGVyZmFjZV9p + cF9jb25maWd1cmF0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uw4YQKf0BgAAXxYA + AHMAAAAAAAAAAAAAAKSB1HASAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX25ldHdvcmtfaW50ZXJmYWNlX2xvYWRfYmFs + YW5jZXJzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTnb5iHzoMAADgWAAAdwAAAAAAAAAA + AAAApIFZeBIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8w + N18wMS9haW8vb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZhY2VfdGFwX2NvbmZpZ3VyYXRpb25z + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTjbUpWDcSAACUGgEAZQAAAAAAAAAAAAAApIEo + hRIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9h + aW8vb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZhY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTGDMsjVIQAADXvgAAbAAAAAAAAAAAAAAApIHilxIAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fbmV0d29ya19t + YW5hZ2VtZW50X2NsaWVudF9vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UzI9i45IDAAAQl0A + AGMAAAAAAAAAAAAAAKSBvqgSAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX25ldHdvcmtfcHJvZmlsZXNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFOXXf6dwgwAAMtrAABqAAAAAAAAAAAAAACkgYe1EgBhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRp + b25zL19uZXR3b3JrX3NlY3VyaXR5X2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4 + UwJ2zcvZDAAAAW0AAG0AAAAAAAAAAAAAAKSB0cISAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nk + a3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX25ldHdvcmtfdmlydHVh + bF9hcHBsaWFuY2VzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTO9pQmwUXAADUmQEAYwAA + AAAAAAAAAAAApIE10BIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92 + MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fbmV0d29ya193YXRjaGVyc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U4od0wcbBgAARxIAAFIAAAAAAAAAAAAAAKSBu+cSAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMv + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTzvREgBoRAAAT8AAAYwAAAAAAAAAAAAAApIFG + 7hIAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9h + aW8vb3BlcmF0aW9ucy9fcDJfc3Zwbl9nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA + MDB4U10GjoOCDQAAnIcAAGIAAAAAAAAAAAAAAKSB4f8SAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk + X3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3BhY2tldF9jYXB0 + dXJlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U50ubPpJCAAAiCQAAHkAAAAAAAAAAAAA + AKSB4w0TAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdf + MDEvYWlvL29wZXJhdGlvbnMvX3BlZXJfZXhwcmVzc19yb3V0ZV9jaXJjdWl0X2Nvbm5lY3Rpb25z + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTbAmfL1QMAAAGWAAAagAAAAAAAAAAAAAApIHD + FhMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9h + aW8vb3BlcmF0aW9ucy9fcHJpdmF0ZV9kbnNfem9uZV9ncm91cHNfb3BlcmF0aW9ucy5weVBLAQIU + AxQAAAAIADAweFNFjI9VcAwAAExeAABkAAAAAAAAAAAAAACkgZ8jEwBhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19wcml2 + YXRlX2VuZHBvaW50c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U1sS231HEQAAM/MAAGgA + AAAAAAAAAAAAAKSBkTATAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEv + djIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3ByaXZhdGVfbGlua19zZXJ2aWNlc19vcGVyYXRp + b25zLnB5UEsBAhQDFAAAAAgAMDB4U9TenAQhEAAAHdAAAGYAAAAAAAAAAAAAAKSBXkITAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJh + dGlvbnMvX3B1YmxpY19pcF9hZGRyZXNzZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPC + A+IK0gwAAItpAABlAAAAAAAAAAAAAACkgQNTEwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz + L3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL19wdWJsaWNfaXBfcHJlZml4 + ZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOMh07KXAYAAGQTAABsAAAAAAAAAAAAAACk + gVhgEwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAx + L2Fpby9vcGVyYXRpb25zL19yZXNvdXJjZV9uYXZpZ2F0aW9uX2xpbmtzX29wZXJhdGlvbnMucHlQ + SwECFAMUAAAACAAwMHhTVmloLRkMAABOVAAAZQAAAAAAAAAAAAAApIE+ZxMAYXpleHRfZmlyZXdh + bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9f + cm91dGVfZmlsdGVyX3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTNeAnVMQMAADY + aAAAYAAAAAAAAAAAAAAApIHacxMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fcm91dGVfZmlsdGVyc19vcGVyYXRpb25z + LnB5UEsBAhQDFAAAAAgAMDB4U2I5pxGfDAAAy2cAAF8AAAAAAAAAAAAAAKSBHIETAGF6ZXh0X2Zp + cmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlv + bnMvX3JvdXRlX3RhYmxlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U196DO7rCwAAWFIA + AFkAAAAAAAAAAAAAAKSBOI4TAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3JvdXRlc19vcGVyYXRpb25zLnB5UEsBAhQD + FAAAAAgAMDB4U3QuhrSPDAAAKGwAAG0AAAAAAAAAAAAAAKSBmpoTAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3NlY3Vy + aXR5X3BhcnRuZXJfcHJvdmlkZXJzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTvzAsTB0M + AADxVgAAYQAAAAAAAAAAAAAApIG0pxMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy + MF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fc2VjdXJpdHlfcnVsZXNfb3BlcmF0 + aW9ucy5weVBLAQIUAxQAAAAIADAweFPgj+s2XQYAAGQTAABsAAAAAAAAAAAAAACkgVC0EwBhemV4 + dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVy + YXRpb25zL19zZXJ2aWNlX2Fzc29jaWF0aW9uX2xpbmtzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhT5ttXRO0MAABrbAAAbAAAAAAAAAAAAAAApIE3uxMAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fc2VydmljZV9l + bmRwb2ludF9wb2xpY2llc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U2g0S0hvDAAAo10A + AHYAAAAAAAAAAAAAAKSBrsgTAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3NlcnZpY2VfZW5kcG9pbnRfcG9saWN5X2Rl + ZmluaXRpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTmTO3YUMGAACVEQAAXwAAAAAA + AAAAAAAApIGx1RMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAy + MF8wN18wMS9haW8vb3BlcmF0aW9ucy9fc2VydmljZV90YWdzX29wZXJhdGlvbnMucHlQSwECFAMU + AAAACAAwMHhTySgl3ewNAAB4igAAWgAAAAAAAAAAAAAApIFx3BMAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fc3VibmV0 + c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UyD8DEu6BgAAURQAAFkAAAAAAAAAAAAAAKSB + 1eoTAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEv + YWlvL29wZXJhdGlvbnMvX3VzYWdlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U7IxLU82 + DAAAIFcAAGoAAAAAAAAAAAAAAKSBBvITAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3ZpcnR1YWxfYXBwbGlhbmNlX3Np + dGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT/zKH2V0HAACbHQAAaQAAAAAAAAAAAAAA + pIHE/hMAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18w + MS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9hcHBsaWFuY2Vfc2t1c19vcGVyYXRpb25zLnB5UEsB + AhQDFAAAAAgAMDB4UwL9Wie4CgAAwUUAAG0AAAAAAAAAAAAAAKSBqAYUAGF6ZXh0X2ZpcmV3YWxs + L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3Zp + cnR1YWxfaHViX2JncF9jb25uZWN0aW9uX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTU3hR + xj4LAAC3RwAAbgAAAAAAAAAAAAAApIHrERQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9odWJfYmdwX2Nv + bm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTz9eIVz8MAADkVAAAbwAAAAAA + AAAAAAAApIG1HRQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAy + MF8wN18wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9odWJfaXBfY29uZmlndXJhdGlvbl9vcGVy + YXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UzAmrJZZDAAALVcAAG8AAAAAAAAAAAAAAKSBgSoUAGF6 + ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29w + ZXJhdGlvbnMvX3ZpcnR1YWxfaHViX3JvdXRlX3RhYmxlX3YyX3Nfb3BlcmF0aW9ucy5weVBLAQIU + AxQAAAAIADAweFN+QBPopQ0AAFmBAABfAAAAAAAAAAAAAACkgWc3FABhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL192aXJ0 + dWFsX2h1YnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFO9sKIE0hAAAILrAAB2AAAAAAAA + AAAAAACkgYlFFABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIw + XzA3XzAxL2Fpby9vcGVyYXRpb25zL192aXJ0dWFsX25ldHdvcmtfZ2F0ZXdheV9jb25uZWN0aW9u + c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U8BntYCSGQAAofgBAGsAAAAAAAAAAAAAAKSB + 71YUAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEv + YWlvL29wZXJhdGlvbnMvX3ZpcnR1YWxfbmV0d29ya19nYXRld2F5c19vcGVyYXRpb25zLnB5UEsB + AhQDFAAAAAgAMDB4Ux5S2YwlDAAAU1gAAGsAAAAAAAAAAAAAAKSBCnEUAGF6ZXh0X2ZpcmV3YWxs + L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3Zp + cnR1YWxfbmV0d29ya19wZWVyaW5nc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U9NeGGOE + DAAATWcAAGcAAAAAAAAAAAAAAKSBuH0UAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3ZpcnR1YWxfbmV0d29ya190YXBz + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTrazCiN8NAAAohAAAYwAAAAAAAAAAAAAApIHB + ihQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9h + aW8vb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3Jrc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA + MDB4U8FVeKA+DAAAJlYAAGoAAAAAAAAAAAAAAKSBIZkUAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk + X3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3ZpcnR1YWxfcm91 + dGVyX3BlZXJpbmdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTMYNDq1wMAACEXQAAYgAA + AAAAAAAAAAAApIHnpRQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92 + MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fdmlydHVhbF9yb3V0ZXJzX29wZXJhdGlvbnMucHlQ + SwECFAMUAAAACAAwMHhTHvTej64MAADAZwAAXwAAAAAAAAAAAAAApIHDshQAYXpleHRfZmlyZXdh + bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9f + dmlydHVhbF93YW5zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTkF/02VkOAAAWjAAAYgAA + AAAAAAAAAAAApIHuvxQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92 + MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fdnBuX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQ + SwECFAMUAAAACAAwMHhTy7PhMRMPAAC0vQAAXwAAAAAAAAAAAAAApIHHzhQAYXpleHRfZmlyZXdh + bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9f + dnBuX2dhdGV3YXlzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTLSQe1UEHAABeFwAAZwAA + AAAAAAAAAAAApIFX3hQAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92 + MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fdnBuX2xpbmtfY29ubmVjdGlvbnNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFMBerkD/AgAAKAfAACIAAAAAAAAAAAAAACkgR3mFABhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRp + b25zL192cG5fc2VydmVyX2NvbmZpZ3VyYXRpb25zX2Fzc29jaWF0ZWRfd2l0aF92aXJ0dWFsX3dh + bl9vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UyuX0GrMDAAAum0AAGwAAAAAAAAAAAAAAKSB + v+8UAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEv + YWlvL29wZXJhdGlvbnMvX3Zwbl9zZXJ2ZXJfY29uZmlndXJhdGlvbnNfb3BlcmF0aW9ucy5weVBL + AQIUAxQAAAAIADAweFM2dlsuiAYAACEUAABsAAAAAAAAAAAAAACkgRX9FABhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9vcGVyYXRpb25zL192 + cG5fc2l0ZV9saW5rX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTZWfM + HfUHAABsIQAAYQAAAAAAAAAAAAAApIEnBBUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wN18wMS92MjAyMF8wN18wMS9haW8vb3BlcmF0aW9ucy9fdnBuX3NpdGVfbGlua3Nfb3Bl + cmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFP8Nlq3KAkAAOYfAABqAAAAAAAAAAAAAACkgZsMFQBh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL2Fpby9v + cGVyYXRpb25zL192cG5fc2l0ZXNfY29uZmlndXJhdGlvbl9vcGVyYXRpb25zLnB5UEsBAhQDFAAA + AAgAMDB4U9w2DtChDAAAwWYAAFwAAAAAAAAAAAAAAKSBSxYVAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv + cmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJhdGlvbnMvX3Zwbl9zaXRl + c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uz97D0msCwAA1FAAAHQAAAAAAAAAAAAAAKSB + ZiMVAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEv + YWlvL29wZXJhdGlvbnMvX3dlYl9hcHBsaWNhdGlvbl9maXJld2FsbF9wb2xpY2llc19vcGVyYXRp + b25zLnB5UEsBAhQDFAAAAAgAMDB4U6fMPTbDBwAAPh4AAGEAAAAAAAAAAAAAAKSBpC8VAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvYWlvL29wZXJh + dGlvbnMvX3dlYl9jYXRlZ29yaWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTQRKG5/Mp + AAB3egEARwAAAAAAAAAAAAAApIHmNxUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAy + MF8wN18wMS92MjAyMF8wN18wMS9tb2RlbHMvX19pbml0X18ucHlQSwECFAMUAAAACAAwMHhTjSDO + /r6tAQBGaA4ARgAAAAAAAAAAAAAApIE+YhUAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92 + MjAyMF8wN18wMS92MjAyMF8wN18wMS9tb2RlbHMvX21vZGVscy5weVBLAQIUAxQAAAAIADAweFPE + ZioKyNQBAJWsDwBKAAAAAAAAAAAAAACkgWAQFwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz + L3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL21vZGVscy9fbW9kZWxzX3B5My5weVBLAQIUAxQAAAAI + ADAweFNYSuCklR8AAI2ZAABfAAAAAAAAAAAAAACkgZDlGABhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL21vZGVscy9fbmV0d29ya19tYW5hZ2VtZW50 + X2NsaWVudF9lbnVtcy5weVBLAQIUAxQAAAAIADAweFPp9KUvSggAADwzAABLAAAAAAAAAAAAAACk + gaIFGQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAx + L29wZXJhdGlvbnMvX19pbml0X18ucHlQSwECFAMUAAAACAAwMHhTs6VGqSwMAADnWQAAfwAAAAAA + AAAAAAAApIFVDhkAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAy + MF8wN18wMS9vcGVyYXRpb25zL19hcHBsaWNhdGlvbl9nYXRld2F5X3ByaXZhdGVfZW5kcG9pbnRf + Y29ubmVjdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNKiiSlGgcAABQXAAB5AAAA + AAAAAAAAAACkgR4bGQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3Yy + MDIwXzA3XzAxL29wZXJhdGlvbnMvX2FwcGxpY2F0aW9uX2dhdGV3YXlfcHJpdmF0ZV9saW5rX3Jl + c291cmNlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U+/RE/JVEwAA1hIBAGMAAAAAAAAA + AAAAAKSBzyIZAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBf + MDdfMDEvb3BlcmF0aW9ucy9fYXBwbGljYXRpb25fZ2F0ZXdheXNfb3BlcmF0aW9ucy5weVBLAQIU + AxQAAAAIADAweFPT3QWbrAwAAChtAABqAAAAAAAAAAAAAACkgaU2GQBhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2FwcGxpY2F0 + aW9uX3NlY3VyaXR5X2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UwmMdCLWBgAA + 9hQAAGQAAAAAAAAAAAAAAKSB2UMZAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fYXZhaWxhYmxlX2RlbGVnYXRpb25zX29wZXJh + dGlvbnMucHlQSwECFAMUAAAACAAwMHhTOsFpmOIGAAAUFQAAagAAAAAAAAAAAAAApIExSxkAYXpl + eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRp + b25zL19hdmFpbGFibGVfZW5kcG9pbnRfc2VydmljZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAI + ADAweFMqoITPbAcAAEYkAABvAAAAAAAAAAAAAACkgZtSGQBhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2F2YWlsYWJsZV9wcml2 + YXRlX2VuZHBvaW50X3R5cGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTxBGcdhsHAABA + FgAAcwAAAAAAAAAAAAAApIGUWhkAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19hdmFpbGFibGVfcmVzb3VyY2VfZ3JvdXBfZGVs + ZWdhdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMSFH72WgcAAHAjAABoAAAAAAAA + AAAAAACkgUBiGQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIw + XzA3XzAxL29wZXJhdGlvbnMvX2F2YWlsYWJsZV9zZXJ2aWNlX2FsaWFzZXNfb3BlcmF0aW9ucy5w + eVBLAQIUAxQAAAAIADAweFPnfRcGpAYAACgUAABnAAAAAAAAAAAAAACkgSBqGQBhemV4dF9maXJl + d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2F6 + dXJlX2ZpcmV3YWxsX2ZxZG5fdGFnc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U4IOQHL3 + DAAAX3UAAF4AAAAAAAAAAAAAAKSBSXEZAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fYXp1cmVfZmlyZXdhbGxzX29wZXJhdGlv + bnMucHlQSwECFAMUAAAACAAwMHhTf8uGrxQMAAAXWwAAXAAAAAAAAAAAAAAApIG8fhkAYXpleHRf + ZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25z + L19iYXN0aW9uX2hvc3RzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTlV+S15wGAAAOFAAA + ZgAAAAAAAAAAAAAApIFKixkAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18w + MS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19iZ3Bfc2VydmljZV9jb21tdW5pdGllc19vcGVyYXRp + b25zLnB5UEsBAhQDFAAAAAgAMDB4U1GpXS39DgAAGrQAAGIAAAAAAAAAAAAAAKSBapIZAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9u + cy9fY29ubmVjdGlvbl9tb25pdG9yc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uxl3kIfd + DAAATWoAAGEAAAAAAAAAAAAAAKSB56EZAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fY3VzdG9tX2lwX3ByZWZpeGVzX29wZXJh + dGlvbnMucHlQSwECFAMUAAAACAAwMHhTheUzUPAKAABhUAAAYwAAAAAAAAAAAAAApIFDrxkAYXpl + eHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRp + b25zL19kZG9zX2N1c3RvbV9wb2xpY2llc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U8kS + fFa3DAAA+GoAAGQAAAAAAAAAAAAAAKSBtLoZAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZGRvc19wcm90ZWN0aW9uX3BsYW5z + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTiAzJHPgHAAAMIwAAZQAAAAAAAAAAAAAApIHt + xxkAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9v + cGVyYXRpb25zL19kZWZhdWx0X3NlY3VyaXR5X3J1bGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTN3cwo/0LAABpXAAAYQAAAAAAAAAAAAAApIFo0BkAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19kc2NwX2NvbmZpZ3Vy + YXRpb25fb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMqSSKGTAwAAElXAABzAAAAAAAAAAAA + AACkgeTcGQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3 + XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdF9hdXRob3JpemF0aW9uc19vcGVy + YXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UzUj8OK1DAAAIl0AAHAAAAAAAAAAAAAAAKSBwekZAGF6 + ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0 + aW9ucy9fZXhwcmVzc19yb3V0ZV9jaXJjdWl0X2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwEC + FAMUAAAACAAwMHhTz52Mg0gMAADOVQAAbQAAAAAAAAAAAAAApIEE9xkAYXpleHRfZmlyZXdhbGwv + dmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19leHByZXNz + X3JvdXRlX2NpcmN1aXRfcGVlcmluZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNvfEGx + sg8AAMjRAABlAAAAAAAAAAAAAACkgdcDGgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3Yy + MDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY2lyY3VpdHNf + b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFP24w05TgsAAElVAABoAAAAAAAAAAAAAACkgQwU + GgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29w + ZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfY29ubmVjdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQA + AAAIADAweFPO2sdSPAwAAEFYAAB2AAAAAAAAAAAAAACkgeAfGgBhemV4dF9maXJld2FsbC92ZW5k + b3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91 + dGVfY3Jvc3NfY29ubmVjdGlvbl9wZWVyaW5nc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4 + U0ms37e6DgAAWKoAAG4AAAAAAAAAAAAAAKSBsCwaAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nk + a3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9jcm9z + c19jb25uZWN0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U6djSl5qCwAAelgAAGUA + AAAAAAAAAAAAAKSB9jsaAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEv + djIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9nYXRld2F5c19vcGVyYXRpb25z + LnB5UEsBAhQDFAAAAAgAMDB4U1iCwAENCAAAhCIAAGIAAAAAAAAAAAAAAKSB40caAGF6ZXh0X2Zp + cmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9f + ZXhwcmVzc19yb3V0ZV9saW5rc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4Uzx/dX/gBwAA + Mx8AAGwAAAAAAAAAAAAAAKSBcFAaAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZXhwcmVzc19yb3V0ZV9wb3J0c19sb2NhdGlv + bnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOu53p7TQ0AAMV4AABiAAAAAAAAAAAAAACk + gdpYGgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAx + L29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVfcG9ydHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAI + ADAweFMlO+z1ogYAAFMUAABuAAAAAAAAAAAAAACkgadmGgBhemV4dF9maXJld2FsbC92ZW5kb3Jl + ZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2V4cHJlc3Nfcm91dGVf + c2VydmljZV9wcm92aWRlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMGLG3KbAwAAOFc + AABgAAAAAAAAAAAAAACkgdVtGgBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 + XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2ZpcmV3YWxsX3BvbGljaWVzX29wZXJhdGlvbnMu + cHlQSwECFAMUAAAACAAwMHhTxWKq+z0MAADHWQAAdQAAAAAAAAAAAAAApIG/ehoAYXpleHRfZmly + ZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19m + aXJld2FsbF9wb2xpY3lfcnVsZV9jb2xsZWN0aW9uX2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQD + FAAAAAgAMDB4Uz21CpDYDAAAeWQAAFgAAAAAAAAAAAAAAKSBj4caAGF6ZXh0X2ZpcmV3YWxsL3Zl + bmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fZmxvd19sb2dz + X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTxKWP8UUMAABUVQAAXwAAAAAAAAAAAAAApIHd + lBoAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9v + cGVyYXRpb25zL19odWJfcm91dGVfdGFibGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT + v4w7GF4MAAD/VwAAbgAAAAAAAAAAAAAApIGfoRoAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr + cy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19odWJfdmlydHVhbF9uZXR3b3Jr + X2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTE6ve4HQMAACqVwAAYAAA + AAAAAAAAAAAApIGJrhoAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92 + MjAyMF8wN18wMS9vcGVyYXRpb25zL19pbmJvdW5kX25hdF9ydWxlc19vcGVyYXRpb25zLnB5UEsB + AhQDFAAAAAgAMDB4U4E/KXy/CQAAxSUAAGQAAAAAAAAAAAAAAKSBe7saAGF6ZXh0X2ZpcmV3YWxs + L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9faW5ib3Vu + ZF9zZWN1cml0eV9ydWxlX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTbhxnm9MMAACYaQAA + XQAAAAAAAAAAAAAApIG8xRoAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18w + MS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19pcF9hbGxvY2F0aW9uc19vcGVyYXRpb25zLnB5UEsB + AhQDFAAAAAgAMDB4U8XgXrEFDQAAEWoAAFgAAAAAAAAAAAAAAKSBCtMaAGF6ZXh0X2ZpcmV3YWxs + L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9faXBfZ3Jv + dXBzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTyW46mzoMAAC2VwAAcgAAAAAAAAAAAAAA + pIGF4BoAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18w + MS9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2VyX2JhY2tlbmRfYWRkcmVzc19wb29sc19vcGVyYXRp + b25zLnB5UEsBAhQDFAAAAAgAMDB4U/OVr6/5BwAAWSMAAHcAAAAAAAAAAAAAAKSBT+0aAGF6ZXh0 + X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9u + cy9fbG9hZF9iYWxhbmNlcl9mcm9udGVuZF9pcF9jb25maWd1cmF0aW9uc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U7+1wXL8BwAA3CIAAHEAAAAAAAAAAAAAAKSB3fUaAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fbG9h + ZF9iYWxhbmNlcl9sb2FkX2JhbGFuY2luZ19ydWxlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA + MDB4Uy2zPjYVBwAAVhYAAG8AAAAAAAAAAAAAAKSBaP4aAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk + X3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fbG9hZF9iYWxhbmNlcl9u + ZXR3b3JrX2ludGVyZmFjZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNVCBx69wcAAFwi + AABrAAAAAAAAAAAAAACkgQoGGwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 + XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJfb3V0Ym91bmRfcnVsZXNf + b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOeWwrF2QcAAJkhAABjAAAAAAAAAAAAAACkgYoO + GwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29w + ZXJhdGlvbnMvX2xvYWRfYmFsYW5jZXJfcHJvYmVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAw + MHhTp8HUFL4MAABMaQAAXQAAAAAAAAAAAAAApIHkFhsAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19sb2FkX2JhbGFuY2Vyc19v + cGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UzScMypwDAAAa18AAGUAAAAAAAAAAAAAAKSBHSQb + AGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3Bl + cmF0aW9ucy9fbG9jYWxfbmV0d29ya19nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA + MDB4U/FPvcvaDAAA12gAAFsAAAAAAAAAAAAAAKSBEDEbAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk + X3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fbmF0X2dhdGV3YXlzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT12EFje0HAABgIwAAcgAAAAAAAAAAAAAApIFjPhsA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVy + YXRpb25zL19uZXR3b3JrX2ludGVyZmFjZV9pcF9jb25maWd1cmF0aW9uc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U8Q/2T4WBwAAsBYAAG8AAAAAAAAAAAAAAKSB4EYbAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fbmV0 + d29ya19pbnRlcmZhY2VfbG9hZF9iYWxhbmNlcnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAw + eFPRfjLETwwAALhZAABzAAAAAAAAAAAAAACkgYNOGwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9z + ZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX25ldHdvcmtfaW50ZXJmYWNl + X3RhcF9jb25maWd1cmF0aW9uc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U/JlfmhjEgAA + shwBAGEAAAAAAAAAAAAAAKSBY1sbAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBf + MDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fbmV0d29ya19pbnRlcmZhY2VzX29wZXJhdGlv + bnMucHlQSwECFAMUAAAACAAwMHhT+ROTpYAQAADFvwAAaAAAAAAAAAAAAAAApIFFbhsAYXpleHRf + ZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25z + L19uZXR3b3JrX21hbmFnZW1lbnRfY2xpZW50X29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT + 5fSJG2oMAAAUXgAAXwAAAAAAAAAAAAAApIFLfxsAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr + cy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19uZXR3b3JrX3Byb2ZpbGVzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT/6qyzuMMAACfbAAAZgAAAAAAAAAAAAAApIEyjBsA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVy + YXRpb25zL19uZXR3b3JrX3NlY3VyaXR5X2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgA + MDB4U/AjFaj7DAAA1W0AAGkAAAAAAAAAAAAAAKSBmZkbAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVk + X3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fbmV0d29ya192aXJ0dWFs + X2FwcGxpYW5jZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFOKKKzkSBcAAOqcAQBfAAAA + AAAAAAAAAACkgRunGwBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3Yy + MDIwXzA3XzAxL29wZXJhdGlvbnMvX25ldHdvcmtfd2F0Y2hlcnNfb3BlcmF0aW9ucy5weVBLAQIU + AxQAAAAIADAweFNJm55LOAYAAIgSAABOAAAAAAAAAAAAAACkgeC+GwBhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX29wZXJhdGlv + bnMucHlQSwECFAMUAAAACAAwMHhTsLWLZDQRAAC48QAAXwAAAAAAAAAAAAAApIGExRsAYXpleHRf + ZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25z + L19wMl9zdnBuX2dhdGV3YXlzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT3rfEG5kNAADW + iAAAXgAAAAAAAAAAAAAApIE11xsAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19wYWNrZXRfY2FwdHVyZXNfb3BlcmF0aW9ucy5w + eVBLAQIUAxQAAAAIADAweFNwwYpzbwgAABglAAB1AAAAAAAAAAAAAACkgUrlGwBhemV4dF9maXJl + d2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3Bl + ZXJfZXhwcmVzc19yb3V0ZV9jaXJjdWl0X2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMU + AAAACAAwMHhTh+jpuXEMAADeWAAAZgAAAAAAAAAAAAAApIFM7hsAYXpleHRfZmlyZXdhbGwvdmVu + ZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19wcml2YXRlX2Ru + c196b25lX2dyb3Vwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UwRJlGiLDAAA8V4AAGAA + AAAAAAAAAAAAAKSBQfsbAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEv + djIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fcHJpdmF0ZV9lbmRwb2ludHNfb3BlcmF0aW9ucy5weVBL + AQIUAxQAAAAIADAweFMQvi1bXhEAANT0AABkAAAAAAAAAAAAAACkgUoIHABhemV4dF9maXJld2Fs + bC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ByaXZh + dGVfbGlua19zZXJ2aWNlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U5gJJ6w+EAAA19EA + AGIAAAAAAAAAAAAAAKSBKhocAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fcHVibGljX2lwX2FkZHJlc3Nlc19vcGVyYXRpb25z + LnB5UEsBAhQDFAAAAAgAMDB4U+WWGDzwDAAAX2oAAGEAAAAAAAAAAAAAAKSB6CocAGF6ZXh0X2Zp + cmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9f + cHVibGljX2lwX3ByZWZpeGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhToCYlzYsGAAD4 + EwAAaAAAAAAAAAAAAAAApIFXOBwAYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19yZXNvdXJjZV9uYXZpZ2F0aW9uX2xpbmtzX29w + ZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTJ95nbjcMAAAmVQAAYQAAAAAAAAAAAAAApIFoPxwA + YXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVy + YXRpb25zL19yb3V0ZV9maWx0ZXJfcnVsZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMk + 2JzP5QwAAKxpAABcAAAAAAAAAAAAAACkgR5MHABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz + L3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3JvdXRlX2ZpbHRlcnNfb3BlcmF0 + aW9ucy5weVBLAQIUAxQAAAAIADAweFNPUKtYugwAAJ9oAABbAAAAAAAAAAAAAACkgX1ZHABhemV4 + dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlv + bnMvX3JvdXRlX3RhYmxlc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U0HlyiQGDAAAMFMA + AFUAAAAAAAAAAAAAAKSBsGYcAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdf + MDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fcm91dGVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTB0hVwq0MAAD2bAAAaQAAAAAAAAAAAAAApIEpcxwAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19zZWN1cml0eV9wYXJ0 + bmVyX3Byb3ZpZGVyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U7yJy8A4DAAAyVcAAF0A + AAAAAAAAAAAAAKSBXYAcAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEv + djIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fc2VjdXJpdHlfcnVsZXNfb3BlcmF0aW9ucy5weVBLAQIU + AxQAAAAIADAweFMf2/DhjAYAAPgTAABoAAAAAAAAAAAAAACkgRCNHABhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3NlcnZpY2Vf + YXNzb2NpYXRpb25fbGlua3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMuEn2/DQ0AAD9t + AABoAAAAAAAAAAAAAACkgSKUHABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3 + XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3NlcnZpY2VfZW5kcG9pbnRfcG9saWNpZXNfb3Bl + cmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPG/gjzhwwAAHteAAByAAAAAAAAAAAAAACkgbWhHABh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJh + dGlvbnMvX3NlcnZpY2VfZW5kcG9pbnRfcG9saWN5X2RlZmluaXRpb25zX29wZXJhdGlvbnMucHlQ + SwECFAMUAAAACAAwMHhTP2Q8nnIGAAAZEgAAWwAAAAAAAAAAAAAApIHMrhwAYXpleHRfZmlyZXdh + bGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL19zZXJ2 + aWNlX3RhZ3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMshn8U/g0AANiLAABWAAAAAAAA + AAAAAACkgbe1HABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIw + XzA3XzAxL29wZXJhdGlvbnMvX3N1Ym5ldHNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMf + MT9D3gYAAJoUAABVAAAAAAAAAAAAAACkgSnEHABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtz + L3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3VzYWdlc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4UwCCFrZSDAAA+FcAAGYAAAAAAAAAAAAAAKSBesscAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fdmly + dHVhbF9hcHBsaWFuY2Vfc2l0ZXNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMURLlWhQcA + APsdAABlAAAAAAAAAAAAAACkgVDYHABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw + XzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfYXBwbGlhbmNlX3NrdXNfb3Bl + cmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNCN9vq4woAAK1GAABpAAAAAAAAAAAAAACkgVjgHABh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJh + dGlvbnMvX3ZpcnR1YWxfaHViX2JncF9jb25uZWN0aW9uX29wZXJhdGlvbnMucHlQSwECFAMUAAAA + CAAwMHhTAkRkh1gLAABQSAAAagAAAAAAAAAAAAAApIHC6xwAYXpleHRfZmlyZXdhbGwvdmVuZG9y + ZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL192aXJ0dWFsX2h1Yl9i + Z3BfY29ubmVjdGlvbnNfb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFMvKXFRXgwAALxVAABr + AAAAAAAAAAAAAACkgaL3HABhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAx + L3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfaHViX2lwX2NvbmZpZ3VyYXRpb25fb3Bl + cmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNRv5G3egwAAAVYAABrAAAAAAAAAAAAAACkgYkEHQBh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJh + dGlvbnMvX3ZpcnR1YWxfaHViX3JvdXRlX3RhYmxlX3YyX3Nfb3BlcmF0aW9ucy5weVBLAQIUAxQA + AAAIADAweFN+mbnxvA0AAFSCAABbAAAAAAAAAAAAAACkgYwRHQBhemV4dF9maXJld2FsbC92ZW5k + b3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxfaHVi + c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4UxtjQ6TmEAAAQu0AAHIAAAAAAAAAAAAAAKSB + wR8dAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEv + b3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3JrX2dhdGV3YXlfY29ubmVjdGlvbnNfb3BlcmF0aW9u + cy5weVBLAQIUAxQAAAAIADAweFMv09ndtBkAACn8AQBnAAAAAAAAAAAAAACkgTcxHQBhemV4dF9m + aXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMv + X3ZpcnR1YWxfbmV0d29ya19nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U7vM + ZD1ADAAAK1kAAGcAAAAAAAAAAAAAAKSBcEsdAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3Mv + djIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3b3JrX3BlZXJp + bmdzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhTzsEc9aAMAAAbaAAAYwAAAAAAAAAAAAAA + pIE1WB0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18w + MS9vcGVyYXRpb25zL192aXJ0dWFsX25ldHdvcmtfdGFwc19vcGVyYXRpb25zLnB5UEsBAhQDFAAA + AAgAMDB4U5eO95D4DQAAMoUAAF8AAAAAAAAAAAAAAKSBVmUdAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRv + cmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF9uZXR3 + b3Jrc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U/0jAORZDAAA/lYAAGYAAAAAAAAAAAAA + AKSBy3MdAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdf + MDEvb3BlcmF0aW9ucy9fdmlydHVhbF9yb3V0ZXJfcGVlcmluZ3Nfb3BlcmF0aW9ucy5weVBLAQIU + AxQAAAAIADAweFNEgiRneAwAACleAABeAAAAAAAAAAAAAACkgaiAHQBhemV4dF9maXJld2FsbC92 + ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3ZpcnR1YWxf + cm91dGVyc19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U9Ig4S7NDAAAjmgAAFsAAAAAAAAA + AAAAAKSBnI0dAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBf + MDdfMDEvb3BlcmF0aW9ucy9fdmlydHVhbF93YW5zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAw + MHhT76Qk43sOAABojQAAXgAAAAAAAAAAAAAApIHimh0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRf + c2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL192cG5fY29ubmVjdGlvbnNf + b3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFNf8as0KA8AAP++AABbAAAAAAAAAAAAAACkgdmp + HQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29w + ZXJhdGlvbnMvX3Zwbl9nYXRld2F5c19vcGVyYXRpb25zLnB5UEsBAhQDFAAAAAgAMDB4U8IzQY1n + BwAAtxcAAGMAAAAAAAAAAAAAAKSBerkdAGF6ZXh0X2ZpcmV3YWxsL3ZlbmRvcmVkX3Nka3MvdjIw + MjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fdnBuX2xpbmtfY29ubmVjdGlvbnNfb3Bl + cmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFPDKFVdFwkAAAwgAACEAAAAAAAAAAAAAACkgWLBHQBh + emV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIwXzA3XzAxL3YyMDIwXzA3XzAxL29wZXJh + dGlvbnMvX3Zwbl9zZXJ2ZXJfY29uZmlndXJhdGlvbnNfYXNzb2NpYXRlZF93aXRoX3ZpcnR1YWxf + d2FuX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT43JfaOgMAACIbgAAaAAAAAAAAAAAAAAA + pIEbyx0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18w + MS9vcGVyYXRpb25zL192cG5fc2VydmVyX2NvbmZpZ3VyYXRpb25zX29wZXJhdGlvbnMucHlQSwEC + FAMUAAAACAAwMHhT5TIBlboGAAC9FAAAaAAAAAAAAAAAAAAApIGJ2B0AYXpleHRfZmlyZXdhbGwv + dmVuZG9yZWRfc2Rrcy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL192cG5fc2l0 + ZV9saW5rX2Nvbm5lY3Rpb25zX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT8K+aEB4IAADs + IQAAXQAAAAAAAAAAAAAApIHJ3x0AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rrcy92MjAyMF8w + N18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL192cG5fc2l0ZV9saW5rc19vcGVyYXRpb25zLnB5 + UEsBAhQDFAAAAAgAMDB4U6AK++ROCQAAYiAAAGYAAAAAAAAAAAAAAKSBYugdAGF6ZXh0X2ZpcmV3 + YWxsL3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fdnBu + X3NpdGVzX2NvbmZpZ3VyYXRpb25fb3BlcmF0aW9ucy5weVBLAQIUAxQAAAAIADAweFN8QcuRxgwA + AI9nAABYAAAAAAAAAAAAAACkgTTyHQBhemV4dF9maXJld2FsbC92ZW5kb3JlZF9zZGtzL3YyMDIw + XzA3XzAxL3YyMDIwXzA3XzAxL29wZXJhdGlvbnMvX3Zwbl9zaXRlc19vcGVyYXRpb25zLnB5UEsB + AhQDFAAAAAgAMDB4U4CJDp7UCwAAcVEAAHAAAAAAAAAAAAAAAKSBcP8dAGF6ZXh0X2ZpcmV3YWxs + L3ZlbmRvcmVkX3Nka3MvdjIwMjBfMDdfMDEvdjIwMjBfMDdfMDEvb3BlcmF0aW9ucy9fd2ViX2Fw + cGxpY2F0aW9uX2ZpcmV3YWxsX3BvbGljaWVzX29wZXJhdGlvbnMucHlQSwECFAMUAAAACAAwMHhT + QomuAuoHAACkHgAAXQAAAAAAAAAAAAAApIHSCx4AYXpleHRfZmlyZXdhbGwvdmVuZG9yZWRfc2Rr + cy92MjAyMF8wN18wMS92MjAyMF8wN18wMS9vcGVyYXRpb25zL193ZWJfY2F0ZWdvcmllc19vcGVy + YXRpb25zLnB5UEsBAhQDFAAAAAgAgjB4U14tf9IMAAAACgAAAC8AAAAAAAAAAAAAAKSBNxQeAGF6 + dXJlX2ZpcmV3YWxsLTAuMTMuMC5kaXN0LWluZm8vREVTQ1JJUFRJT04ucnN0UEsBAhQDFAAAAAgA + gjB4U3eq21uxAQAAmwMAAC0AAAAAAAAAAAAAAKSBkBQeAGF6dXJlX2ZpcmV3YWxsLTAuMTMuMC5k + aXN0LWluZm8vbWV0YWRhdGEuanNvblBLAQIUAxQAAAAIAIIweFPc2RtAEQAAAA8AAAAtAAAAAAAA + AAAAAACkgYwWHgBhenVyZV9maXJld2FsbC0wLjEzLjAuZGlzdC1pbmZvL3RvcF9sZXZlbC50eHRQ + SwECFAMUAAAACACCMHhT9t3Svl8AAABuAAAAJQAAAAAAAAAAAAAApIHoFh4AYXp1cmVfZmlyZXdh + bGwtMC4xMy4wLmRpc3QtaW5mby9XSEVFTFBLAQIUAxQAAAAIAIIweFNRC97cUQEAAD0DAAAoAAAA + AAAAAAAAAACkgYoXHgBhenVyZV9maXJld2FsbC0wLjEzLjAuZGlzdC1pbmZvL01FVEFEQVRBUEsB + AhQDFAAAAAgAgjB4U5CtWQAaVAAAqiUBACYAAAAAAAAAAAAAAKSBIRkeAGF6dXJlX2ZpcmV3YWxs + LTAuMTMuMC5kaXN0LWluZm8vUkVDT1JEUEsFBgAAAADiAeIBFg4BAH9tHgAAAA== headers: - cache-control: - - no-cache content-length: - - '30' + - '2063275' + content-md5: + - WUwASmo9REoQEEfzfIsc0w== content-type: - - application/json; charset=utf-8 + - application/octet-stream date: - - Fri, 22 Jan 2021 02:35:29 GMT - expires: - - '-1' - pragma: - - no-cache + - Mon, 16 May 2022 06:20:10 GMT + etag: + - '0x8D9AF103BDA60ED' + last-modified: + - Wed, 24 Nov 2021 06:04:10 GMT server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - fd967dba-cbb4-42c3-888f-1caf408a34c8 + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-type: + - BlockBlob + x-ms-lease-status: + - unlocked + x-ms-version: + - '2009-09-19' status: code: 200 message: OK @@ -29156,128 +57314,82 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network vwan create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l + - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3b25f611-d277-453b-bba8-a72d3224fb48?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_route_table_v3000001?api-version=2021-04-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001","name":"cli_test_azure_vwan_route_table_v3000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-16T06:20:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '30' + - '358' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:36:09 GMT + - Mon, 16 May 2022 06:20: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: - - 23374cc6-9c33-4ba3-9544-349514d05597 status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network vwan create Connection: - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3b25f611-d277-453b-bba8-a72d3224fb48?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:36: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: - - 24f31e67-6409-41a4-ab73-0bece0332496 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: + Content-Length: + - '22' + Content-Type: - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l + - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3b25f611-d277-453b-bba8-a72d3224fb48?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n + \ \"etag\": \"W/\\\"861342ca-b6ac-44dc-98cb-cf44713ec0e9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": + false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": + \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7c27f84e-44e2-443c-9452-50346c5b3881?api-version=2021-08-01 cache-control: - no-cache content-length: - - '30' + - '532' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:38:10 GMT + - Mon, 16 May 2022 06:20:34 GMT expires: - '-1' pragma: @@ -29287,35 +57399,32 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 37c4857c-13aa-42a9-aefd-ccb7fb80c12a + - 53a2fc8b-0b33-4474-9022-c6de14e1a943 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network vwan create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l + - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3b25f611-d277-453b-bba8-a72d3224fb48?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7c27f84e-44e2-443c-9452-50346c5b3881?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -29327,7 +57436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:40:51 GMT + - Mon, 16 May 2022 06:20:44 GMT expires: - '-1' pragma: @@ -29344,7 +57453,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1164c585-d396-4cb9-8801-6e40e6ddb9ea + - a0d6c50d-988f-4714-9b9f-9fbd6cef902f status: code: 200 message: OK @@ -29352,39 +57461,38 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network vwan create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l + - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n - \ \"etag\": \"W/\\\"8814f458-6ac1-4040-abda-b90593242330\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": - [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": - 0,\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_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n - \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n + \ \"etag\": \"W/\\\"0b7b6845-5eef-4755-8682-f0a557efeb1d\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": + false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": + \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '881' + - '533' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:40:52 GMT + - Mon, 16 May 2022 06:20:45 GMT + etag: + - W/"0b7b6845-5eef-4755-8682-f0a557efeb1d" expires: - '-1' pragma: @@ -29401,152 +57509,58 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03355388-1986-470c-b05b-520aece36b93 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub --sku --count - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_route_table_v3000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001","name":"cli_test_azure_vwan_route_table_v3000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-22T02:33:30Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:40:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - 97e9218a-5b42-4126-9c91-c9910f0daee3 status: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub"}, - "hubIPAddresses": {"publicIPs": {"count": 1}}, "sku": {"name": "AZFW_Hub", "tier": - "Standard"}, "additionalProperties": {}}}' + body: '{"location": "eastus", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan"}, + "addressPrefix": "10.0.0.0/24"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive Content-Length: - - '384' + - '252' Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --vhub --sku --count - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"myfirewall\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\",\r\n - \ \"etag\": \"W/\\\"d3d56542-32f4-4aa2-abd4-acd67ec3e339\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": - {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n - \ },\r\n \"hubIPAddresses\": {\r\n \"publicIPs\": {\r\n \"addresses\": - [],\r\n \"count\": 1\r\n }\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/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:41:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - e1d39400-63e6-49eb-9a2b-40c2e3803d7b - 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 firewall create - Connection: - - keep-alive ParameterSetName: - - -g -n --vhub --sku --count + - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n + \ \"etag\": \"W/\\\"4efe3fb6-cdc8-4321-bd3f-b1b2043359e9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": + [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"None\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bdfeb53-8f3c-405f-8bd0-7afea26ab75f?api-version=2021-08-01 cache-control: - no-cache content-length: - - '30' + - '1052' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:41:14 GMT + - Mon, 16 May 2022 06:20:51 GMT expires: - '-1' pragma: @@ -29556,35 +57570,32 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ff158ac9-cfe4-463e-81ed-493623988615 + - 0b2dedaa-2e57-4012-8550-1de2681b2260 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --vhub --sku --count + - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bdfeb53-8f3c-405f-8bd0-7afea26ab75f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -29596,7 +57607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:41:24 GMT + - Mon, 16 May 2022 06:21:02 GMT expires: - '-1' pragma: @@ -29613,7 +57624,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03cac34b-d2eb-41c4-87c5-e2fa16427faa + - 17f12281-59de-4a0a-afb7-c21a86267f20 status: code: 200 message: OK @@ -29621,20 +57632,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --vhub --sku --count + - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bdfeb53-8f3c-405f-8bd0-7afea26ab75f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -29646,7 +57656,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:41:45 GMT + - Mon, 16 May 2022 06:21:12 GMT expires: - '-1' pragma: @@ -29663,7 +57673,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3524a5a2-a7a8-4e8d-963c-f7528ca5e59a + - b7916f54-3c56-4f4d-b4ce-00001cc44111 status: code: 200 message: OK @@ -29671,20 +57681,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --vhub --sku --count + - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bdfeb53-8f3c-405f-8bd0-7afea26ab75f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -29696,7 +57705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:42:05 GMT + - Mon, 16 May 2022 06:21:33 GMT expires: - '-1' pragma: @@ -29713,7 +57722,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a06e0fd6-a278-4fdf-9bd1-852133d37be0 + - 57931685-63f7-4309-9d99-f8f2bfb6e78f status: code: 200 message: OK @@ -29721,20 +57730,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --vhub --sku --count + - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bdfeb53-8f3c-405f-8bd0-7afea26ab75f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -29746,7 +57754,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:42:45 GMT + - Mon, 16 May 2022 06:21:54 GMT expires: - '-1' pragma: @@ -29763,7 +57771,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cc3ee590-67aa-4dff-b7bb-828adad57bfd + - 155d6fca-7579-4ddc-9475-703c978d70d8 status: code: 200 message: OK @@ -29771,20 +57779,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --vhub --sku --count + - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bdfeb53-8f3c-405f-8bd0-7afea26ab75f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -29796,7 +57803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:43:27 GMT + - Mon, 16 May 2022 06:22:33 GMT expires: - '-1' pragma: @@ -29813,7 +57820,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6cc623d3-8a36-4c9e-b5b1-5d1a772f1451 + - 755f05e9-b2ec-446c-9324-abdb19f9d8a7 status: code: 200 message: OK @@ -29821,20 +57828,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --vhub --sku --count + - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bdfeb53-8f3c-405f-8bd0-7afea26ab75f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -29846,7 +57852,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:44:47 GMT + - Mon, 16 May 2022 06:23:14 GMT expires: - '-1' pragma: @@ -29863,7 +57869,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b3963891-c88c-484b-8401-e8cfe3237c36 + - 62617170-92eb-4303-86a6-d39c678aa82e status: code: 200 message: OK @@ -29871,32 +57877,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --vhub --sku --count + - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bdfeb53-8f3c-405f-8bd0-7afea26ab75f?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:47:28 GMT + - Mon, 16 May 2022 06:24:35 GMT expires: - '-1' pragma: @@ -29913,7 +57918,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fc592573-6220-4513-a65b-75b2c2909606 + - 56def889-8696-448b-bc36-6a7ffcbed93c status: code: 200 message: OK @@ -29921,32 +57926,41 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --vhub --sku --count + - -g -n --vwan --address-prefix -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n + \ \"etag\": \"W/\\\"6dadeab4-9dbe-4a70-add5-3d0cd4af75ac\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": + [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"Provisioning\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '1061' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:49:09 GMT + - Mon, 16 May 2022 06:24:35 GMT expires: - '-1' pragma: @@ -29963,7 +57977,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1daedb46-0492-4212-a1c0-b5f24890e551 + - c9e33edb-e7bb-4ccb-97fb-60e9138b0267 status: code: 200 message: OK @@ -29981,44 +57995,38 @@ interactions: ParameterSetName: - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_route_table_v3000001?api-version=2021-04-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001","name":"cli_test_azure_vwan_route_table_v3000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-16T06:20:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '30' + - '358' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:50:48 GMT + - Mon, 16 May 2022 06:24: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: - - ef6b9829-c0e6-4470-9df6-87f51e63fcc1 status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub"}, + "hubIPAddresses": {"publicIPs": {"count": 1}}, "sku": {"name": "AZFW_Hub", "tier": + "Standard"}, "additionalProperties": {}}}' headers: Accept: - application/json @@ -30028,25 +58036,39 @@ interactions: - network firewall create Connection: - keep-alive + Content-Length: + - '349' + Content-Type: + - application/json ParameterSetName: - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"myfirewall\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\",\r\n + \ \"etag\": \"W/\\\"7f519b9d-5cd6-4e6a-b4fe-c09d6d0f7120\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": + {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n + \ },\r\n \"hubIPAddresses\": {\r\n \"publicIPs\": {\r\n \"addresses\": + [],\r\n \"count\": 1\r\n }\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/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 cache-control: - no-cache content-length: - - '30' + - '817' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:52:29 GMT + - Mon, 16 May 2022 06:24:42 GMT expires: - '-1' pragma: @@ -30056,22 +58078,20 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a549c7f-0f39-4d93-85af-452b30b74f97 + - 81d88ab1-db5e-4838-bce1-cecf06229189 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -30081,10 +58101,9 @@ interactions: ParameterSetName: - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30096,7 +58115,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:54:10 GMT + - Mon, 16 May 2022 06:24:53 GMT expires: - '-1' pragma: @@ -30113,7 +58132,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84467d18-98c8-458c-b6fd-1906ba3db106 + - 219bee4c-f5fb-41c3-9a29-11b808364451 status: code: 200 message: OK @@ -30121,7 +58140,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -30131,10 +58150,9 @@ interactions: ParameterSetName: - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30146,7 +58164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:55:50 GMT + - Mon, 16 May 2022 06:25:03 GMT expires: - '-1' pragma: @@ -30163,7 +58181,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 43b64da3-f333-4836-9f2a-1493b82b82e0 + - 7fb8a186-a000-400b-a50a-513301d0a5eb status: code: 200 message: OK @@ -30171,7 +58189,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -30181,22 +58199,21 @@ interactions: ParameterSetName: - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b4949df2-b0ec-4a6c-bf86-bdb74e1ef82a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:57:30 GMT + - Mon, 16 May 2022 06:25:23 GMT expires: - '-1' pragma: @@ -30213,7 +58230,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - daba438a-2b31-4fea-93e5-43336d664029 + - 37331042-a7d2-4bf6-b1c0-1bf1d88e0b93 status: code: 200 message: OK @@ -30221,7 +58238,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -30231,33 +58248,21 @@ interactions: ParameterSetName: - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"myfirewall\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\",\r\n - \ \"etag\": \"W/\\\"b8f8e9f3-be21-4881-9e52-dd64c0845d40\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": - {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n - \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n - \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": - \"40.88.229.6\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n - \ }\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1003' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:57:31 GMT - etag: - - W/"b8f8e9f3-be21-4881-9e52-dd64c0845d40" + - Mon, 16 May 2022 06:25:44 GMT expires: - '-1' pragma: @@ -30274,7 +58279,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 02c754c4-591c-481a-94a3-dac642667daf + - c6ede578-3649-4926-b875-c7998f7d9f36 status: code: 200 message: OK @@ -30282,98 +58287,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/mycligateway'' - under resource group ''cli_test_azure_vwan_route_table_v3000001'' was not - found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Jan 2021 02:57:31 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 -- request: - body: '{"location": "eastus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub"}, - "bgpSettings": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vpn-gateway create - Connection: - - keep-alive - Content-Length: - - '279' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g --vhub -l - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"3c1e7d0b-f878-4624-b94c-6f7f465a7633\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n - \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n - \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": - 0\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": - \"None\",\r\n \"ipConfigurations\": [],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": - false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 cache-control: - no-cache content-length: - - '981' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:57:40 GMT + - Mon, 16 May 2022 06:26:25 GMT expires: - '-1' pragma: @@ -30383,33 +58321,34 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cd64ab22-05fd-4825-b8c7-971e67ccce37 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - 1074eaee-8866-4b78-985d-e5fa68f7f4c5 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30421,7 +58360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:57:51 GMT + - Mon, 16 May 2022 06:27:05 GMT expires: - '-1' pragma: @@ -30438,7 +58377,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 448fda2a-00ab-4cc1-8622-ce1147b73085 + - d0597019-affc-4b60-afa1-4c39803ba520 status: code: 200 message: OK @@ -30446,20 +58385,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30471,7 +58409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:58:03 GMT + - Mon, 16 May 2022 06:28:26 GMT expires: - '-1' pragma: @@ -30488,7 +58426,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f458e6ee-4112-4f73-a00f-2ec88ba98295 + - a88a6e14-3385-4947-98e0-e51a4273575a status: code: 200 message: OK @@ -30496,20 +58434,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30521,7 +58458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:58:23 GMT + - Mon, 16 May 2022 06:31:07 GMT expires: - '-1' pragma: @@ -30538,7 +58475,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60b6ea6e-f0ad-4e17-a3ce-26928d138b48 + - 5e662549-04a0-473e-aaa9-f47cc329cf74 status: code: 200 message: OK @@ -30546,20 +58483,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30571,7 +58507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:58:44 GMT + - Mon, 16 May 2022 06:32:47 GMT expires: - '-1' pragma: @@ -30588,7 +58524,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 45b9ef05-eec3-4880-a6d2-abb12bfb968b + - 26d83d2b-8f36-4e6d-8717-5e8fa3803426 status: code: 200 message: OK @@ -30596,20 +58532,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30621,7 +58556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 02:59:25 GMT + - Mon, 16 May 2022 06:34:28 GMT expires: - '-1' pragma: @@ -30638,7 +58573,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0cb99e93-491f-439c-bde5-2c7241595327 + - 1b7c9f1c-1533-4c87-857d-c7c6224d7a39 status: code: 200 message: OK @@ -30646,20 +58581,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30671,7 +58605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:00:05 GMT + - Mon, 16 May 2022 06:36:08 GMT expires: - '-1' pragma: @@ -30688,7 +58622,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a022ba1f-40e3-4fbd-835c-2cfa9da24272 + - 4d5ef8b9-42b3-4024-8ed7-5dbfbfc8cabc status: code: 200 message: OK @@ -30696,20 +58630,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30721,7 +58654,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:01:26 GMT + - Mon, 16 May 2022 06:37:49 GMT expires: - '-1' pragma: @@ -30738,7 +58671,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 80868355-90e7-4785-a65d-b991a2c454b6 + - 2da63252-5fda-49a9-ba09-8231af8ed1e9 status: code: 200 message: OK @@ -30746,20 +58679,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30771,7 +58703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:04:07 GMT + - Mon, 16 May 2022 06:39:29 GMT expires: - '-1' pragma: @@ -30788,7 +58720,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9d041641-9034-463d-9f58-9acc287f2e2d + - 65cba882-f411-41eb-bccd-b25e2a91c873 status: code: 200 message: OK @@ -30796,20 +58728,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30821,7 +58752,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:05:46 GMT + - Mon, 16 May 2022 06:41:09 GMT expires: - '-1' pragma: @@ -30838,7 +58769,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62682764-79dc-4fc3-9040-6cceed8bd800 + - a3fd455b-72ad-47f2-83e2-7d2b4b2a717b status: code: 200 message: OK @@ -30846,20 +58777,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -30871,7 +58801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:07:27 GMT + - Mon, 16 May 2022 06:42:49 GMT expires: - '-1' pragma: @@ -30888,7 +58818,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 673c7997-798c-4dd4-a056-e337bce3c9e7 + - d483be96-5052-403f-b4d7-e102cce0c0d9 status: code: 200 message: OK @@ -30896,32 +58826,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e15ffdf0-d734-44e4-9b2a-32e8d89443b4?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:09:08 GMT + - Mon, 16 May 2022 06:44:30 GMT expires: - '-1' pragma: @@ -30938,7 +58867,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d2dc9795-0d8d-48fb-a094-fab1832e0ea0 + - 9f8d6ad7-5e1a-4564-8fe9-133e5f52ecfd status: code: 200 message: OK @@ -30946,32 +58875,42 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --vhub -l + - -g -n --vhub --sku --count User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"myfirewall\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\",\r\n + \ \"etag\": \"W/\\\"4e19f997-67a9-4922-96f8-8f88c88c52ba\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": + {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n + \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n + \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": + \"20.127.6.26\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n + \ }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '933' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:10:48 GMT + - Mon, 16 May 2022 06:44:31 GMT + etag: + - W/"4e19f997-67a9-4922-96f8-8f88c88c52ba" expires: - '-1' pragma: @@ -30988,7 +58927,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cab76786-061b-4cb6-9808-d33753f2fce1 + - 183b8441-69e1-4ed3-a122-8e0e65515581 status: code: 200 message: OK @@ -31006,44 +58945,39 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/mycligateway'' + under resource group ''cli_test_azure_vwan_route_table_v3000001'' was not + found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '30' + - '254' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:12:29 GMT + - Mon, 16 May 2022 06:44: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: - - 568901fa-a644-46df-bc2f-15074d37b207 + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: - body: null + body: '{"location": "eastus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub"}, + "bgpSettings": {}}}' headers: Accept: - application/json @@ -31053,25 +58987,40 @@ interactions: - network vpn-gateway create Connection: - keep-alive + Content-Length: + - '244' + Content-Type: + - application/json ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n + \ \"etag\": \"W/\\\"9732e695-cf05-4588-ac91-ef6f3e07746f\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 cache-control: - no-cache content-length: - - '30' + - '911' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:14:08 GMT + - Mon, 16 May 2022 06:44:37 GMT expires: - '-1' pragma: @@ -31081,22 +59030,20 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3250c47c-ae5c-406a-bfe0-246a3d2b88da + - 03542137-ac4f-474d-b40d-51ae23826e36 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -31106,10 +59053,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31121,7 +59067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:15:49 GMT + - Mon, 16 May 2022 06:44:48 GMT expires: - '-1' pragma: @@ -31138,7 +59084,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5c8ce0b-96e5-461a-83f2-4c29925954cb + - 7aac1562-d5f6-4275-a7f9-f6c48a258d17 status: code: 200 message: OK @@ -31146,7 +59092,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -31156,10 +59102,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31171,7 +59116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:17:30 GMT + - Mon, 16 May 2022 06:44:59 GMT expires: - '-1' pragma: @@ -31188,7 +59133,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 51690ae3-83db-4057-a86d-22eaa28d254a + - 23b8a0c4-8108-473f-a35b-32157b719839 status: code: 200 message: OK @@ -31196,7 +59141,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -31206,10 +59151,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31221,7 +59165,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:19:10 GMT + - Mon, 16 May 2022 06:45:20 GMT expires: - '-1' pragma: @@ -31238,7 +59182,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 473a131d-abfc-4c10-932e-8281aea86e42 + - 6b27cb46-20b5-483c-9453-53c9c6f9815a status: code: 200 message: OK @@ -31246,7 +59190,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -31256,10 +59200,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31271,7 +59214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:20:50 GMT + - Mon, 16 May 2022 06:45:40 GMT expires: - '-1' pragma: @@ -31288,7 +59231,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fd7c2f02-ba17-49a0-b0d6-cbef9e42ade6 + - 680d34d4-7c16-4b9d-a585-06c1045466cd status: code: 200 message: OK @@ -31296,7 +59239,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -31306,10 +59249,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31321,7 +59263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:22:31 GMT + - Mon, 16 May 2022 06:46:20 GMT expires: - '-1' pragma: @@ -31338,7 +59280,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 18556f6d-a2c0-4b66-9507-121f14d53c08 + - 601c6e7a-40a8-4dd7-a460-cb68d6881f69 status: code: 200 message: OK @@ -31346,7 +59288,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -31356,10 +59298,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31371,7 +59312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:24:11 GMT + - Mon, 16 May 2022 06:47:01 GMT expires: - '-1' pragma: @@ -31388,7 +59329,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8acc6419-fb3d-4253-a0ad-0e405f0f4916 + - de3f88c2-f804-4d4e-9713-775dffd592b0 status: code: 200 message: OK @@ -31396,7 +59337,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -31406,10 +59347,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31421,7 +59361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:25:51 GMT + - Mon, 16 May 2022 06:48:20 GMT expires: - '-1' pragma: @@ -31438,7 +59378,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 52deb788-cb7c-4216-aab2-da464d732277 + - cb27cd25-7d36-46fa-8fe8-8466d7f941db status: code: 200 message: OK @@ -31446,7 +59386,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -31456,22 +59396,21 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/331f7dd2-59c3-404c-98f0-f31a01052242?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:27:31 GMT + - Mon, 16 May 2022 06:51:02 GMT expires: - '-1' pragma: @@ -31488,7 +59427,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 119a6ac7-4df2-4b7d-9ca8-93744c741f5c + - ce5c8bb0-65ee-4f62-a41d-7b2cf16fc92d status: code: 200 message: OK @@ -31496,7 +59435,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -31506,42 +59445,21 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"00d170bb-3776-4e1f-8213-1894f98b0ddc\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n - \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n - \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": - 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n - \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.88.233.5\",\r\n \"10.0.0.4\"\r\n ]\r\n - \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n - \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.88.232.156\",\r\n \"10.0.0.5\"\r\n ]\r\n - \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": - \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.88.233.5\",\r\n \"privateIpAddress\": - \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"40.88.232.156\",\r\n \"privateIpAddress\": - \"10.0.0.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": - false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1858' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:27:31 GMT + - Mon, 16 May 2022 06:52:42 GMT expires: - '-1' pragma: @@ -31558,61 +59476,39 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e20f9c94-96bd-4a3e-8ab5-534cd2a4e109 + - 6237c4b6-7ddf-44a7-a660-6dfe36a5e919 status: code: 200 message: OK - request: - body: '{"properties": {"routes": [{"name": "myroute1", "destinationType": "CIDR", - "destinations": ["20.10.0.0/16", "20.20.0.0/16"], "nextHopType": "ResourceId", - "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}], - "labels": ["label1", "label2"]}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table create + - network vpn-gateway create Connection: - keep-alive - Content-Length: - - '399' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"86fdb251-bb18-41f4-9765-9485f7513533\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n - \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n - \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n - \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n \"label2\"\r\n - \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d3c8e7c9-5d4c-42cc-8162-f1e63674680e?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1033' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:27:33 GMT + - Mon, 16 May 2022 06:54:23 GMT expires: - '-1' pragma: @@ -31622,34 +59518,34 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 010f865a-696c-4078-a1de-8fd7363f6fbc - x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - 8283e4c0-09d9-4061-a1b2-3adfbc54b753 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d3c8e7c9-5d4c-42cc-8162-f1e63674680e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31661,7 +59557,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:27:44 GMT + - Mon, 16 May 2022 06:56:03 GMT expires: - '-1' pragma: @@ -31678,7 +59574,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62ede603-235a-445b-9816-4c645c3efb98 + - 4ef6bc88-d431-45ee-94e8-8be6a65c0eb8 status: code: 200 message: OK @@ -31686,21 +59582,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d3c8e7c9-5d4c-42cc-8162-f1e63674680e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31712,7 +59606,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:27:54 GMT + - Mon, 16 May 2022 06:57:43 GMT expires: - '-1' pragma: @@ -31729,7 +59623,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d90471a2-8359-409c-bef8-dbca99396bc8 + - 31c36fbe-1544-4026-a295-9b64cfcb5661 status: code: 200 message: OK @@ -31737,21 +59631,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d3c8e7c9-5d4c-42cc-8162-f1e63674680e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31763,7 +59655,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:28:15 GMT + - Mon, 16 May 2022 06:59:24 GMT expires: - '-1' pragma: @@ -31780,7 +59672,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 977419dc-28e2-4f8b-9522-6ab0a9bd9494 + - f9611df9-0147-46e7-b487-d19523968242 status: code: 200 message: OK @@ -31788,21 +59680,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d3c8e7c9-5d4c-42cc-8162-f1e63674680e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31814,7 +59704,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:28:56 GMT + - Mon, 16 May 2022 07:01:04 GMT expires: - '-1' pragma: @@ -31831,7 +59721,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c2801b8-bb75-4bb4-879d-43fde96e977d + - 7b9fbf49-e33c-4b46-b59e-afe13aab3bed status: code: 200 message: OK @@ -31839,21 +59729,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d3c8e7c9-5d4c-42cc-8162-f1e63674680e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -31865,7 +59753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:30:15 GMT + - Mon, 16 May 2022 07:02:44 GMT expires: - '-1' pragma: @@ -31882,7 +59770,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 203bacde-67ad-40fc-be4f-4ec2c7cb0e34 + - a84584e0-c8bc-42ee-83c5-1407430fa1bc status: code: 200 message: OK @@ -31890,33 +59778,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d3c8e7c9-5d4c-42cc-8162-f1e63674680e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:32:56 GMT + - Mon, 16 May 2022 07:04:25 GMT expires: - '-1' pragma: @@ -31933,7 +59819,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 83383ffe-6af1-4428-bc18-d8dc887ecf88 + - 94ca262a-4068-48c6-8c81-0fb49663d60e status: code: 200 message: OK @@ -31941,44 +59827,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"19660d93-17dd-4d7f-9767-21a98fcc9ddf\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n - \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n - \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n - \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n \"label2\"\r\n - \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1034' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:32:56 GMT - etag: - - W/"19660d93-17dd-4d7f-9767-21a98fcc9ddf" + - Mon, 16 May 2022 07:06:05 GMT expires: - '-1' pragma: @@ -31995,7 +59868,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5d2f79f8-b9bd-41de-94f7-2fa80afcd566 + - 8d1d1072-2dae-42ae-a91c-8c55ae345f33 status: code: 200 message: OK @@ -32003,45 +59876,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table show + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"19660d93-17dd-4d7f-9767-21a98fcc9ddf\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n - \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n - \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n - \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n \"label2\"\r\n - \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + - -n -g --vhub -l + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1034' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:32:59 GMT - etag: - - W/"19660d93-17dd-4d7f-9767-21a98fcc9ddf" + - Mon, 16 May 2022 07:07:46 GMT expires: - '-1' pragma: @@ -32058,7 +59917,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e3f5360f-f012-499e-874e-3c676dfb0b80 + - 218e0b1b-21e8-4380-81c8-ea3e64a49841 status: code: 200 message: OK @@ -32066,34 +59925,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table list + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -g --vhub-name + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: - string: "{\r\n \"value\": []\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '19' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:32:59 GMT + - Mon, 16 May 2022 07:09:27 GMT expires: - '-1' pragma: @@ -32110,7 +59966,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a654d26b-92ea-4d04-ab4f-b83e936440df + - 0f259e3d-cb5a-4042-aa7f-5d0842c02eb7 status: code: 200 message: OK @@ -32118,57 +59974,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table list + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -g --vhub-name + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"defaultRouteTable\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/defaultRouteTable\",\r\n - \ \"etag\": \"W/\\\"19660d93-17dd-4d7f-9767-21a98fcc9ddf\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": - [],\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"associatedConnections\": - [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": - \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n },\r\n {\r\n \"name\": - \"noneRouteTable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/noneRouteTable\",\r\n - \ \"etag\": \"W/\\\"19660d93-17dd-4d7f-9767-21a98fcc9ddf\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": - [],\r\n \"labels\": [\r\n \"none\"\r\n ],\r\n \"associatedConnections\": - [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": - \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n },\r\n {\r\n \"name\": - \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"19660d93-17dd-4d7f-9767-21a98fcc9ddf\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": - [\r\n {\r\n \"name\": \"myroute1\",\r\n \"destinationType\": - \"CIDR\",\r\n \"destinations\": [\r\n \"20.10.0.0/16\",\r\n - \ \"20.20.0.0/16\"\r\n ],\r\n \"nextHopType\": - \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n - \ \"label2\"\r\n ],\r\n \"associatedConnections\": [],\r\n - \ \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n - \ }\r\n ]\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '2456' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:32:59 GMT + - Mon, 16 May 2022 07:11:06 GMT expires: - '-1' pragma: @@ -32185,7 +60015,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - baa00295-c96c-45ff-9147-7141ccbd72d6 + - cb89ab57-c5fe-4473-8172-177c11c6b196 status: code: 200 message: OK @@ -32193,45 +60023,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table update + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"19660d93-17dd-4d7f-9767-21a98fcc9ddf\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n - \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n - \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n - \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n \"label2\"\r\n - \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1034' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:33:01 GMT - etag: - - W/"19660d93-17dd-4d7f-9767-21a98fcc9ddf" + - Mon, 16 May 2022 07:12:47 GMT expires: - '-1' pragma: @@ -32248,60 +60064,39 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b530b197-c3e4-40f4-bd0d-e73532bccc72 + - c7425258-33c3-49e4-b351-9c3accfb4466 status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable", - "properties": {"routes": [{"name": "myroute1", "destinationType": "CIDR", "destinations": - ["20.10.0.0/16", "20.20.0.0/16"], "nextHopType": "ResourceId", "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}], - "labels": ["label3", "label4"]}, "name": "testroutetable"}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table update + - network vpn-gateway create Connection: - keep-alive - Content-Length: - - '661' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --vhub-name --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d78424b-147e-41a1-9a26-773c887f4565?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"9838fd45-c5dd-4a6b-bcd8-b1b2a61f533d\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n - \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n - \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n - \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n - \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/288fc32c-55ae-4fcf-913e-74fa89a3ec76?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1033' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:33:02 GMT + - Mon, 16 May 2022 07:14:27 GMT expires: - '-1' pragma: @@ -32318,9 +60113,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76d94815-d0ed-451e-adb3-3089fc4cd009 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - 0d8d393d-8f71-4e3a-83de-56e03478e618 status: code: 200 message: OK @@ -32328,32 +60121,51 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table update + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --labels + - -n -g --vhub -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/288fc32c-55ae-4fcf-913e-74fa89a3ec76?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n + \ \"etag\": \"W/\\\"8fff527e-0922-4ebd-b0c8-c39dcbd1b618\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"52.226.215.214\",\r\n \"10.0.0.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"52.226.215.219\",\r\n \"10.0.0.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"52.226.215.214\",\r\n \"privateIpAddress\": + \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"52.226.215.219\",\r\n \"privateIpAddress\": + \"10.0.0.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '1796' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:33:11 GMT + - Mon, 16 May 2022 07:14:28 GMT expires: - '-1' pragma: @@ -32370,40 +60182,58 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1e094392-e883-4d05-8cf3-9f983c24c2ad + - 8686b889-0246-41ec-a084-5a27b60eecc0 status: code: 200 message: OK - request: - body: null + body: '{"properties": {"routes": [{"name": "myroute1", "destinationType": "CIDR", + "destinations": ["20.10.0.0/16", "20.20.0.0/16"], "nextHopType": "ResourceId", + "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}], + "labels": ["label1", "label2"]}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table update + - network vhub route-table create Connection: - keep-alive + Content-Length: + - '364' + Content-Type: + - application/json ParameterSetName: - - -n -g --vhub-name --labels + - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type + --next-hop --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/288fc32c-55ae-4fcf-913e-74fa89a3ec76?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"645cbec6-ea86-4cca-a278-2770f0cf0c49\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n + \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n + \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n \"label2\"\r\n + \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d36f5903-9b6f-4db8-99e3-4981dddede80?api-version=2021-08-01 cache-control: - no-cache content-length: - - '30' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:33:23 GMT + - Mon, 16 May 2022 07:14:30 GMT expires: - '-1' pragma: @@ -32413,35 +60243,33 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4413573e-20f2-454d-8acd-63fefbe18d50 + - 4141311d-3b38-4c74-9d50-7d4f010944a3 + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table update + - network vhub route-table create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --labels + - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type + --next-hop --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/288fc32c-55ae-4fcf-913e-74fa89a3ec76?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d36f5903-9b6f-4db8-99e3-4981dddede80?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -32453,7 +60281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:33:43 GMT + - Mon, 16 May 2022 07:14:40 GMT expires: - '-1' pragma: @@ -32470,7 +60298,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 08d2c79c-c9b3-4950-a4e8-b9638da72796 + - 23d71f65-2aa2-49c7-97a4-6e91ebbf700a status: code: 200 message: OK @@ -32478,32 +60306,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table update + - network vhub route-table create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --labels + - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type + --next-hop --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/288fc32c-55ae-4fcf-913e-74fa89a3ec76?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d36f5903-9b6f-4db8-99e3-4981dddede80?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:34:23 GMT + - Mon, 16 May 2022 07:14:50 GMT expires: - '-1' pragma: @@ -32520,7 +60348,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed561bd9-58e0-431d-9297-d9c0255a40eb + - 4577a88c-f2b3-4b7e-8c2f-bb7c903190bb status: code: 200 message: OK @@ -32528,32 +60356,43 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table update + - network vhub route-table create Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --labels + - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type + --next-hop --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/288fc32c-55ae-4fcf-913e-74fa89a3ec76?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"2ea42526-baf9-4a85-b60c-4e0ac327f33a\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n + \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n + \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n \"label2\"\r\n + \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '964' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:35:43 GMT + - Mon, 16 May 2022 07:14:50 GMT + etag: + - W/"2ea42526-baf9-4a85-b60c-4e0ac327f33a" expires: - '-1' pragma: @@ -32570,7 +60409,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6349874e-139c-4182-a1bc-0da9d019d2c2 + - 630b5384-e6ba-4590-a0a5-4ceb3a419e31 status: code: 200 message: OK @@ -32582,28 +60421,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table update + - network vhub route-table show Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --labels + - -n -g --vhub-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/288fc32c-55ae-4fcf-913e-74fa89a3ec76?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"2ea42526-baf9-4a85-b60c-4e0ac327f33a\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n + \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n + \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n \"label2\"\r\n + \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '964' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:38:24 GMT + - Mon, 16 May 2022 07:14:51 GMT + etag: + - W/"2ea42526-baf9-4a85-b60c-4e0ac327f33a" expires: - '-1' pragma: @@ -32620,7 +60469,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2702ddbf-7830-437b-afe5-aabdf51c2172 + - 2239b287-8a22-498b-9ab8-7226e9749e14 status: code: 200 message: OK @@ -32632,39 +60481,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table update + - network vhub route-table list Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --labels + - -g --vhub-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/routeTables?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"a70afbdd-a8d9-4577-8c6a-19d1214f0512\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n - \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n - \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n - \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n - \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + string: "{\r\n \"value\": []\r\n}" headers: cache-control: - no-cache content-length: - - '1034' + - '19' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:38:25 GMT - etag: - - W/"a70afbdd-a8d9-4577-8c6a-19d1214f0512" + - Mon, 16 May 2022 07:14:52 GMT expires: - '-1' pragma: @@ -32681,7 +60518,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b183a71-63c1-4e30-9a1d-ed732e0b7c88 + - 497d8572-d2e5-4f14-9975-1cb5d9ca773b status: code: 200 message: OK @@ -32693,42 +60530,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route add + - network vhub route-table list Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop + - -g --vhub-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"a70afbdd-a8d9-4577-8c6a-19d1214f0512\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n - \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n - \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n - \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n - \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"defaultRouteTable\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/defaultRouteTable\",\r\n + \ \"etag\": \"W/\\\"2ea42526-baf9-4a85-b60c-4e0ac327f33a\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": + [],\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"associatedConnections\": + [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": + \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n },\r\n {\r\n \"name\": + \"noneRouteTable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/noneRouteTable\",\r\n + \ \"etag\": \"W/\\\"2ea42526-baf9-4a85-b60c-4e0ac327f33a\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": + [],\r\n \"labels\": [\r\n \"none\"\r\n ],\r\n \"associatedConnections\": + [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": + \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n },\r\n {\r\n \"name\": + \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"2ea42526-baf9-4a85-b60c-4e0ac327f33a\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": + [\r\n {\r\n \"name\": \"myroute1\",\r\n \"destinationType\": + \"CIDR\",\r\n \"destinations\": [\r\n \"20.10.0.0/16\",\r\n + \ \"20.20.0.0/16\"\r\n ],\r\n \"nextHopType\": + \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n + \ \"label2\"\r\n ],\r\n \"associatedConnections\": [],\r\n + \ \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n + \ }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1034' + - '2316' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:38:26 GMT - etag: - - W/"a70afbdd-a8d9-4577-8c6a-19d1214f0512" + - Mon, 16 May 2022 07:14:53 GMT expires: - '-1' pragma: @@ -32745,67 +60590,50 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5a7c365-9a8b-4387-bb13-3524d2e98de0 + - 2008e1ef-afa8-40c6-be4d-3632cc1a0a38 status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable", - "properties": {"routes": [{"name": "myroute1", "destinationType": "CIDR", "destinations": - ["20.10.0.0/16", "20.20.0.0/16"], "nextHopType": "ResourceId", "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}, - {"name": "myroute2", "destinationType": "CIDR", "destinations": ["20.30.0.0/16", - "20.40.0.0/16"], "nextHopType": "ResourceId", "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}], - "labels": ["label3", "label4"]}, "name": "testroutetable"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route add + - network vhub route-table update Connection: - keep-alive - Content-Length: - - '1000' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop + - -n -g --vhub-name --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"869ff8c2-f2b0-42d9-b02c-76c708cdd1c0\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n + \ \"etag\": \"W/\\\"2ea42526-baf9-4a85-b60c-4e0ac327f33a\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ },\r\n {\r\n \"name\": \"myroute2\",\r\n \"destinationType\": - \"CIDR\",\r\n \"destinations\": [\r\n \"20.30.0.0/16\",\r\n - \ \"20.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n - \ \"nextHop\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label1\",\r\n \"label2\"\r\n \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35998f71-affb-43fe-8cc0-c187d278af22?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1466' + - '964' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:38:29 GMT + - Mon, 16 May 2022 07:14:54 GMT + etag: + - W/"2ea42526-baf9-4a85-b60c-4e0ac327f33a" expires: - '-1' pragma: @@ -32822,43 +60650,58 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5193b6e8-9388-4f5f-a6b2-ef2e51d7e9a4 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - 70b061c8-7397-4882-a65b-a6054d6cac69 status: code: 200 message: OK - request: - body: null + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable", + "name": "testroutetable", "properties": {"routes": [{"name": "myroute1", "destinationType": + "CIDR", "destinations": ["20.10.0.0/16", "20.20.0.0/16"], "nextHopType": "ResourceId", + "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}], + "labels": ["label3", "label4"]}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route add + - network vhub route-table update Connection: - keep-alive + Content-Length: + - '591' + Content-Type: + - application/json ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop + - -n -g --vhub-name --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35998f71-affb-43fe-8cc0-c187d278af22?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"3fa0ed7d-51cb-47e6-9d87-66ce45ce9faf\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n + \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n + \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n + \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/58327b0c-e1a0-4fb3-866a-d4e5d29cc9e4?api-version=2021-08-01 cache-control: - no-cache content-length: - - '30' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:38:39 GMT + - Mon, 16 May 2022 07:14:55 GMT expires: - '-1' pragma: @@ -32875,7 +60718,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22c12ebc-2338-42b2-94cd-0c8f69768fa6 + - 53d27af0-a9d6-4662-9b1b-306a122f98c7 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -32883,21 +60728,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route add + - network vhub route-table update Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop + - -n -g --vhub-name --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35998f71-affb-43fe-8cc0-c187d278af22?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/58327b0c-e1a0-4fb3-866a-d4e5d29cc9e4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -32909,7 +60752,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:38:50 GMT + - Mon, 16 May 2022 07:15:07 GMT expires: - '-1' pragma: @@ -32926,7 +60769,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d9afa2f9-c3e7-4be9-87db-fbb1aead8cea + - 52c29859-58cb-4875-bfd2-f0e6fcd6403f status: code: 200 message: OK @@ -32934,21 +60777,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route add + - network vhub route-table update Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop + - -n -g --vhub-name --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35998f71-affb-43fe-8cc0-c187d278af22?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/58327b0c-e1a0-4fb3-866a-d4e5d29cc9e4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -32960,7 +60801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:39:11 GMT + - Mon, 16 May 2022 07:15:26 GMT expires: - '-1' pragma: @@ -32977,7 +60818,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c3ffe5cc-cc8c-4e8f-ac7a-a68c86ffd319 + - 3e01f9f8-e61b-48bf-97c8-a4907fdc0174 status: code: 200 message: OK @@ -32985,33 +60826,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route add + - network vhub route-table update Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop + - -n -g --vhub-name --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35998f71-affb-43fe-8cc0-c187d278af22?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/58327b0c-e1a0-4fb3-866a-d4e5d29cc9e4?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:39:51 GMT + - Mon, 16 May 2022 07:16:06 GMT expires: - '-1' pragma: @@ -33028,7 +60867,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b0a19ddb-ddd3-46b4-bb76-07373c9e060f + - 8c35fe27-b1f3-41d3-836f-b2ac9c41eb43 status: code: 200 message: OK @@ -33036,33 +60875,42 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route add + - network vhub route-table update Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type - --next-hop + - -n -g --vhub-name --labels User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35998f71-affb-43fe-8cc0-c187d278af22?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"1d76a387-9fae-449e-9498-704456b83e29\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n + \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n + \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n + \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '964' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:41:11 GMT + - Mon, 16 May 2022 07:16:08 GMT + etag: + - W/"1d76a387-9fae-449e-9498-704456b83e29" expires: - '-1' pragma: @@ -33079,7 +60927,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bc2ad978-7c49-490e-acdf-b42764b5dcc4 + - faaf5c3d-ad45-4d63-a537-f7d11076a2fc status: code: 200 message: OK @@ -33098,22 +60946,32 @@ interactions: - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type --next-hop User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35998f71-affb-43fe-8cc0-c187d278af22?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"1d76a387-9fae-449e-9498-704456b83e29\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n + \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n + \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n + \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '964' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:43:52 GMT + - Mon, 16 May 2022 07:16:08 GMT + etag: + - W/"1d76a387-9fae-449e-9498-704456b83e29" expires: - '-1' pragma: @@ -33130,12 +60988,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b5bf5b7d-2ead-4bf1-b6cd-a4803a41fb85 + - 36706b88-86da-4778-acc2-40134e846cdf status: code: 200 message: OK - request: - body: null + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable", + "name": "testroutetable", "properties": {"routes": [{"name": "myroute1", "destinationType": + "CIDR", "destinations": ["20.10.0.0/16", "20.20.0.0/16"], "nextHopType": "ResourceId", + "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}, + {"name": "myroute2", "destinationType": "CIDR", "destinations": ["20.30.0.0/16", + "20.40.0.0/16"], "nextHopType": "ResourceId", "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}], + "labels": ["label3", "label4"]}}' headers: Accept: - application/json @@ -33145,19 +61009,22 @@ interactions: - network vhub route-table route add Connection: - keep-alive + Content-Length: + - '895' + Content-Type: + - application/json ParameterSetName: - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type --next-hop User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"44a98dcb-da9a-41a8-be1e-03f240c2af02\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n + \ \"etag\": \"W/\\\"7ee8e334-0f0c-4b9e-8420-94d22181b2b5\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": @@ -33170,16 +61037,16 @@ interactions: \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/388bbfe9-33d9-4d8b-80a5-22a6aedc12bd?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1467' + - '1361' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:43:52 GMT - etag: - - W/"44a98dcb-da9a-41a8-be1e-03f240c2af02" + - Mon, 16 May 2022 07:16:09 GMT expires: - '-1' pragma: @@ -33196,7 +61063,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9427eb1c-d7f9-4867-8964-383ceb4256ab + - f94c6201-df95-47c0-ab52-e098dc45bea2 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -33204,49 +61073,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route remove + - network vhub route-table route add Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --index + - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type + --next-hop User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/388bbfe9-33d9-4d8b-80a5-22a6aedc12bd?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"44a98dcb-da9a-41a8-be1e-03f240c2af02\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n - \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n - \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n - \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ },\r\n {\r\n \"name\": \"myroute2\",\r\n \"destinationType\": - \"CIDR\",\r\n \"destinations\": [\r\n \"20.30.0.0/16\",\r\n - \ \"20.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n - \ \"nextHop\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n - \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1467' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:43:53 GMT - etag: - - W/"44a98dcb-da9a-41a8-be1e-03f240c2af02" + - Mon, 16 May 2022 07:16:20 GMT expires: - '-1' pragma: @@ -33263,60 +61115,40 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b396eddf-7be3-4dca-9b99-02a6bba8c337 + - d7da9dac-f86c-4197-bade-a4fd65de3488 status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable", - "properties": {"routes": [{"name": "myroute2", "destinationType": "CIDR", "destinations": - ["20.30.0.0/16", "20.40.0.0/16"], "nextHopType": "ResourceId", "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}], - "labels": ["label3", "label4"]}, "name": "testroutetable"}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route remove + - network vhub route-table route add Connection: - keep-alive - Content-Length: - - '661' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --vhub-name --index + - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type + --next-hop User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/388bbfe9-33d9-4d8b-80a5-22a6aedc12bd?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"c414559b-410b-48bd-a3ae-81c4a0dad20c\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n - \ \"name\": \"myroute2\",\r\n \"destinationType\": \"CIDR\",\r\n - \ \"destinations\": [\r\n \"20.30.0.0/16\",\r\n \"20.40.0.0/16\"\r\n - \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n - \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n - \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1f630513-cd4c-4022-96aa-4c2365fae443?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1033' + - '30' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:43:53 GMT + - Mon, 16 May 2022 07:16:30 GMT expires: - '-1' pragma: @@ -33333,9 +61165,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e452b14b-2789-4cbf-b54e-d9d87238ee79 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - 9e2b8122-a97d-4b64-b649-f57a2a2ad158 status: code: 200 message: OK @@ -33343,32 +61173,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route remove + - network vhub route-table route add Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --index + - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type + --next-hop User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1f630513-cd4c-4022-96aa-4c2365fae443?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/388bbfe9-33d9-4d8b-80a5-22a6aedc12bd?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:44:04 GMT + - Mon, 16 May 2022 07:16:51 GMT expires: - '-1' pragma: @@ -33385,7 +61215,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef499ffa-72ac-41a4-aa7f-c59857b965d3 + - 3ffac98b-7ee5-410f-8f60-b02a600750f6 status: code: 200 message: OK @@ -33393,32 +61223,47 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vhub route-table route remove + - network vhub route-table route add Connection: - keep-alive ParameterSetName: - - -n -g --vhub-name --index + - -n -g --vhub-name --route-name --destination-type --destinations --next-hop-type + --next-hop User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1f630513-cd4c-4022-96aa-4c2365fae443?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"5823659a-6677-41c8-a6ca-12b40e2901bf\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n + \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n + \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ },\r\n {\r\n \"name\": \"myroute2\",\r\n \"destinationType\": + \"CIDR\",\r\n \"destinations\": [\r\n \"20.30.0.0/16\",\r\n + \ \"20.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n + \ \"nextHop\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n + \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '1362' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:44:14 GMT + - Mon, 16 May 2022 07:16:51 GMT + etag: + - W/"5823659a-6677-41c8-a6ca-12b40e2901bf" expires: - '-1' pragma: @@ -33435,7 +61280,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d28c251f-372a-4c6e-9f5e-a5124d4c976b + - 5bb2a53e-9c0c-4716-9c35-843a1c5c50a6 status: code: 200 message: OK @@ -33453,22 +61298,36 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1f630513-cd4c-4022-96aa-4c2365fae443?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"5823659a-6677-41c8-a6ca-12b40e2901bf\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"myroute1\",\r\n \"destinationType\": \"CIDR\",\r\n + \ \"destinations\": [\r\n \"20.10.0.0/16\",\r\n \"20.20.0.0/16\"\r\n + \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ },\r\n {\r\n \"name\": \"myroute2\",\r\n \"destinationType\": + \"CIDR\",\r\n \"destinations\": [\r\n \"20.30.0.0/16\",\r\n + \ \"20.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n + \ \"nextHop\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n + \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '1362' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:44:35 GMT + - Mon, 16 May 2022 07:16:54 GMT + etag: + - W/"5823659a-6677-41c8-a6ca-12b40e2901bf" expires: - '-1' pragma: @@ -33485,12 +61344,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d6275529-4fa0-4012-b66d-ca1acd1e93fc + - 29e6bd77-277e-4dd8-b156-22519394c130 status: code: 200 message: OK - request: - body: null + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable", + "name": "testroutetable", "properties": {"routes": [{"name": "myroute2", "destinationType": + "CIDR", "destinations": ["20.30.0.0/16", "20.40.0.0/16"], "nextHopType": "ResourceId", + "nextHop": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall"}], + "labels": ["label3", "label4"]}}' headers: Accept: - application/json @@ -33500,25 +61363,39 @@ interactions: - network vhub route-table route remove Connection: - keep-alive + Content-Length: + - '591' + Content-Type: + - application/json ParameterSetName: - -n -g --vhub-name --index User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1f630513-cd4c-4022-96aa-4c2365fae443?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n + \ \"etag\": \"W/\\\"40ce7e5a-2892-4520-ab98-a31d514c6b54\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n + \ \"name\": \"myroute2\",\r\n \"destinationType\": \"CIDR\",\r\n + \ \"destinations\": [\r\n \"20.30.0.0/16\",\r\n \"20.40.0.0/16\"\r\n + \ ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/azureFirewalls/myfirewall\"\r\n + \ }\r\n ],\r\n \"labels\": [\r\n \"label3\",\r\n \"label4\"\r\n + \ ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ecc5e95a-5a29-48c6-9c4c-e32696d8e29a?api-version=2021-08-01 cache-control: - no-cache content-length: - - '30' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:45:16 GMT + - Mon, 16 May 2022 07:16:55 GMT expires: - '-1' pragma: @@ -33535,7 +61412,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ff6f840c-d3f4-4fa5-ba81-71f316341fe8 + - 1d697108-9748-498b-9e13-49c5ddf55ca7 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -33543,7 +61422,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -33553,10 +61432,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1f630513-cd4c-4022-96aa-4c2365fae443?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ecc5e95a-5a29-48c6-9c4c-e32696d8e29a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -33568,7 +61446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:46:35 GMT + - Mon, 16 May 2022 07:17:05 GMT expires: - '-1' pragma: @@ -33585,7 +61463,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dfca8f5d-cc72-4fa9-8681-22092be1c1eb + - e9584996-8007-4b66-82df-637d4a8b0fe3 status: code: 200 message: OK @@ -33593,7 +61471,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -33603,10 +61481,9 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1f630513-cd4c-4022-96aa-4c2365fae443?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ecc5e95a-5a29-48c6-9c4c-e32696d8e29a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -33618,7 +61495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:49:17 GMT + - Mon, 16 May 2022 07:17:25 GMT expires: - '-1' pragma: @@ -33635,7 +61512,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b9a6e05c-272c-4916-a8b0-fc9701f79aba + - d0438daa-fc4a-49e4-a9c7-f6a911840f87 status: code: 200 message: OK @@ -33643,7 +61520,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -33653,14 +61530,13 @@ interactions: ParameterSetName: - -n -g --vhub-name --index User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"ae3cd6e3-ba1a-477c-8519-23e5f3fa1c29\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"1569c844-c2a9-41a8-9007-c07a03e91e27\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"name\": \"myroute2\",\r\n \"destinationType\": \"CIDR\",\r\n \ \"destinations\": [\r\n \"20.30.0.0/16\",\r\n \"20.40.0.0/16\"\r\n @@ -33673,13 +61549,13 @@ interactions: cache-control: - no-cache content-length: - - '1034' + - '964' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:49:18 GMT + - Mon, 16 May 2022 07:17:26 GMT etag: - - W/"ae3cd6e3-ba1a-477c-8519-23e5f3fa1c29" + - W/"1569c844-c2a9-41a8-9007-c07a03e91e27" expires: - '-1' pragma: @@ -33696,7 +61572,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1bfce0a7-8d1a-4acd-9a59-d853c097dd43 + - 8b9e642a-7a3e-4535-bfec-f85ec41cdbaf status: code: 200 message: OK @@ -33714,16 +61590,13 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testroutetable\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable\",\r\n - \ \"etag\": \"W/\\\"ae3cd6e3-ba1a-477c-8519-23e5f3fa1c29\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"1569c844-c2a9-41a8-9007-c07a03e91e27\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \ \"name\": \"myroute2\",\r\n \"destinationType\": \"CIDR\",\r\n \ \"destinations\": [\r\n \"20.30.0.0/16\",\r\n \"20.40.0.0/16\"\r\n @@ -33736,13 +61609,13 @@ interactions: cache-control: - no-cache content-length: - - '1034' + - '964' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:49:19 GMT + - Mon, 16 May 2022 07:17:27 GMT etag: - - W/"ae3cd6e3-ba1a-477c-8519-23e5f3fa1c29" + - W/"1569c844-c2a9-41a8-9007-c07a03e91e27" expires: - '-1' pragma: @@ -33759,7 +61632,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 103154a3-7ef7-44a4-90c2-d9639f16c3d4 + - 06e55a4d-35ad-443d-bf98-0b23f73f86b7 status: code: 200 message: OK @@ -33779,28 +61652,25 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table_v3000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubRouteTables/testroutetable?api-version=2021-08-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/64f2f3ba-8bde-4fad-8f3f-b5bf1456bb4e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2e7748b6-2f1f-4194-ae44-b08f50b9db45?api-version=2021-08-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 22 Jan 2021 03:49:19 GMT + - Mon, 16 May 2022 07:17:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/64f2f3ba-8bde-4fad-8f3f-b5bf1456bb4e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/2e7748b6-2f1f-4194-ae44-b08f50b9db45?api-version=2021-08-01 pragma: - no-cache server: @@ -33811,9 +61681,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1aa69cbf-fe66-440e-a841-5e4a23632a55 + - 203403d5-2461-455a-9174-fd9c94a8d704 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -33821,7 +61691,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -33831,10 +61701,9 @@ interactions: ParameterSetName: - -n -g --vhub-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.19 msrest_azure/0.6.4 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/64f2f3ba-8bde-4fad-8f3f-b5bf1456bb4e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2e7748b6-2f1f-4194-ae44-b08f50b9db45?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -33846,7 +61715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Jan 2021 03:49:30 GMT + - Mon, 16 May 2022 07:17:38 GMT expires: - '-1' pragma: @@ -33863,7 +61732,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d79ed98-666e-477d-b7d5-1d278f558d4d + - 6240e650-ac7c-46af-bb14-98aba7031454 status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_basic_scenario.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_basic_scenario.yaml index cf9a29a5f58..97aa23b0486 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_basic_scenario.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_basic_scenario.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_route_table000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001","name":"cli_test_azure_vwan_route_table000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:35:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001","name":"cli_test_azure_vwan_route_table000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-09T16:26:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '352' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:32 GMT + - Mon, 09 May 2022 16:26:47 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"1ddd37f1-c53e-4d51-828c-76acb82bdb28\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"513cc3a9-4bcf-406c-a0cc-cf43c24c5a3e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9a832af8-a1b3-4235-9523-8c6d0400e822?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/980a5abd-a61d-452f-a429-cf6a2ea30393?api-version=2021-08-01 cache-control: - no-cache content-length: - - '573' + - '535' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:38 GMT + - Mon, 09 May 2022 16:26:56 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9fe9b6b8-6708-441d-852a-6ac19d73fe49 + - f6d6da2c-7a6a-4f33-a2b6-ce9d34e19c9f x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9a832af8-a1b3-4235-9523-8c6d0400e822?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/980a5abd-a61d-452f-a429-cf6a2ea30393?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:49 GMT + - Mon, 09 May 2022 16:27:06 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1e5ecd23-579a-4986-bb7e-2a3d7e865c22 + - 37c503de-feeb-4649-ae17-d114d0e4bb51 status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"0b44a983-3143-43d1-9584-61e0afe95efb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1cc004a1-c480-4b1f-a694-c452031b1e6b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '574' + - '536' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:49 GMT + - Mon, 09 May 2022 16:27:06 GMT etag: - - W/"0b44a983-3143-43d1-9584-61e0afe95efb" + - W/"1cc004a1-c480-4b1f-a694-c452031b1e6b" expires: - '-1' pragma: @@ -202,13 +202,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 924d9736-1c00-451a-9d22-422231a55955 + - 11fd14d4-1329-485a-bf2c-70aae0154894 status: code: 200 message: OK - request: body: '{"location": "SouthCentralUS", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan"}, - "addressPrefix": "10.0.0.0/24", "sku": "Standard"}}' + "addressPrefix": "10.0.0.0/24", "sku": "Standard", "hubRoutingPreference": "ExpressRoute"}}' headers: Accept: - application/json @@ -219,39 +219,42 @@ interactions: Connection: - keep-alive Content-Length: - - '317' + - '319' Content-Type: - application/json ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --vwan --address-prefix -l --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"6db29f61-5c45-4107-910e-075aa0abe854\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4841853f-412d-4cd5-ad7e-0a1df23e5890\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"None\",\r\n \"allowBranchToBranchTraffic\": false,\r\n + \ \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d5d1b6b8-011d-43ad-84fd-ba6c8c84d09c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1603d5f0-f700-4d16-a6eb-5542657317c2?api-version=2021-08-01 cache-control: - no-cache content-length: - - '903' + - '1077' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:56 GMT + - Mon, 09 May 2022 16:27:12 GMT expires: - '-1' pragma: @@ -264,9 +267,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 496a1276-59f8-4ee2-b8d8-f2da0fd6f08e + - 58c682fb-fe12-4c44-b35f-09160989aa6f x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -282,11 +285,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --vwan --address-prefix -l --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d5d1b6b8-011d-43ad-84fd-ba6c8c84d09c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1603d5f0-f700-4d16-a6eb-5542657317c2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -298,7 +301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:36:07 GMT + - Mon, 09 May 2022 16:27:22 GMT expires: - '-1' pragma: @@ -315,7 +318,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5fa791ce-8949-4412-9d1c-f1d5ad2454cf + - 5360de40-70aa-4860-8279-cc660a5ec764 status: code: 200 message: OK @@ -331,11 +334,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --vwan --address-prefix -l --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d5d1b6b8-011d-43ad-84fd-ba6c8c84d09c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1603d5f0-f700-4d16-a6eb-5542657317c2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -347,7 +350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:36:17 GMT + - Mon, 09 May 2022 16:27:33 GMT expires: - '-1' pragma: @@ -364,7 +367,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84112037-1159-4e15-b7ba-198a95e62b9d + - 935d6194-2d1b-4777-b40e-56abc77e14e0 status: code: 200 message: OK @@ -380,11 +383,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --vwan --address-prefix -l --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d5d1b6b8-011d-43ad-84fd-ba6c8c84d09c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1603d5f0-f700-4d16-a6eb-5542657317c2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -396,7 +399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:36:38 GMT + - Mon, 09 May 2022 16:27:54 GMT expires: - '-1' pragma: @@ -413,7 +416,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2f2d3b7c-9463-4392-85c2-543af421d0ca + - 16bffcc8-0797-49cf-ad1f-0668e7bd078e status: code: 200 message: OK @@ -429,11 +432,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --vwan --address-prefix -l --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d5d1b6b8-011d-43ad-84fd-ba6c8c84d09c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1603d5f0-f700-4d16-a6eb-5542657317c2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -445,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:36:58 GMT + - Mon, 09 May 2022 16:28:14 GMT expires: - '-1' pragma: @@ -462,7 +465,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 75c5e595-f5ae-40db-8f01-6f8f74f83bf3 + - 90a8a1ff-d18d-48f1-8e76-e6788e2999d7 status: code: 200 message: OK @@ -478,11 +481,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --vwan --address-prefix -l --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d5d1b6b8-011d-43ad-84fd-ba6c8c84d09c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1603d5f0-f700-4d16-a6eb-5542657317c2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -494,7 +497,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:37:38 GMT + - Mon, 09 May 2022 16:28:54 GMT expires: - '-1' pragma: @@ -511,7 +514,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8e835dbb-2498-4ea9-b529-81e0c36af35a + - 64470a57-ef83-4503-bf04-a04b596f0834 status: code: 200 message: OK @@ -527,11 +530,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --vwan --address-prefix -l --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d5d1b6b8-011d-43ad-84fd-ba6c8c84d09c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1603d5f0-f700-4d16-a6eb-5542657317c2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -543,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:38:19 GMT + - Mon, 09 May 2022 16:29:34 GMT expires: - '-1' pragma: @@ -560,7 +563,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4002ba30-f6fd-4779-bc42-6b1a96f64af2 + - 8729f566-7d36-44cf-8513-a81844d9614f status: code: 200 message: OK @@ -576,60 +579,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --vwan --address-prefix -l --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d5d1b6b8-011d-43ad-84fd-ba6c8c84d09c?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 18 Sep 2021 06:39: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: - - 21ba4fad-149e-406b-a00a-5eeadbb16161 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l --sku - User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d5d1b6b8-011d-43ad-84fd-ba6c8c84d09c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1603d5f0-f700-4d16-a6eb-5542657317c2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -641,7 +595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:20 GMT + - Mon, 09 May 2022 16:30:55 GMT expires: - '-1' pragma: @@ -658,7 +612,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60db017a-8489-4d76-8209-6c704909d441 + - c4879df7-3ef7-4aa8-a30c-be68eda182a5 status: code: 200 message: OK @@ -674,31 +628,34 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --vwan --address-prefix -l --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"c8ba0038-c108-4fa4-8055-0ba20e6807c5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e95f8baf-6378-4dea-80bd-4f047de7f753\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": + false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '912' + - '1086' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:20 GMT + - Mon, 09 May 2022 16:30:55 GMT expires: - '-1' pragma: @@ -715,7 +672,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9907d049-90ba-4640-996e-cb1f6c9f1243 + - 7df843b1-c4de-4f09-8e69-477c913fa075 status: code: 200 message: OK @@ -731,31 +688,34 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku + - -g -n --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"c8ba0038-c108-4fa4-8055-0ba20e6807c5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e95f8baf-6378-4dea-80bd-4f047de7f753\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": + false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '912' + - '1086' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:22 GMT + - Mon, 09 May 2022 16:30:57 GMT expires: - '-1' pragma: @@ -772,7 +732,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6c02bc4b-4a97-406c-947d-44406f398b44 + - 722fba5b-cf7c-4cf1-94e5-e4b889dad7f0 status: code: 200 message: OK @@ -780,7 +740,8 @@ interactions: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub", "location": "southcentralus", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan"}, "addressPrefix": "10.0.0.0/24", "routeTable": {"routes": []}, "virtualHubRouteTableV2s": - [], "sku": "Basic", "virtualRouterAsn": 0, "virtualRouterIps": []}}' + [], "sku": "Basic", "virtualRouterAsn": 0, "virtualRouterIps": [], "allowBranchToBranchTraffic": + false, "preferredRoutingGateway": "ExpressRoute", "hubRoutingPreference": "VpnGateway"}}' headers: Accept: - application/json @@ -791,39 +752,42 @@ interactions: Connection: - keep-alive Content-Length: - - '626' + - '668' Content-Type: - application/json ParameterSetName: - - -g -n --sku + - -g -n --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"86a80fe7-6035-4672-a042-c76eae238bdd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"55087102-1209-4f61-bbe3-71e0fd62184b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Basic\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Basic\",\r\n + \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": + false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"VpnGateway\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f43c3f6-ce22-4be0-baa7-2819d51c8c30?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/751fe074-093a-4566-9f8b-ea3bfc43f769?api-version=2021-08-01 cache-control: - no-cache content-length: - - '908' + - '1080' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:24 GMT + - Mon, 09 May 2022 16:30:58 GMT expires: - '-1' pragma: @@ -840,9 +804,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef233429-a52e-4285-8f5d-36da867a7620 + - d60e7d10-65f4-4a59-bd8f-611d0166b7a9 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -858,11 +822,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku + - -g -n --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f43c3f6-ce22-4be0-baa7-2819d51c8c30?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/751fe074-093a-4566-9f8b-ea3bfc43f769?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -874,7 +838,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:35 GMT + - Mon, 09 May 2022 16:31:08 GMT expires: - '-1' pragma: @@ -891,7 +855,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2d62c9d-2334-4fa4-9b7f-41a663e81035 + - d1a67a84-c47a-41ba-92f7-bbaac02f5dca status: code: 200 message: OK @@ -907,11 +871,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku + - -g -n --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f43c3f6-ce22-4be0-baa7-2819d51c8c30?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/751fe074-093a-4566-9f8b-ea3bfc43f769?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -923,7 +887,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:46 GMT + - Mon, 09 May 2022 16:31:18 GMT expires: - '-1' pragma: @@ -940,7 +904,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c35a23f0-583e-441c-8dac-9d319b39d7ed + - a1a319d4-2464-43db-9cc4-2e78c606113d status: code: 200 message: OK @@ -956,11 +920,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku + - -g -n --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f43c3f6-ce22-4be0-baa7-2819d51c8c30?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/751fe074-093a-4566-9f8b-ea3bfc43f769?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -972,7 +936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:43:06 GMT + - Mon, 09 May 2022 16:31:39 GMT expires: - '-1' pragma: @@ -989,7 +953,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 806cb92a-5b1d-4184-82b7-d07a46463ec4 + - 39720adc-4eac-4e2c-a869-84b29547bdd5 status: code: 200 message: OK @@ -1005,11 +969,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku + - -g -n --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f43c3f6-ce22-4be0-baa7-2819d51c8c30?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/751fe074-093a-4566-9f8b-ea3bfc43f769?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1021,7 +985,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:43:26 GMT + - Mon, 09 May 2022 16:31:59 GMT expires: - '-1' pragma: @@ -1038,7 +1002,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ea487aed-c90a-41b0-b79e-4842ceab8e45 + - 6eb476a6-37a0-4fca-acc5-ad4cff7f321f status: code: 200 message: OK @@ -1054,11 +1018,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku + - -g -n --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f43c3f6-ce22-4be0-baa7-2819d51c8c30?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/751fe074-093a-4566-9f8b-ea3bfc43f769?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1070,7 +1034,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:44:06 GMT + - Mon, 09 May 2022 16:32:40 GMT expires: - '-1' pragma: @@ -1087,7 +1051,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 82bc170e-73d3-4c95-a366-e9f79883e9fc + - 8b8ce24a-f73d-42f8-8ddb-5b93e755918d status: code: 200 message: OK @@ -1103,11 +1067,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku + - -g -n --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f43c3f6-ce22-4be0-baa7-2819d51c8c30?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/751fe074-093a-4566-9f8b-ea3bfc43f769?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1119,7 +1083,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:44:46 GMT + - Mon, 09 May 2022 16:33:21 GMT expires: - '-1' pragma: @@ -1136,7 +1100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b098770c-d524-4e8f-a528-b119609418dd + - 2442d5cb-4b8d-4c9f-8de1-506ccce1bacb status: code: 200 message: OK @@ -1152,31 +1116,34 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku + - -g -n --sku --hub-routing-preference User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"5441c4b5-6d87-4de2-b760-62cd7069735d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"0e6d47db-0a55-4d11-9ced-e32ec0d561f7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Basic\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Basic\",\r\n + \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": + false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"VpnGateway\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '909' + - '1081' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:44:47 GMT + - Mon, 09 May 2022 16:33:21 GMT expires: - '-1' pragma: @@ -1193,7 +1160,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d7e7deae-612f-487e-83d3-ba7179316a59 + - 8ff94f9c-98ad-4f10-92da-eaeb38292a1d status: code: 200 message: OK @@ -1211,13 +1178,13 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"8a7b6f49-0764-481d-b459-915db5d744b8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c2a0065f-9aed-4d38-b420-6033d7f53280\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -1228,13 +1195,13 @@ interactions: cache-control: - no-cache content-length: - - '834' + - '758' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:44:49 GMT + - Mon, 09 May 2022 16:33:21 GMT etag: - - W/"8a7b6f49-0764-481d-b459-915db5d744b8" + - W/"c2a0065f-9aed-4d38-b420-6033d7f53280" expires: - '-1' pragma: @@ -1251,7 +1218,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c6c4e407-0c8c-4ebf-981e-56cd7c020fe3 + - 6ca3e979-879f-4d84-bd39-8313bb37048b status: code: 200 message: OK @@ -1269,19 +1236,19 @@ interactions: Connection: - keep-alive Content-Length: - - '329' + - '291' Content-Type: - application/json ParameterSetName: - -g -n --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"5525e8e3-7d51-4e9d-bf33-6bdd851d4977\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9a3878b7-b504-4bfe-a3b8-2d044635ec27\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -1292,15 +1259,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b759840d-83d0-4204-8fd2-6c52f7410e7e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3369827c-6dcf-444e-b492-8287611b5653?api-version=2021-08-01 cache-control: - no-cache content-length: - - '834' + - '758' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:44:51 GMT + - Mon, 09 May 2022 16:33:23 GMT expires: - '-1' pragma: @@ -1317,9 +1284,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c0f5cf2-efa2-4d19-8a90-ebbdf928a3d6 + - 7487335e-8373-44cc-b23f-419cc9e32ef4 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -1337,9 +1304,9 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b759840d-83d0-4204-8fd2-6c52f7410e7e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3369827c-6dcf-444e-b492-8287611b5653?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1351,7 +1318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:45:21 GMT + - Mon, 09 May 2022 16:33:53 GMT expires: - '-1' pragma: @@ -1368,7 +1335,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d1d20c4a-bd80-4833-9723-41d805b9b1ce + - 83e67863-e6d4-4507-9f21-acc218cb32d8 status: code: 200 message: OK @@ -1386,13 +1353,13 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route_table000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"5525e8e3-7d51-4e9d-bf33-6bdd851d4977\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9a3878b7-b504-4bfe-a3b8-2d044635ec27\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -1403,13 +1370,13 @@ interactions: cache-control: - no-cache content-length: - - '834' + - '758' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:45:21 GMT + - Mon, 09 May 2022 16:33:53 GMT etag: - - W/"5525e8e3-7d51-4e9d-bf33-6bdd851d4977" + - W/"9a3878b7-b504-4bfe-a3b8-2d044635ec27" expires: - '-1' pragma: @@ -1426,7 +1393,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 589d28be-a858-48c4-8dd0-21100bd87aef + - f863dc85-2ab1-45b5-8ec2-5698604d738d status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_bgpconnection.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_bgpconnection.yaml index 327a89bbbe8..61526207a0e 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_bgpconnection.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_bgpconnection.yaml @@ -61,7 +61,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n @@ -166,7 +166,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n @@ -227,7 +227,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n @@ -678,7 +678,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n @@ -742,7 +742,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n @@ -951,7 +951,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n @@ -1015,7 +1015,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n @@ -1072,7 +1072,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n @@ -1129,7 +1129,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n @@ -1192,7 +1192,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myconnection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection\",\r\n @@ -1492,7 +1492,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myconnection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection\",\r\n @@ -1549,7 +1549,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections?api-version=2021-08-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"myconnection\",\r\n @@ -1605,7 +1605,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myconnection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection\",\r\n @@ -1664,7 +1664,7 @@ interactions: User-Agent: - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vhub_bgpconnection000001/providers/Microsoft.Network/virtualHubs/myclitestvhub/bgpConnections/myconnection?api-version=2021-08-01 response: body: string: '' diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_connection_routing_configuration.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_connection_routing_configuration.yaml index c51f29a5e50..e28fd23a8b1 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_connection_routing_configuration.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_connection_routing_configuration.yaml @@ -29,7 +29,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"my-connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection\",\r\n @@ -301,7 +301,7 @@ interactions: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"my-connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection\",\r\n @@ -372,7 +372,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"my-connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection\",\r\n @@ -443,7 +443,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections?api-version=2021-08-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"my-connection\",\r\n @@ -516,7 +516,7 @@ interactions: accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2021-08-01 response: body: string: '' @@ -768,7 +768,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub/hubVirtualNetworkConnections/my-connection?api-version=2021-08-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_get_effective_routes.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_get_effective_routes.yaml index 7559c1db1ee..06b8c436efa 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_get_effective_routes.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_get_effective_routes.yaml @@ -23,7 +23,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub1/effectiveRoutes?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualHubs/yu-vhub1/effectiveRoutes?api-version=2021-08-01 response: body: string: 'null' diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_route_scenario.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_route_scenario.yaml index 98750765fc1..744ec66db76 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_route_scenario.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_route_scenario.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_route000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001","name":"cli_test_azure_vwan_route000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:23:56Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001","name":"cli_test_azure_vwan_route000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T08:22:12Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '340' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:01 GMT + - Tue, 10 May 2022 08:22:16 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"83df586c-2efa-49f9-b7b1-df991f26830c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"09de462d-14fc-4a22-a4ec-ffa2324b74e4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b422e9a-c2c8-4746-9e64-13cda1bc0f69?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3fdbc1dc-5c60-4151-858c-025943e4d292?api-version=2021-08-01 cache-control: - no-cache content-length: - - '573' + - '529' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:05 GMT + - Tue, 10 May 2022 08:22:23 GMT expires: - '-1' pragma: @@ -95,7 +95,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5c5e1f69-b9e4-4d93-9b27-f9fd5e5128ca + - 040c3574-4f36-4e47-96cf-4ddbae5bc77c x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b422e9a-c2c8-4746-9e64-13cda1bc0f69?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3fdbc1dc-5c60-4151-858c-025943e4d292?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:16 GMT + - Tue, 10 May 2022 08:22:34 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 731fee0e-b08e-4488-b77d-2a18baee4695 + - 05267494-4703-4343-a3b3-a0498969c265 status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"52da2d4c-62b9-4f95-9a25-2af68e757896\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"99a5d689-b0df-475c-887b-d1058eb71eaf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '574' + - '530' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:16 GMT + - Tue, 10 May 2022 08:22:34 GMT etag: - - W/"52da2d4c-62b9-4f95-9a25-2af68e757896" + - W/"99a5d689-b0df-475c-887b-d1058eb71eaf" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92ce123a-0b2c-45fd-b1f7-4259098c2c72 + - e68e43c3-4f9d-4082-9450-32ce6f4e7d47 status: code: 200 message: OK @@ -219,39 +219,42 @@ interactions: Connection: - keep-alive Content-Length: - - '317' + - '273' Content-Type: - application/json ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"ddda71a7-26a2-42fb-ac02-2a7d7f174a24\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"881d19ca-d386-4761-b576-7f890647e7c6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"None\",\r\n \"allowBranchToBranchTraffic\": false,\r\n + \ \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/20a7ae32-9e4b-4a69-a7d0-7f13f8d9764a?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7d9ce4a4-f52e-4a79-86c2-039683b63d2a?api-version=2021-08-01 cache-control: - no-cache content-length: - - '903' + - '1065' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:23 GMT + - Tue, 10 May 2022 08:22:41 GMT expires: - '-1' pragma: @@ -264,9 +267,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b520b032-0ca0-4cef-bd8c-8673414a7b97 + - ae4bdd3a-cfa2-4e90-85b2-24e4444b21a8 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -284,58 +287,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/20a7ae32-9e4b-4a69-a7d0-7f13f8d9764a?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 18 Sep 2021 06:24: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: - - 36b5c0f7-1413-4245-95e4-fc2da61e0ab8 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l --sku - User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/20a7ae32-9e4b-4a69-a7d0-7f13f8d9764a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7d9ce4a4-f52e-4a79-86c2-039683b63d2a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -347,7 +301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:24:45 GMT + - Tue, 10 May 2022 08:22:52 GMT expires: - '-1' pragma: @@ -364,7 +318,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 887066cc-cabc-49b0-8c37-77217c6e642d + - 411decab-c529-492d-b7f9-e17991be484d status: code: 200 message: OK @@ -382,9 +336,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/20a7ae32-9e4b-4a69-a7d0-7f13f8d9764a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7d9ce4a4-f52e-4a79-86c2-039683b63d2a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -396,7 +350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:05 GMT + - Tue, 10 May 2022 08:23:02 GMT expires: - '-1' pragma: @@ -413,7 +367,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c27c8f2-2e71-41ee-8867-ea8dbcfd30a5 + - d8080baf-378b-4d10-8fa1-1f87e074ca8c status: code: 200 message: OK @@ -431,9 +385,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/20a7ae32-9e4b-4a69-a7d0-7f13f8d9764a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7d9ce4a4-f52e-4a79-86c2-039683b63d2a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -445,7 +399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:25:25 GMT + - Tue, 10 May 2022 08:23:22 GMT expires: - '-1' pragma: @@ -462,7 +416,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 91fb7ceb-47dc-4399-9f76-6fe1808db43c + - 8222e757-c467-4d21-9ec5-856b31d71e2b status: code: 200 message: OK @@ -480,9 +434,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/20a7ae32-9e4b-4a69-a7d0-7f13f8d9764a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7d9ce4a4-f52e-4a79-86c2-039683b63d2a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -494,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:26:05 GMT + - Tue, 10 May 2022 08:23:42 GMT expires: - '-1' pragma: @@ -511,7 +465,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9ec877b6-6bfe-4a8a-8b8e-b8aeb863270c + - a333ecf9-9b6c-41da-ab1d-3ebd4402b704 status: code: 200 message: OK @@ -529,9 +483,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/20a7ae32-9e4b-4a69-a7d0-7f13f8d9764a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7d9ce4a4-f52e-4a79-86c2-039683b63d2a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -543,7 +497,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:26:46 GMT + - Tue, 10 May 2022 08:24:22 GMT expires: - '-1' pragma: @@ -560,7 +514,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 64d96f39-b2b4-40fd-9165-c683283c6c8f + - c4168330-4e26-40a4-999e-c056d7cadbcf status: code: 200 message: OK @@ -578,9 +532,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/20a7ae32-9e4b-4a69-a7d0-7f13f8d9764a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7d9ce4a4-f52e-4a79-86c2-039683b63d2a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -592,7 +546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:28:07 GMT + - Tue, 10 May 2022 08:25:03 GMT expires: - '-1' pragma: @@ -609,7 +563,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22f54e9e-e196-46ca-ab83-8ab19cababbe + - 08d9062a-22d0-4007-a442-38de300b0f9f status: code: 200 message: OK @@ -627,9 +581,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/20a7ae32-9e4b-4a69-a7d0-7f13f8d9764a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7d9ce4a4-f52e-4a79-86c2-039683b63d2a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -641,7 +595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:30:48 GMT + - Tue, 10 May 2022 08:26:23 GMT expires: - '-1' pragma: @@ -658,7 +612,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d06f2f28-8a62-44af-85bc-f6bfc5dc75ee + - b2c4a64f-492e-47f9-8b3a-66df1219dcd0 status: code: 200 message: OK @@ -676,29 +630,32 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"addf4506-7199-4b68-9d03-9791ba83d34a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f5ce16d7-152e-425b-b39a-5b6a1071111f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": + false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '912' + - '1074' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:30:48 GMT + - Tue, 10 May 2022 08:26:24 GMT expires: - '-1' pragma: @@ -715,7 +672,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12763678-4bb9-4a30-b389-848b264e9d53 + - 603e6252-422e-4c9f-9e0f-b1815a145ada status: code: 200 message: OK @@ -733,29 +690,32 @@ interactions: ParameterSetName: - -g --vhub-name --next-hop --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"addf4506-7199-4b68-9d03-9791ba83d34a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f5ce16d7-152e-425b-b39a-5b6a1071111f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": + false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '912' + - '1074' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:30:50 GMT + - Tue, 10 May 2022 08:26:24 GMT expires: - '-1' pragma: @@ -772,7 +732,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 77bbe3a1-64c3-4f15-a8b8-b0912dc7fd50 + - 7b7b6d13-8163-480c-ba63-606e2567fed8 status: code: 200 message: OK @@ -781,7 +741,8 @@ interactions: "location": "southcentralus", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan"}, "addressPrefix": "10.0.0.0/24", "routeTable": {"routes": [{"addressPrefixes": ["10.3.3.0/28"], "nextHopIpAddress": "10.0.0.7"}]}, "virtualHubRouteTableV2s": - [], "sku": "Standard", "virtualRouterAsn": 0, "virtualRouterIps": []}}' + [], "sku": "Standard", "virtualRouterAsn": 0, "virtualRouterIps": [], "allowBranchToBranchTraffic": + false, "preferredRoutingGateway": "ExpressRoute", "hubRoutingPreference": "ExpressRoute"}}' headers: Accept: - application/json @@ -792,41 +753,44 @@ interactions: Connection: - keep-alive Content-Length: - - '697' + - '729' Content-Type: - application/json ParameterSetName: - -g --vhub-name --next-hop --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"9f857952-471a-410f-aa00-c84f121d7821\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"277d91f1-6a7a-4bcd-b6c0-1149cce0161a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": [\r\n {\r\n \"addressPrefixes\": [\r\n \"10.3.3.0/28\"\r\n \ ],\r\n \"nextHopIpAddress\": \"10.0.0.7\"\r\n }\r\n - \ ]\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" + \ ]\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": + false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f69dae0-e5b8-4cce-aa2a-74b6463e1fa2?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/599929aa-5a3c-42d6-a970-57f6f29f44a6?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1056' + - '1218' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:30:51 GMT + - Tue, 10 May 2022 08:26:25 GMT expires: - '-1' pragma: @@ -843,7 +807,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b1a0a878-e036-4118-927f-1eedd2bd8389 + - e67d699d-2109-4318-8657-ed38ad785e12 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -863,58 +827,9 @@ interactions: ParameterSetName: - -g --vhub-name --next-hop --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f69dae0-e5b8-4cce-aa2a-74b6463e1fa2?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 18 Sep 2021 06:31: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: - - 23682843-865e-448c-abd7-e7ad7da87648 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub route add - Connection: - - keep-alive - ParameterSetName: - - -g --vhub-name --next-hop --address-prefixes - User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f69dae0-e5b8-4cce-aa2a-74b6463e1fa2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/599929aa-5a3c-42d6-a970-57f6f29f44a6?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -926,7 +841,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:12 GMT + - Tue, 10 May 2022 08:26:36 GMT expires: - '-1' pragma: @@ -943,7 +858,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eaa08b20-365b-4d23-9342-97efbd6e1656 + - 97651b3b-a17d-4570-a3a1-dc007d0eea94 status: code: 200 message: OK @@ -961,9 +876,9 @@ interactions: ParameterSetName: - -g --vhub-name --next-hop --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f69dae0-e5b8-4cce-aa2a-74b6463e1fa2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/599929aa-5a3c-42d6-a970-57f6f29f44a6?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -975,7 +890,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:32 GMT + - Tue, 10 May 2022 08:26:47 GMT expires: - '-1' pragma: @@ -992,7 +907,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 40294c1e-299b-48ed-b623-0ff0ff3af97e + - 0fa5099f-c97f-4197-a675-789ff9c51fdd status: code: 200 message: OK @@ -1010,9 +925,9 @@ interactions: ParameterSetName: - -g --vhub-name --next-hop --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f69dae0-e5b8-4cce-aa2a-74b6463e1fa2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/599929aa-5a3c-42d6-a970-57f6f29f44a6?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1024,7 +939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:31:52 GMT + - Tue, 10 May 2022 08:27:07 GMT expires: - '-1' pragma: @@ -1041,7 +956,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6bef1b78-18a2-45f0-bf6d-1767c97e9891 + - 03089ce5-a77c-4688-ae0a-03e131cd0fce status: code: 200 message: OK @@ -1059,9 +974,9 @@ interactions: ParameterSetName: - -g --vhub-name --next-hop --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f69dae0-e5b8-4cce-aa2a-74b6463e1fa2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/599929aa-5a3c-42d6-a970-57f6f29f44a6?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1073,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:32:32 GMT + - Tue, 10 May 2022 08:27:27 GMT expires: - '-1' pragma: @@ -1090,7 +1005,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44a0e0dd-284e-473a-b4ed-984691ac9851 + - 233d5b3b-aa8a-418a-8d23-c4c98098a368 status: code: 200 message: OK @@ -1108,9 +1023,9 @@ interactions: ParameterSetName: - -g --vhub-name --next-hop --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f69dae0-e5b8-4cce-aa2a-74b6463e1fa2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/599929aa-5a3c-42d6-a970-57f6f29f44a6?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1122,7 +1037,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:33:13 GMT + - Tue, 10 May 2022 08:28:08 GMT expires: - '-1' pragma: @@ -1139,7 +1054,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bda16d45-3566-4e11-ba5e-055f857cfbeb + - d6b0f84f-ccfa-49b7-bdc1-fe7afd948985 status: code: 200 message: OK @@ -1157,9 +1072,9 @@ interactions: ParameterSetName: - -g --vhub-name --next-hop --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f69dae0-e5b8-4cce-aa2a-74b6463e1fa2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/599929aa-5a3c-42d6-a970-57f6f29f44a6?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1171,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:34:33 GMT + - Tue, 10 May 2022 08:28:48 GMT expires: - '-1' pragma: @@ -1188,7 +1103,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03b89073-9358-4be7-b642-bd8c0d17cd81 + - 0a3ab57c-1151-47e3-902e-b0acd26e35d2 status: code: 200 message: OK @@ -1206,31 +1121,34 @@ interactions: ParameterSetName: - -g --vhub-name --next-hop --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"b5e70cee-bb36-454d-bf98-6696b814cc1c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"08eee32a-39df-4689-8633-007899995088\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"southcentralus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": [\r\n {\r\n \"addressPrefixes\": [\r\n \"10.3.3.0/28\"\r\n \ ],\r\n \"nextHopIpAddress\": \"10.0.0.7\"\r\n }\r\n - \ ]\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" + \ ]\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_route000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n + \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": + false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": + \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1057' + - '1219' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:34:33 GMT + - Tue, 10 May 2022 08:28:49 GMT expires: - '-1' pragma: @@ -1247,7 +1165,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e28f495f-df5d-4a6e-b86b-124aa1f7cb45 + - 26d6f965-6ef8-4b3d-bccb-eed7b26c0765 status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway.yaml index b60d062c807..e01ad20decd 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001","name":"cli_test_azure_vwan_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:34:37Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001","name":"cli_test_azure_vwan_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T08:34:09Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '352' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:34:42 GMT + - Tue, 10 May 2022 08:34:13 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n - \ \"etag\": \"W/\\\"f3e6c211-9b14-4f61-b4c9-bb78b85626bc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"19578257-dc29-46b9-9dd0-4b14de9d4dab\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb517b50-e629-45c1-be8a-a8381a7cf199?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c3a0f981-d097-4716-aa78-dc965b7a1bbf?api-version=2021-08-01 cache-control: - no-cache content-length: - - '567' + - '529' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:34:49 GMT + - Tue, 10 May 2022 08:34:19 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 219b9a04-606e-4540-9da0-7b8df3206251 + - c330dc5f-84c5-40a4-a40b-f04cb845ba06 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb517b50-e629-45c1-be8a-a8381a7cf199?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c3a0f981-d097-4716-aa78-dc965b7a1bbf?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:00 GMT + - Tue, 10 May 2022 08:34:29 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a72eacde-99d4-48d9-b01c-885562b7e151 + - e518ae22-19f0-4450-a1fe-7046d6f9cd9f status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"testvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan\",\r\n - \ \"etag\": \"W/\\\"921c0c4c-591a-4cd2-944b-4b0279db678e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"245b2b6b-4bae-4e81-8c86-d483bf326aa2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '568' + - '530' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:00 GMT + - Tue, 10 May 2022 08:34:30 GMT etag: - - W/"921c0c4c-591a-4cd2-944b-4b0279db678e" + - W/"245b2b6b-4bae-4e81-8c86-d483bf326aa2" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 350f7dbc-8f1e-4d06-812e-8c55a68beb10 + - b8e9027a-c7a7-41d8-a2cd-b19e2fe035cb status: code: 200 message: OK @@ -219,38 +219,41 @@ interactions: Connection: - keep-alive Content-Length: - - '287' + - '249' Content-Type: - application/json ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n - \ \"etag\": \"W/\\\"c4391c81-7446-4a6d-b61d-12bdd53bb3b9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"59c6d105-7e8e-4690-ac3d-0f95fccffd22\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n - \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"None\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\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/407730c3-6357-4051-a4b7-ce87df6d1891?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5153c6f-513d-43b5-ab04-4fa787a84e78?api-version=2021-08-01 cache-control: - no-cache content-length: - - '872' + - '1046' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:09 GMT + - Tue, 10 May 2022 08:34:39 GMT expires: - '-1' pragma: @@ -263,7 +266,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2ee1fc08-3593-42dc-b703-6ab723a531d6 + - 8a9ac90d-2029-479c-86a5-43a6044a2b82 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -283,9 +286,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/407730c3-6357-4051-a4b7-ce87df6d1891?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5153c6f-513d-43b5-ab04-4fa787a84e78?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -297,7 +300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:19 GMT + - Tue, 10 May 2022 08:34:49 GMT expires: - '-1' pragma: @@ -307,14 +310,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9abf1f63-c66d-4d94-9c96-ee2c879edeaf + - b37e976f-57e2-4cc5-8962-ef3408fb5a54 status: code: 200 message: OK @@ -332,9 +331,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/407730c3-6357-4051-a4b7-ce87df6d1891?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5153c6f-513d-43b5-ab04-4fa787a84e78?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -346,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:30 GMT + - Tue, 10 May 2022 08:35:00 GMT expires: - '-1' pragma: @@ -356,14 +355,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dca62727-de6a-4d2b-ade8-362fd4e1fda4 + - 03bfb897-2b41-4856-919b-1a2fa71c953b status: code: 200 message: OK @@ -381,9 +376,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/407730c3-6357-4051-a4b7-ce87df6d1891?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5153c6f-513d-43b5-ab04-4fa787a84e78?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -395,7 +390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:35:50 GMT + - Tue, 10 May 2022 08:35:21 GMT expires: - '-1' pragma: @@ -405,14 +400,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cfaf9338-73e8-4b53-b1a2-53d209045c38 + - 14c79a2a-f11c-41be-82ca-34bf1dd44165 status: code: 200 message: OK @@ -430,9 +421,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/407730c3-6357-4051-a4b7-ce87df6d1891?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5153c6f-513d-43b5-ab04-4fa787a84e78?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -444,7 +435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:36:10 GMT + - Tue, 10 May 2022 08:35:41 GMT expires: - '-1' pragma: @@ -454,14 +445,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b535ae3-9ec6-4987-9358-00de479e9356 + - bb7f844c-2096-47b6-9f87-72fa2fbf2b2f status: code: 200 message: OK @@ -479,9 +466,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/407730c3-6357-4051-a4b7-ce87df6d1891?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5153c6f-513d-43b5-ab04-4fa787a84e78?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -493,7 +480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:36:50 GMT + - Tue, 10 May 2022 08:36:21 GMT expires: - '-1' pragma: @@ -503,14 +490,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0007b529-1497-4f62-9125-150ab6fcaa91 + - 26e0690f-cac2-4f0f-af72-153d313e90e2 status: code: 200 message: OK @@ -528,9 +511,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/407730c3-6357-4051-a4b7-ce87df6d1891?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5153c6f-513d-43b5-ab04-4fa787a84e78?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -542,7 +525,52 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:37:30 GMT + - Tue, 10 May 2022 08:37:02 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: + - 19be98de-7cb2-42de-b735-ebe096a1352f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d5153c6f-513d-43b5-ab04-4fa787a84e78?api-version=2021-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: + - Tue, 10 May 2022 08:38:22 GMT expires: - '-1' pragma: @@ -552,14 +580,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3cb2eb8c-afc9-4c62-a1ed-043b2dff98b5 + - 8edacf86-e62c-4c9c-8ef8-79d8be0689ad status: code: 200 message: OK @@ -577,9 +601,172 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/407730c3-6357-4051-a4b7-ce87df6d1891?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n + \ \"etag\": \"W/\\\"45c1966c-6f15-4c90-b987-b4c80c66642c\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": + [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"Provisioning\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1055' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 08:38:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 81f8e7bb-49ad-43c2-a093-27aeadbc6dc7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vhub -l + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/mycligateway'' + under resource group ''cli_test_azure_vwan_vpn_gateway000001'' was not found. + For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '251' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 08:38:24 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 +- request: + body: '{"location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub"}, + "bgpSettings": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + Content-Length: + - '241' + Content-Type: + - application/json + ParameterSetName: + - -n -g --vhub -l + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n + \ \"etag\": \"W/\\\"e2c1832c-1136-4eb2-bc04-00bc7bfbf085\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 + cache-control: + - no-cache + content-length: + - '905' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 08:38:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 335974a3-e69f-4b02-98dd-5dd04321f4d0 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vhub -l + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -591,7 +778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:38:51 GMT + - Tue, 10 May 2022 08:38:40 GMT expires: - '-1' pragma: @@ -608,7 +795,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5d370ead-640e-4af6-a7eb-0acbcfafa9ef + - de5f31e7-fc55-4c58-b163-26b2f4c23bb6 status: code: 200 message: OK @@ -620,27 +807,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l + - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/407730c3-6357-4051-a4b7-ce87df6d1891?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:41:32 GMT + - Tue, 10 May 2022 08:38:50 GMT expires: - '-1' pragma: @@ -657,7 +844,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 34c730ff-77c3-438b-93c6-b9b41093fd55 + - 9fd2ea24-cc66-456a-a3c6-1b6b5d7110d5 status: code: 200 message: OK @@ -669,34 +856,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l + - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"myclitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\",\r\n - \ \"etag\": \"W/\\\"1f4e4ec5-e306-4152-a99b-eace4058e87a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": - [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": - 0,\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_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualWans/testvwan\"\r\n - \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '881' + - '30' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:41:32 GMT + - Tue, 10 May 2022 08:39:11 GMT expires: - '-1' pragma: @@ -713,7 +893,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3e75c644-b66a-43c6-9a59-66fe949a2637 + - 5ac58fe2-5cb6-468c-8a4d-498b07780941 status: code: 200 message: OK @@ -721,7 +901,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -731,82 +911,70 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/mycligateway'' - under resource group ''cli_test_azure_vwan_vpn_gateway000001'' was not found. - For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '289' + - '30' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:41:34 GMT + - Tue, 10 May 2022 08:39: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-failure-cause: - - gateway + x-ms-arm-service-request-id: + - 7b89ac30-8dc5-47c9-8f07-41e34e921f53 status: - code: 404 - message: Not Found + code: 200 + message: OK - request: - body: '{"location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub"}, - "bgpSettings": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - network vpn-gateway create Connection: - keep-alive - Content-Length: - - '279' - Content-Type: - - application/json ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"e24d95b5-8dcd-4462-bca1-875386c55316\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n - \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n - \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": - 0\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": - \"None\",\r\n \"ipConfigurations\": [],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": - false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 cache-control: - no-cache content-length: - - '981' + - '30' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:41:41 GMT + - Tue, 10 May 2022 08:40:11 GMT expires: - '-1' pragma: @@ -816,15 +984,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 68828164-2c8f-4403-82e1-219a1ca7feee - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - 44253169-c7f3-4506-aa8e-bfbdbe91e97d status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -839,9 +1009,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -853,7 +1023,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:41:51 GMT + - Tue, 10 May 2022 08:40:52 GMT expires: - '-1' pragma: @@ -870,7 +1040,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 89c9a361-347d-4d4b-b432-c10a1eb27173 + - 46bcdfcf-3c98-45a9-89f5-ad31539674ce status: code: 200 message: OK @@ -888,9 +1058,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -902,7 +1072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:01 GMT + - Tue, 10 May 2022 08:42:12 GMT expires: - '-1' pragma: @@ -919,7 +1089,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f5701b9-2912-4654-a3c7-6bd589ac0ffb + - 76ef401f-dcb3-4850-9af3-a50e51d929d2 status: code: 200 message: OK @@ -937,9 +1107,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -951,7 +1121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:22 GMT + - Tue, 10 May 2022 08:44:53 GMT expires: - '-1' pragma: @@ -968,7 +1138,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4dddce06-78f9-47d6-9244-948b783b0a6d + - 61408218-478d-45b0-9e56-300a6d77e78b status: code: 200 message: OK @@ -986,9 +1156,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1000,7 +1170,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:42:42 GMT + - Tue, 10 May 2022 08:46:33 GMT expires: - '-1' pragma: @@ -1017,7 +1187,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a9fd4305-646c-4944-a085-0b2229b81d1b + - ffd9efea-3060-4172-a197-98b7c75c9d50 status: code: 200 message: OK @@ -1035,9 +1205,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1049,7 +1219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:43:22 GMT + - Tue, 10 May 2022 08:48:13 GMT expires: - '-1' pragma: @@ -1066,7 +1236,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 54ced507-4f38-4900-912c-88128ff8f301 + - ae45bae7-cf12-4eb1-8e70-f789ee8b2ce2 status: code: 200 message: OK @@ -1084,9 +1254,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1098,7 +1268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:44:02 GMT + - Tue, 10 May 2022 08:49:53 GMT expires: - '-1' pragma: @@ -1115,7 +1285,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 42e27690-108c-47eb-b9e6-27d4ecee6f94 + - 19b9e8de-9576-40bd-8090-02ebdc73640e status: code: 200 message: OK @@ -1133,9 +1303,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1147,7 +1317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:45:23 GMT + - Tue, 10 May 2022 08:51:34 GMT expires: - '-1' pragma: @@ -1164,7 +1334,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d1219ca5-db85-486c-bab3-a828ae6619a2 + - 207c6e24-2dc5-40b7-ac76-bbb25670aba7 status: code: 200 message: OK @@ -1182,9 +1352,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1196,7 +1366,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:04 GMT + - Tue, 10 May 2022 08:53:15 GMT expires: - '-1' pragma: @@ -1213,7 +1383,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 52b04198-5cac-441c-852d-575e1db1dba7 + - 699999ca-0b69-43aa-9437-f862a0ef6b1f status: code: 200 message: OK @@ -1231,9 +1401,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1245,7 +1415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:49:43 GMT + - Tue, 10 May 2022 08:54:55 GMT expires: - '-1' pragma: @@ -1262,7 +1432,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c423569-d503-41e1-9808-7ba94890ae51 + - 54c53bb9-bb86-440f-b4bb-6a3a344f9a54 status: code: 200 message: OK @@ -1280,9 +1450,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1294,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:51:24 GMT + - Tue, 10 May 2022 08:56:35 GMT expires: - '-1' pragma: @@ -1311,7 +1481,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c85c526-6ec1-43d7-b14a-9275dce8b8bf + - 0d7faade-4cd2-4838-9fa5-487a4c54dee3 status: code: 200 message: OK @@ -1329,9 +1499,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1343,7 +1513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:53:04 GMT + - Tue, 10 May 2022 08:58:16 GMT expires: - '-1' pragma: @@ -1360,7 +1530,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f215f81f-51e0-4a46-ab9c-68af71b08c01 + - 02aaf5fd-3eb6-4ed9-bb37-c851fcbfe9e4 status: code: 200 message: OK @@ -1378,9 +1548,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1392,7 +1562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:54:45 GMT + - Tue, 10 May 2022 08:59:56 GMT expires: - '-1' pragma: @@ -1409,7 +1579,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7fec679f-d3d7-48d1-8feb-47af5b9a133a + - 291ea7bc-09ab-4a80-ac00-f9dc2941b878 status: code: 200 message: OK @@ -1427,9 +1597,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1441,7 +1611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:56:25 GMT + - Tue, 10 May 2022 09:01:36 GMT expires: - '-1' pragma: @@ -1458,7 +1628,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d7c3fdc9-de5f-4e39-8bc5-c8be7f4c96d7 + - cad9f574-71d3-42c1-b637-c4cb126bcec6 status: code: 200 message: OK @@ -1476,9 +1646,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1490,7 +1660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:58:05 GMT + - Tue, 10 May 2022 09:03:16 GMT expires: - '-1' pragma: @@ -1507,7 +1677,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - faf38a4a-c702-4f4c-86ec-e0f4699f6f63 + - 6b6db1ff-0a80-4fb7-bd71-19650f14f1cd status: code: 200 message: OK @@ -1525,9 +1695,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1539,7 +1709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:59:45 GMT + - Tue, 10 May 2022 09:04:57 GMT expires: - '-1' pragma: @@ -1556,7 +1726,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 557ed6a1-d1a5-4b37-a8b7-577068f44d62 + - eb3f0b9f-9061-4076-8217-1c997af382c0 status: code: 200 message: OK @@ -1574,9 +1744,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1588,7 +1758,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:01:26 GMT + - Tue, 10 May 2022 09:06:37 GMT expires: - '-1' pragma: @@ -1605,7 +1775,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b4265314-49e4-4ca8-938f-2ea017a9c70b + - f0b54b37-000a-4ee8-bdfe-2bd437e8e09d status: code: 200 message: OK @@ -1623,9 +1793,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1637,7 +1807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:03:06 GMT + - Tue, 10 May 2022 09:08:17 GMT expires: - '-1' pragma: @@ -1654,7 +1824,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 79a93581-3a82-484b-873f-aacab22c0a02 + - e55e552a-83c5-42ae-99b4-ec590797e62a status: code: 200 message: OK @@ -1672,9 +1842,9 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac0a394e-7fdc-4a9f-bb61-7dd447751926?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4891a78-e5c2-49d6-a344-5377ecde91d2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1686,7 +1856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:04:47 GMT + - Tue, 10 May 2022 09:09:58 GMT expires: - '-1' pragma: @@ -1703,7 +1873,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 55b31728-1723-40f3-9483-f9efcf104110 + - c1df5144-d074-421b-9125-04722b704735 status: code: 200 message: OK @@ -1721,13 +1891,13 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"a7bdb29e-4bbc-44de-87d4-44f65de8671e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e4cb6463-c3e6-49d1-b5b9-651ecb66f29e\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n @@ -1735,27 +1905,27 @@ interactions: 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"168.62.21.201\",\r\n \"10.0.0.4\"\r\n ]\r\n + [\r\n \"20.228.78.112\",\r\n \"10.0.0.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"168.62.20.86\",\r\n \"10.0.0.5\"\r\n ]\r\n + [\r\n \"20.228.78.8\",\r\n \"10.0.0.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"168.62.21.201\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.228.78.112\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"168.62.20.86\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.228.78.8\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1860' + - '1782' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:04:47 GMT + - Tue, 10 May 2022 09:09:58 GMT expires: - '-1' pragma: @@ -1772,7 +1942,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 421ab156-3c09-4094-b3f4-1aaa7a88d5f0 + - 18e91abf-92b0-4f31-860f-bf6c3fdb547e status: code: 200 message: OK @@ -1790,13 +1960,13 @@ interactions: ParameterSetName: - -n -g --vhub -l User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"a7bdb29e-4bbc-44de-87d4-44f65de8671e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e4cb6463-c3e6-49d1-b5b9-651ecb66f29e\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n @@ -1804,27 +1974,27 @@ interactions: 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"168.62.21.201\",\r\n \"10.0.0.4\"\r\n ]\r\n + [\r\n \"20.228.78.112\",\r\n \"10.0.0.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"168.62.20.86\",\r\n \"10.0.0.5\"\r\n ]\r\n + [\r\n \"20.228.78.8\",\r\n \"10.0.0.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"168.62.21.201\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.228.78.112\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"168.62.20.86\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.228.78.8\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1860' + - '1782' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:04:50 GMT + - Tue, 10 May 2022 09:09:59 GMT expires: - '-1' pragma: @@ -1841,7 +2011,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2896eda0-f921-43e5-bd9e-160c7ec5d9d8 + - 1b526631-9dc7-413c-986f-91c6400f5c3a status: code: 200 message: OK @@ -1859,13 +2029,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"mycligateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"a7bdb29e-4bbc-44de-87d4-44f65de8671e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e4cb6463-c3e6-49d1-b5b9-651ecb66f29e\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/virtualHubs/myclitestvhub\"\r\n @@ -1873,27 +2043,27 @@ interactions: 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"168.62.21.201\",\r\n \"10.0.0.4\"\r\n ]\r\n + [\r\n \"20.228.78.112\",\r\n \"10.0.0.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"168.62.20.86\",\r\n \"10.0.0.5\"\r\n ]\r\n + [\r\n \"20.228.78.8\",\r\n \"10.0.0.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"168.62.21.201\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.228.78.112\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"168.62.20.86\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.228.78.8\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1860' + - '1782' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:04:52 GMT + - Tue, 10 May 2022 09:10:00 GMT expires: - '-1' pragma: @@ -1910,7 +2080,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a5479baa-af05-4e98-85f0-f4811cd62290 + - e3c16b1d-e896-4b91-9b1e-e1e2fbc4c7df status: code: 200 message: OK @@ -1928,14 +2098,14 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways?api-version=2021-08-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"mycligateway\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"a7bdb29e-4bbc-44de-87d4-44f65de8671e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e4cb6463-c3e6-49d1-b5b9-651ecb66f29e\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": @@ -1944,17 +2114,17 @@ interactions: \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \ \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n \"customBgpIpAddresses\": - [],\r\n \"tunnelIpAddresses\": [\r\n \"168.62.21.201\",\r\n + [],\r\n \"tunnelIpAddresses\": [\r\n \"20.228.78.112\",\r\n \ \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \ \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \"customBgpIpAddresses\": - [],\r\n \"tunnelIpAddresses\": [\r\n \"168.62.20.86\",\r\n + [],\r\n \"tunnelIpAddresses\": [\r\n \"20.228.78.8\",\r\n \ \"10.0.0.5\"\r\n ]\r\n }\r\n ]\r\n \ },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": - \"Instance0\",\r\n \"publicIpAddress\": \"168.62.21.201\",\r\n + \"Instance0\",\r\n \"publicIpAddress\": \"20.228.78.112\",\r\n \ \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n - \ \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"168.62.20.86\",\r\n + \ \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"20.228.78.8\",\r\n \ \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ],\r\n \ \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n }\r\n @@ -1963,11 +2133,11 @@ interactions: cache-control: - no-cache content-length: - - '2121' + - '2043' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:04:54 GMT + - Tue, 10 May 2022 09:10:01 GMT expires: - '-1' pragma: @@ -1984,7 +2154,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c811001c-2cf7-49c7-9dbc-ee6ce03b63cd + - ae1b10c3-2add-49b4-a8ae-8fea529d305f status: code: 200 message: OK @@ -2000,14 +2170,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/vpnGateways?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/vpnGateways?api-version=2021-08-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"mycligateway\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway\",\r\n - \ \"etag\": \"W/\\\"a7bdb29e-4bbc-44de-87d4-44f65de8671e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e4cb6463-c3e6-49d1-b5b9-651ecb66f29e\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": @@ -2016,41 +2186,30 @@ interactions: \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \ \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n \"customBgpIpAddresses\": - [],\r\n \"tunnelIpAddresses\": [\r\n \"168.62.21.201\",\r\n + [],\r\n \"tunnelIpAddresses\": [\r\n \"20.228.78.112\",\r\n \ \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \ \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \"customBgpIpAddresses\": - [],\r\n \"tunnelIpAddresses\": [\r\n \"168.62.20.86\",\r\n + [],\r\n \"tunnelIpAddresses\": [\r\n \"20.228.78.8\",\r\n \ \"10.0.0.5\"\r\n ]\r\n }\r\n ]\r\n \ },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": - \"Instance0\",\r\n \"publicIpAddress\": \"168.62.21.201\",\r\n + \"Instance0\",\r\n \"publicIpAddress\": \"20.228.78.112\",\r\n \ \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n - \ \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"168.62.20.86\",\r\n + \ \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"20.228.78.8\",\r\n \ \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ],\r\n \ \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": - false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n },\r\n - \ {\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connectionthq4wtvxweznffxtvqcaou52tug2z7efw/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"1a91b516-7fa8-427a-a53c-c723854260a9\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connectionthq4wtvxweznffxtvqcaou52tug2z7efw/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n - \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n - \ \"peerWeight\": 0\r\n },\r\n \"vpnGatewayScaleUnit\": - 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": - [],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n }\r\n \ ]\r\n}" headers: cache-control: - no-cache content-length: - - '3213' + - '2043' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:04:56 GMT + - Tue, 10 May 2022 09:10:02 GMT expires: - '-1' pragma: @@ -2067,7 +2226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 224ffd70-eafb-4e62-abce-64a253f6c6a2 + - beab571b-3f9b-4570-a44c-e3c92bc0e7b3 status: code: 200 message: OK @@ -2087,9 +2246,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway000001/providers/Microsoft.Network/vpnGateways/mycligateway?api-version=2021-08-01 response: body: string: '' @@ -2097,17 +2256,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 18 Sep 2021 07:04:58 GMT + - Tue, 10 May 2022 09:10:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 pragma: - no-cache server: @@ -2118,7 +2277,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1bd61fdc-ab0b-440d-b63f-ecaa72c96c37 + - f837371f-0405-4734-a95c-ff775c8b9ff0 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -2138,58 +2297,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 18 Sep 2021 07:05: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: - - 58d64067-5c68-4b24-b95a-3b0b3b1aa3d7 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vpn-gateway delete - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2201,7 +2311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:05:19 GMT + - Tue, 10 May 2022 09:10:14 GMT expires: - '-1' pragma: @@ -2218,7 +2328,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a8466545-cd15-498a-afa2-47566f01d3dd + - 03c3e544-e1ee-41d0-b4e2-533e3e842599 status: code: 200 message: OK @@ -2236,9 +2346,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2250,7 +2360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:05:39 GMT + - Tue, 10 May 2022 09:10:25 GMT expires: - '-1' pragma: @@ -2267,7 +2377,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 496e003a-f035-48d0-a09e-c0b7f5a886df + - b44c0f10-ae0a-44f4-97d5-4689ce1a6b84 status: code: 200 message: OK @@ -2285,9 +2395,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2299,7 +2409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:06:00 GMT + - Tue, 10 May 2022 09:10:46 GMT expires: - '-1' pragma: @@ -2316,7 +2426,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2a74b44b-3778-4400-83f1-95e51435ddfe + - 40b1df4d-6253-419c-bba5-a3e32a5429ef status: code: 200 message: OK @@ -2334,9 +2444,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2348,7 +2458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:06:41 GMT + - Tue, 10 May 2022 09:11:06 GMT expires: - '-1' pragma: @@ -2365,7 +2475,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b431652b-879d-4b58-8760-f4c3828a6e91 + - 7fe192ea-d410-43a4-af7b-1859f1b4514b status: code: 200 message: OK @@ -2383,9 +2493,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2397,7 +2507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:07:21 GMT + - Tue, 10 May 2022 09:11:46 GMT expires: - '-1' pragma: @@ -2414,7 +2524,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a90911d2-4943-4eb8-8636-28c17f65ba50 + - b47832f7-4257-4fe8-b7ff-72998cdcf771 status: code: 200 message: OK @@ -2432,9 +2542,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2446,7 +2556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:08:41 GMT + - Tue, 10 May 2022 09:12:27 GMT expires: - '-1' pragma: @@ -2463,7 +2573,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 52e17fe7-fa60-4b7a-a650-3a332413d30c + - 74c23fbc-defe-40e6-ad43-122903c464c2 status: code: 200 message: OK @@ -2481,9 +2591,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2495,7 +2605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:11:22 GMT + - Tue, 10 May 2022 09:13:46 GMT expires: - '-1' pragma: @@ -2512,7 +2622,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3f54609-2cc0-4a84-9b0b-d7a0c1a8ed8d + - 83402706-21dc-4b37-b3b1-06a9d03ff983 status: code: 200 message: OK @@ -2530,9 +2640,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2544,7 +2654,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:13:02 GMT + - Tue, 10 May 2022 09:16:27 GMT expires: - '-1' pragma: @@ -2561,7 +2671,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6c60dba2-ac58-438f-bed3-ee3c01e01ab4 + - 7bbea100-fdb6-4305-b0f8-552c4cfef333 status: code: 200 message: OK @@ -2579,9 +2689,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2593,7 +2703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:14:42 GMT + - Tue, 10 May 2022 09:18:08 GMT expires: - '-1' pragma: @@ -2610,7 +2720,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5a8b1e47-2380-47ae-b0a3-6db4b522e897 + - 03881863-b68c-453d-83f6-453a677dc47c status: code: 200 message: OK @@ -2628,9 +2738,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2642,7 +2752,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:16:23 GMT + - Tue, 10 May 2022 09:19:48 GMT expires: - '-1' pragma: @@ -2659,7 +2769,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 18e5d2ba-b6ed-48d3-a6c5-11122d48bfea + - 602f407b-098e-4c1b-934a-d8cbd2a3c91b status: code: 200 message: OK @@ -2677,9 +2787,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2691,7 +2801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:18:03 GMT + - Tue, 10 May 2022 09:21:29 GMT expires: - '-1' pragma: @@ -2708,7 +2818,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ad4f263-a7b9-45f6-bdd5-e663d1231112 + - cf0ac1dc-c26d-4886-8108-426373afb2ce status: code: 200 message: OK @@ -2726,9 +2836,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a6bee13-cec3-401a-ad30-e4a3f6e8e72c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d67d21cd-7e51-4ab0-bfdf-0d21ce7678cc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2740,7 +2850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:19:43 GMT + - Tue, 10 May 2022 09:23:09 GMT expires: - '-1' pragma: @@ -2757,7 +2867,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 04c6174b-cfc1-4804-9ca5-682d6625712a + - b5bbaeb8-edd2-44dd-bade-ebdbff8875cf status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection.yaml index 69a8cd5e5ff..54bd38c3f1e 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001","name":"cli_test_azure_vwan_vpn_gateway_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:47:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001","name":"cli_test_azure_vwan_vpn_gateway_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T13:21:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '374' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:47:53 GMT + - Tue, 10 May 2022 13:21:42 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n - \ \"etag\": \"W/\\\"1272b5fd-2d5e-49a7-a024-fff7b7706d22\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ffbcbc36-4c43-49cc-8c72-a4317ce11a71\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e806638-1cbd-45b6-b188-bca8122fc6a4?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6ce1baaf-6e9a-4e47-ba52-edbacd1bc146?api-version=2021-08-01 cache-control: - no-cache content-length: - - '569' + - '542' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:01 GMT + - Tue, 10 May 2022 13:21:48 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d675b124-beb6-4b87-87ea-ab76acafd226 + - 19caf8e3-7563-4622-8101-f7186101e264 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e806638-1cbd-45b6-b188-bca8122fc6a4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6ce1baaf-6e9a-4e47-ba52-edbacd1bc146?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:11 GMT + - Tue, 10 May 2022 13:21:59 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 26a52c28-22a2-4595-9649-e808f5f32838 + - a05e375d-ff01-44eb-881e-a1b536e79ef8 status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n - \ \"etag\": \"W/\\\"54dc87b4-76f6-4eed-8ae1-f0bc17cb4e02\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ac5c6a69-5e8d-4d4e-9a7c-ad20f2cae2bc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '570' + - '543' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:12 GMT + - Tue, 10 May 2022 13:21:59 GMT etag: - - W/"54dc87b4-76f6-4eed-8ae1-f0bc17cb4e02" + - W/"ac5c6a69-5e8d-4d4e-9a7c-ad20f2cae2bc" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e3488249-1965-4e54-905c-e55b9d7a80c4 + - 5ee44ccd-ad10-439a-b5a1-1b707220d76a status: code: 200 message: OK @@ -220,21 +220,21 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001","name":"cli_test_azure_vwan_vpn_gateway_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:47:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001","name":"cli_test_azure_vwan_vpn_gateway_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T13:21:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '374' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:13 GMT + - Tue, 10 May 2022 13:22:00 GMT expires: - '-1' pragma: @@ -261,38 +261,41 @@ interactions: Connection: - keep-alive Content-Length: - - '288' + - '261' Content-Type: - application/json ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n - \ \"etag\": \"W/\\\"8acbe402-f126-45db-af0f-b7b5e4c7f070\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e85057e1-1ec3-45d0-96a2-328081f89141\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n - \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"None\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\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/a1f1285f-b6a7-449c-8462-b7bfb0c91313?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2352b686-5581-462e-952a-78d58d7c6155?api-version=2021-08-01 cache-control: - no-cache content-length: - - '865' + - '1061' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:20 GMT + - Tue, 10 May 2022 13:22:07 GMT expires: - '-1' pragma: @@ -305,9 +308,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9fe690b1-4ad1-4c7d-bf8d-003d71b285c4 + - e0e80949-1278-4982-9815-29de9a4615d0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -325,9 +328,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1f1285f-b6a7-449c-8462-b7bfb0c91313?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2352b686-5581-462e-952a-78d58d7c6155?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -339,7 +342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:31 GMT + - Tue, 10 May 2022 13:22:18 GMT expires: - '-1' pragma: @@ -356,7 +359,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 91fd250c-295f-49e6-8c27-8baa96254998 + - 2434250f-d37d-4fe3-9d28-4ce7c0bc4d25 status: code: 200 message: OK @@ -374,9 +377,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1f1285f-b6a7-449c-8462-b7bfb0c91313?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2352b686-5581-462e-952a-78d58d7c6155?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -388,7 +391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:48:42 GMT + - Tue, 10 May 2022 13:22:28 GMT expires: - '-1' pragma: @@ -405,7 +408,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9dfeb455-b56c-4c93-892f-bc74eadac64f + - b9e71276-c431-429c-ac1c-d47d25cb381c status: code: 200 message: OK @@ -423,9 +426,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1f1285f-b6a7-449c-8462-b7bfb0c91313?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2352b686-5581-462e-952a-78d58d7c6155?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -437,7 +440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:49:02 GMT + - Tue, 10 May 2022 13:22:49 GMT expires: - '-1' pragma: @@ -454,7 +457,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25c3af8c-c700-43f7-bd5b-3275a89028c5 + - 6febdeec-fe71-46d2-a249-903231e45a1f status: code: 200 message: OK @@ -472,9 +475,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1f1285f-b6a7-449c-8462-b7bfb0c91313?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2352b686-5581-462e-952a-78d58d7c6155?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -486,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:49:22 GMT + - Tue, 10 May 2022 13:23:09 GMT expires: - '-1' pragma: @@ -503,7 +506,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d0a5eff1-ec94-4f2f-8a11-43068db41249 + - e088c1da-3ad4-42f9-bde7-44cada725faf status: code: 200 message: OK @@ -521,9 +524,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1f1285f-b6a7-449c-8462-b7bfb0c91313?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2352b686-5581-462e-952a-78d58d7c6155?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -535,7 +538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:50:02 GMT + - Tue, 10 May 2022 13:23:50 GMT expires: - '-1' pragma: @@ -552,7 +555,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ae573875-3629-4080-946d-d26a9043720c + - dd18ce0e-ca25-4c6c-9d21-70a304608a05 status: code: 200 message: OK @@ -570,9 +573,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1f1285f-b6a7-449c-8462-b7bfb0c91313?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2352b686-5581-462e-952a-78d58d7c6155?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -584,7 +587,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:50:43 GMT + - Tue, 10 May 2022 13:24:30 GMT expires: - '-1' pragma: @@ -601,7 +604,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - be680679-b7ab-4a70-968f-3b96b60571f9 + - 4a29e88b-6a73-414b-8cd2-3a057e9d0f05 status: code: 200 message: OK @@ -619,9 +622,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1f1285f-b6a7-449c-8462-b7bfb0c91313?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2352b686-5581-462e-952a-78d58d7c6155?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -633,7 +636,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:52:03 GMT + - Tue, 10 May 2022 13:25:50 GMT expires: - '-1' pragma: @@ -650,7 +653,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eae722b6-b1ab-4e16-a021-af9d9a6bb017 + - 52411e63-6f44-418f-9d13-eb39ae521e0a status: code: 200 message: OK @@ -668,9 +671,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1f1285f-b6a7-449c-8462-b7bfb0c91313?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2352b686-5581-462e-952a-78d58d7c6155?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -682,7 +685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:54:44 GMT + - Tue, 10 May 2022 13:28:31 GMT expires: - '-1' pragma: @@ -699,7 +702,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25872c02-366c-443c-b3ab-4336f0dc2232 + - 65e102b8-9c92-466c-b0b1-be9a01df3312 status: code: 200 message: OK @@ -717,28 +720,31 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n - \ \"etag\": \"W/\\\"21a5164c-9471-456c-925a-fafd360d62ce\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"404cd202-c6e5-488c-851a-0152edd75234\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n - \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"Provisioning\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '874' + - '1070' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:54:44 GMT + - Tue, 10 May 2022 13:28:31 GMT expires: - '-1' pragma: @@ -755,7 +761,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dbbdeb36-b7d9-4854-a4d9-dfec2bc9a5f1 + - 0d3c9f5f-9751-4e4a-a07d-ff44b343e855 status: code: 200 message: OK @@ -777,27 +783,27 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n - \ \"etag\": \"W/\\\"4541a116-ea25-4c55-be95-0733ee776ac3\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"74e3c82c-e8e1-4846-adcd-d922738a68dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/531d4112-a38f-48e7-b6e1-05b54e345f6b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f0aff8c-6450-4f5f-ab85-34d59e8056ba?api-version=2021-08-01 cache-control: - no-cache content-length: - - '562' + - '535' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:54:47 GMT + - Tue, 10 May 2022 13:28:33 GMT expires: - '-1' pragma: @@ -810,9 +816,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 45672ca7-4160-46dd-b498-1a1a580a181d + - a7344546-afb3-47bd-a694-c9ccc7a9666a x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -830,9 +836,9 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/531d4112-a38f-48e7-b6e1-05b54e345f6b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f0aff8c-6450-4f5f-ab85-34d59e8056ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -844,7 +850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:54:57 GMT + - Tue, 10 May 2022 13:28:43 GMT expires: - '-1' pragma: @@ -861,7 +867,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6389417a-b2f9-4310-a3ca-5444ce1505f0 + - 62383889-8b32-49a9-8447-690e64d9a1d0 status: code: 200 message: OK @@ -879,13 +885,13 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n - \ \"etag\": \"W/\\\"03ebcb9d-8363-48ac-82c4-d653f16dae7c\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"9324487a-7197-42bd-9922-57a1888a2794\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" @@ -893,13 +899,13 @@ interactions: cache-control: - no-cache content-length: - - '563' + - '536' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:54:58 GMT + - Tue, 10 May 2022 13:28:43 GMT etag: - - W/"03ebcb9d-8363-48ac-82c4-d653f16dae7c" + - W/"9324487a-7197-42bd-9922-57a1888a2794" expires: - '-1' pragma: @@ -916,7 +922,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b35feb99-460c-40c7-9b55-b13b6c6ce370 + - c79f96a2-1f76-4bfb-97f3-6a63ca13a7ee status: code: 200 message: OK @@ -938,27 +944,27 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n - \ \"etag\": \"W/\\\"3b893c1d-d9e5-40c3-b95b-a348aeca4833\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"44db845e-4da4-43bd-9546-8c8eaafe30c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ecf3553e-e306-4038-8071-d217ae948fc2?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/45c3d167-8108-4189-a1e2-6af0917847a3?api-version=2021-08-01 cache-control: - no-cache content-length: - - '562' + - '535' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:00 GMT + - Tue, 10 May 2022 13:28:45 GMT expires: - '-1' pragma: @@ -971,9 +977,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6fe67d3f-b1da-47de-baee-2cbdb8c8fa88 + - 52fde88d-a6b3-4d0a-b00c-b1b3f2294e9a x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -991,9 +997,9 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ecf3553e-e306-4038-8071-d217ae948fc2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/45c3d167-8108-4189-a1e2-6af0917847a3?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1005,7 +1011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:10 GMT + - Tue, 10 May 2022 13:28:56 GMT expires: - '-1' pragma: @@ -1022,7 +1028,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c214d999-2b4e-4566-9aaf-325c34501d1e + - 80294a4b-8471-448d-97b1-4a1268bac753 status: code: 200 message: OK @@ -1040,13 +1046,13 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n - \ \"etag\": \"W/\\\"a7787cab-be66-49f4-9441-8c47eee778f6\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"75a27b13-4c60-4e73-a326-eb55280f61bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" @@ -1054,13 +1060,13 @@ interactions: cache-control: - no-cache content-length: - - '563' + - '536' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:10 GMT + - Tue, 10 May 2022 13:28:56 GMT etag: - - W/"a7787cab-be66-49f4-9441-8c47eee778f6" + - W/"75a27b13-4c60-4e73-a326-eb55280f61bb" expires: - '-1' pragma: @@ -1077,7 +1083,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ada9c092-3481-49a4-b711-333cd940dab5 + - 30a8d727-f8a6-44d4-8331-c843dfab7f44 status: code: 200 message: OK @@ -1095,21 +1101,21 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001","name":"cli_test_azure_vwan_vpn_gateway_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:47:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001","name":"cli_test_azure_vwan_vpn_gateway_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T13:21:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '374' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:13 GMT + - Tue, 10 May 2022 13:28:56 GMT expires: - '-1' pragma: @@ -1137,9 +1143,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/test_s2s_vpn_gateway'' @@ -1149,11 +1155,11 @@ interactions: cache-control: - no-cache content-length: - - '297' + - '270' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:15 GMT + - Tue, 10 May 2022 13:28:58 GMT expires: - '-1' pragma: @@ -1180,19 +1186,19 @@ interactions: Connection: - keep-alive Content-Length: - - '275' + - '248' Content-Type: - application/json ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"1a91b516-7fa8-427a-a53c-c723854260a9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c5c2cfe1-8099-4863-8df4-9e054b290d9d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n @@ -1204,15 +1210,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 cache-control: - no-cache content-length: - - '993' + - '939' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:21 GMT + - Tue, 10 May 2022 13:29:03 GMT expires: - '-1' pragma: @@ -1225,9 +1231,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 811d83d0-2324-445b-b7a0-e9d1282fab25 + - f6d4f1ea-bd5c-493d-9871-0c6bba136a31 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1245,9 +1251,107 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-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: + - Tue, 10 May 2022 13:29:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - bff86016-df62-430e-84b7-89ee9b4d5847 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-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: + - Tue, 10 May 2022 13:29: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: + - c07f3ca2-f370-41e1-b4af-3593d74a8eb6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1259,7 +1363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:31 GMT + - Tue, 10 May 2022 13:29:45 GMT expires: - '-1' pragma: @@ -1276,7 +1380,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e9e1ce2e-d794-4a08-b389-5cf514823fec + - ca4ff0d1-7214-423a-80df-5ca7b7ed93b8 status: code: 200 message: OK @@ -1294,9 +1398,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1308,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:55:41 GMT + - Tue, 10 May 2022 13:30:05 GMT expires: - '-1' pragma: @@ -1325,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 985e747e-3e44-4ff9-82d4-926b368089b1 + - 74fd4a9f-f92f-411e-8ecc-152c6e0de8e8 status: code: 200 message: OK @@ -1343,9 +1447,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1357,7 +1461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:56:01 GMT + - Tue, 10 May 2022 13:30:45 GMT expires: - '-1' pragma: @@ -1374,7 +1478,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d23b8be2-b9d0-4290-955c-8da31d234ed2 + - 4f58b293-38eb-49bf-97fb-dd3e22fac1c9 status: code: 200 message: OK @@ -1392,9 +1496,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1406,7 +1510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:56:22 GMT + - Tue, 10 May 2022 13:31:26 GMT expires: - '-1' pragma: @@ -1423,7 +1527,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 266aa0e8-efd1-48a8-a0a0-8b60726660b4 + - cb781f48-5143-4451-b97d-b38b98422a18 status: code: 200 message: OK @@ -1441,9 +1545,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1455,7 +1559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:57:03 GMT + - Tue, 10 May 2022 13:32:46 GMT expires: - '-1' pragma: @@ -1472,7 +1576,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 372aa0a9-39d9-4286-8830-392f3a82e450 + - 599773ef-1a5f-493e-bcad-8483eaf8d561 status: code: 200 message: OK @@ -1490,9 +1594,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1504,7 +1608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:57:44 GMT + - Tue, 10 May 2022 13:35:27 GMT expires: - '-1' pragma: @@ -1521,7 +1625,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8e7dbb1c-5d3d-4004-b97b-0ffbdbba62ab + - 15228a4d-e793-472a-8c9d-7abf8c01abd0 status: code: 200 message: OK @@ -1539,9 +1643,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1553,7 +1657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 06:59:04 GMT + - Tue, 10 May 2022 13:37:07 GMT expires: - '-1' pragma: @@ -1570,7 +1674,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b47179d1-e963-4baa-b73e-c0df47def12e + - d22f7dce-d97e-4a3b-8ce9-2dc925e6b974 status: code: 200 message: OK @@ -1588,9 +1692,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1602,7 +1706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:01:45 GMT + - Tue, 10 May 2022 13:38:47 GMT expires: - '-1' pragma: @@ -1619,7 +1723,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3174dc46-f017-4698-8dd2-1eb8a3b976a1 + - ecb7e31e-3171-4c53-881d-df14554145ee status: code: 200 message: OK @@ -1637,9 +1741,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1651,7 +1755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:03:25 GMT + - Tue, 10 May 2022 13:40:28 GMT expires: - '-1' pragma: @@ -1668,7 +1772,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c972446-cd08-42c5-bc5d-f252a1c0bfd5 + - 58dcb03f-1f4e-463c-905b-29ceba120c4c status: code: 200 message: OK @@ -1686,9 +1790,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1700,7 +1804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:05:05 GMT + - Tue, 10 May 2022 13:42:09 GMT expires: - '-1' pragma: @@ -1717,7 +1821,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 69e0b321-8d52-4678-bbce-2966322ac057 + - 695f7493-45e3-4555-8a3d-29d025dde594 status: code: 200 message: OK @@ -1735,9 +1839,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1749,7 +1853,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:06:45 GMT + - Tue, 10 May 2022 13:43:49 GMT expires: - '-1' pragma: @@ -1766,7 +1870,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 016e6b3b-c726-4548-9d76-d5ac8024e648 + - 75445f9d-c144-4e82-a3d5-e3cc6fe9945d status: code: 200 message: OK @@ -1784,9 +1888,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1798,7 +1902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:08:26 GMT + - Tue, 10 May 2022 13:45:29 GMT expires: - '-1' pragma: @@ -1815,7 +1919,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8516f901-8e8c-47cd-93b9-ee1be038af73 + - d6be6b69-fc6e-4aec-a7a3-7d93a7dba2a6 status: code: 200 message: OK @@ -1833,9 +1937,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1847,7 +1951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:10:06 GMT + - Tue, 10 May 2022 13:47:09 GMT expires: - '-1' pragma: @@ -1864,7 +1968,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e35dc18e-6855-4a6c-be55-a60e01858002 + - 13f9b19d-433b-4a6b-b3a0-614d7406260a status: code: 200 message: OK @@ -1882,9 +1986,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1896,7 +2000,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:11:47 GMT + - Tue, 10 May 2022 13:48:50 GMT expires: - '-1' pragma: @@ -1913,7 +2017,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a76aa137-8fb0-40e6-8caf-e860653bd1c1 + - 7978ff2f-4900-4344-8bc4-ef114a92fd36 status: code: 200 message: OK @@ -1931,9 +2035,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1945,7 +2049,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:13:27 GMT + - Tue, 10 May 2022 13:50:30 GMT expires: - '-1' pragma: @@ -1962,7 +2066,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2aa881b7-8785-4728-ade7-57c3a1eae293 + - a28c09f4-0ad4-4912-b787-5c966986725f status: code: 200 message: OK @@ -1980,9 +2084,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1994,7 +2098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:15:08 GMT + - Tue, 10 May 2022 13:52:11 GMT expires: - '-1' pragma: @@ -2011,7 +2115,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb290c30-ffdb-47f8-8317-d8590f913108 + - 1872c8a0-236f-4a69-9760-c745f6131925 status: code: 200 message: OK @@ -2029,9 +2133,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2043,7 +2147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:16:47 GMT + - Tue, 10 May 2022 13:53:51 GMT expires: - '-1' pragma: @@ -2060,7 +2164,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ff65ca5-789f-4b5f-8055-2a269c799bc4 + - 51dbf683-dd84-4e49-bce1-dffd3767136a status: code: 200 message: OK @@ -2078,9 +2182,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2092,7 +2196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:18:28 GMT + - Tue, 10 May 2022 13:55:32 GMT expires: - '-1' pragma: @@ -2109,7 +2213,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12117de6-9648-42d3-bdbb-8baca30fcc53 + - cb94e8ae-3abe-4f15-aadb-6943f0416e1f status: code: 200 message: OK @@ -2127,9 +2231,58 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59f4598d-157f-4ff4-a7d3-03c23ac613cf?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-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: + - Tue, 10 May 2022 13:57: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: + - 2c9e532c-fad1-48e4-8511-010747badc00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08ffc74a-6ee9-4af4-a2f2-e4058d1f62ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2141,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:09 GMT + - Tue, 10 May 2022 13:58:53 GMT expires: - '-1' pragma: @@ -2158,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a843f832-eadf-4e77-82ed-fd561f2c58c7 + - d7028116-0ba6-4fed-9503-a2d3c73641a6 status: code: 200 message: OK @@ -2176,41 +2329,41 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"4bf79f24-1b26-41d9-99c7-fbcb8513d3d1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"920a6741-3b82-4deb-ad78-6726b215ffa7\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.118.175.137\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.253.189.133\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"168.62.9.65\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.253.189.132\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.118.175.137\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.253.189.133\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"168.62.9.65\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.253.189.132\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1872' + - '1824' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:09 GMT + - Tue, 10 May 2022 13:58:54 GMT expires: - '-1' pragma: @@ -2227,7 +2380,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92af1988-1eb8-4af6-a7f4-0887149047be + - 044ddd38-f00d-431a-8025-711e9811060d status: code: 200 message: OK @@ -2243,23 +2396,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001","name":"cli_test_azure_vwan_vpn_gateway_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T06:47:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001","name":"cli_test_azure_vwan_vpn_gateway_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T13:21:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '374' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:10 GMT + - Tue, 10 May 2022 13:58:55 GMT expires: - '-1' pragma: @@ -2275,7 +2428,7 @@ interactions: message: OK - request: body: '{"location": "westus", "properties": {"deviceProperties": {}, "ipAddress": - "10.0.1.110", "addressSpace": {}}}' + "10.0.2.110", "addressSpace": {"addressPrefixes": ["10.0.2.0/24"]}}}' headers: Accept: - application/json @@ -2286,39 +2439,39 @@ interactions: Connection: - keep-alive Content-Length: - - '109' + - '143' Content-Type: - application/json ParameterSetName: - - -g -n --ip-address + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"d309f2bb-5ee3-4efd-bc58-6ebac2c18253\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b396979f-35c6-41a3-b398-84d5e1be6eff\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"ipAddress\": \"10.0.1.110\"\r\n }\r\n}" + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"ipAddress\": \"10.0.2.110\"\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/4d41c25c-1231-419d-abd6-244ef72b3d74?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/55e8cd77-c569-45f6-bc33-de99702daaf4?api-version=2021-08-01 cache-control: - no-cache content-length: - - '763' + - '767' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:20 GMT + - Tue, 10 May 2022 13:59:01 GMT expires: - '-1' pragma: @@ -2331,7 +2484,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4fb6f393-9c6c-4fc1-9cb4-c9d2f9d70275 + - 02009bce-1367-4a24-bee4-78c1154a2d5f x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2349,11 +2502,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d41c25c-1231-419d-abd6-244ef72b3d74?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/55e8cd77-c569-45f6-bc33-de99702daaf4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2365,7 +2518,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:30 GMT + - Tue, 10 May 2022 13:59:11 GMT expires: - '-1' pragma: @@ -2382,7 +2535,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9f4f5f00-ec14-4f15-9e2a-005146770c23 + - 33a6d0f1-ea8f-4bce-81af-827125c93638 status: code: 200 message: OK @@ -2398,11 +2551,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d41c25c-1231-419d-abd6-244ef72b3d74?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/55e8cd77-c569-45f6-bc33-de99702daaf4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2414,7 +2567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:40 GMT + - Tue, 10 May 2022 13:59:22 GMT expires: - '-1' pragma: @@ -2431,7 +2584,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dc85da2c-e3e3-4848-b8a3-5696bf4581ca + - 1921acca-44bf-4d62-b5ef-1c8538690e1b status: code: 200 message: OK @@ -2447,33 +2600,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"fa0a9e14-bff6-4064-836b-389ffc5e7569\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"571b5df5-6e84-4db8-ab63-d9b2d4d30aa1\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"ipAddress\": \"10.0.1.110\"\r\n }\r\n}" + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"ipAddress\": \"10.0.2.110\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '764' + - '768' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:41 GMT + - Tue, 10 May 2022 13:59:22 GMT etag: - - W/"fa0a9e14-bff6-4064-836b-389ffc5e7569" + - W/"571b5df5-6e84-4db8-ab63-d9b2d4d30aa1" expires: - '-1' pragma: @@ -2490,7 +2643,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c5a589c-7b4c-4465-9ad8-818e7236fce0 + - fbe5ff16-f86a-49b0-8055-f8615466e1f2 status: code: 200 message: OK @@ -2510,21 +2663,21 @@ interactions: Connection: - keep-alive Content-Length: - - '1120' + - '1012' Content-Type: - application/json ParameterSetName: - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"e9ce1645-d189-4868-a63e-63035ff44d88\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"431f1b0c-abd1-4ccf-958a-a9752c31d2dd\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -2542,15 +2695,15 @@ interactions: false,\r\n \"routingWeight\": 0\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00548ee4-aed9-4ef4-a403-8edec6335ce0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e0a3ab2-18c1-4881-ac52-875074c79fe4?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2196' + - '2061' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:43 GMT + - Tue, 10 May 2022 13:59:23 GMT expires: - '-1' pragma: @@ -2563,7 +2716,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 526abda5-bca0-47b4-8004-8cf9ffdba202 + - 76b676f4-812e-473a-8fdd-052ae84294be x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -2584,9 +2737,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00548ee4-aed9-4ef4-a403-8edec6335ce0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e0a3ab2-18c1-4881-ac52-875074c79fe4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2598,7 +2751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:54 GMT + - Tue, 10 May 2022 13:59:34 GMT expires: - '-1' pragma: @@ -2615,7 +2768,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 17aec5d5-6f96-4ece-a10f-e6a91ee01c1e + - 1d2b6f9e-33c9-42f7-bdd4-c8286f63a331 status: code: 200 message: OK @@ -2634,9 +2787,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00548ee4-aed9-4ef4-a403-8edec6335ce0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e0a3ab2-18c1-4881-ac52-875074c79fe4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2648,7 +2801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:21:04 GMT + - Tue, 10 May 2022 13:59:44 GMT expires: - '-1' pragma: @@ -2665,7 +2818,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 65eec60b-c49d-454a-9f1f-66743e183e1f + - 5b08f814-b974-4698-b455-58b0b2d3ccc4 status: code: 200 message: OK @@ -2684,9 +2837,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00548ee4-aed9-4ef4-a403-8edec6335ce0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e0a3ab2-18c1-4881-ac52-875074c79fe4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2698,7 +2851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:21:24 GMT + - Tue, 10 May 2022 14:00:05 GMT expires: - '-1' pragma: @@ -2715,7 +2868,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - af2c2720-3bd3-406e-8e2f-49247bf6764e + - 4aff2d20-d76f-46cb-aeb0-214c0ed6e55d status: code: 200 message: OK @@ -2734,9 +2887,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00548ee4-aed9-4ef4-a403-8edec6335ce0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e0a3ab2-18c1-4881-ac52-875074c79fe4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2748,7 +2901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:04 GMT + - Tue, 10 May 2022 14:00:45 GMT expires: - '-1' pragma: @@ -2765,7 +2918,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f2b3b6e3-d9b1-4b54-91ee-5435fb5e1aed + - a94840e5-d27e-42a2-97a4-e71f57d4d596 status: code: 200 message: OK @@ -2784,14 +2937,14 @@ interactions: - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"f6362e94-e163-4823-b661-53b34476ec66\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4f52aaee-5252-4bb9-a389-c1b4dd8ce6e0\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -2812,11 +2965,11 @@ interactions: cache-control: - no-cache content-length: - - '2233' + - '2098' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:05 GMT + - Tue, 10 May 2022 14:00:46 GMT expires: - '-1' pragma: @@ -2833,7 +2986,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a515fed-fe11-494b-b442-fa0719df6e24 + - 8839fbec-455c-462c-bb92-2310e0ed17cc status: code: 200 message: OK @@ -2851,14 +3004,14 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"f6362e94-e163-4823-b661-53b34476ec66\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4f52aaee-5252-4bb9-a389-c1b4dd8ce6e0\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -2879,11 +3032,11 @@ interactions: cache-control: - no-cache content-length: - - '2233' + - '2098' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:08 GMT + - Tue, 10 May 2022 14:00:47 GMT expires: - '-1' pragma: @@ -2900,7 +3053,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d657d9c7-2676-4ff9-8e18-f079c945c369 + - 772bac39-41e2-4b87-b407-b8d93590b729 status: code: 200 message: OK @@ -2918,14 +3071,14 @@ interactions: ParameterSetName: - -g --gateway-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections?api-version=2021-08-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"f6362e94-e163-4823-b661-53b34476ec66\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4f52aaee-5252-4bb9-a389-c1b4dd8ce6e0\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -2946,11 +3099,11 @@ interactions: cache-control: - no-cache content-length: - - '2402' + - '2267' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:10 GMT + - Tue, 10 May 2022 14:00:48 GMT expires: - '-1' pragma: @@ -2967,7 +3120,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cfd2d59b-ab7e-4146-8b84-6d10a57f96c8 + - f78a61b2-9a47-4a95-aa82-b5663271818a status: code: 200 message: OK @@ -2985,14 +3138,14 @@ interactions: ParameterSetName: - -g --gateway-name -n --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"f6362e94-e163-4823-b661-53b34476ec66\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4f52aaee-5252-4bb9-a389-c1b4dd8ce6e0\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3013,11 +3166,11 @@ interactions: cache-control: - no-cache content-length: - - '2233' + - '2098' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:12 GMT + - Tue, 10 May 2022 14:00:50 GMT expires: - '-1' pragma: @@ -3034,7 +3187,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8288116d-cb08-4c23-a0c9-094df65994fe + - 3fefc4f6-ebf5-44d0-8ac3-405616252741 status: code: 200 message: OK @@ -3059,20 +3212,20 @@ interactions: Connection: - keep-alive Content-Length: - - '1670' + - '1535' Content-Type: - application/json ParameterSetName: - -g --gateway-name -n --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"15f2828b-e28d-400d-b5e6-c3c4fbdc9e7f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c9e09f34-8c0e-4488-86e8-35f4abf13e34\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3090,15 +3243,15 @@ interactions: false,\r\n \"routingWeight\": 0\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b60dc6b-9b3b-4f7d-8ef8-273123fbe9ad?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ffad8614-7f60-4c31-86d2-12dacd2bd9f7?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2188' + - '2053' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:14 GMT + - Tue, 10 May 2022 14:00:50 GMT expires: - '-1' pragma: @@ -3115,9 +3268,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cae3df8e-dccf-4e92-8ace-f23ab882851b + - d4cee23c-499b-4504-afce-98209a295885 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -3135,9 +3288,58 @@ interactions: ParameterSetName: - -g --gateway-name -n --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b60dc6b-9b3b-4f7d-8ef8-273123fbe9ad?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ffad8614-7f60-4c31-86d2-12dacd2bd9f7?api-version=2021-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: + - Tue, 10 May 2022 14:01: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: + - 6253ccd8-d2c3-4c69-b3f3-7aac9a84f82d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection update + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --labels + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ffad8614-7f60-4c31-86d2-12dacd2bd9f7?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3149,7 +3351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:25 GMT + - Tue, 10 May 2022 14:01:23 GMT expires: - '-1' pragma: @@ -3166,7 +3368,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ddada941-18ff-44e9-80ea-11e0c46937f1 + - ca5c05bb-520f-484d-a57e-81ad25518343 status: code: 200 message: OK @@ -3184,14 +3386,14 @@ interactions: ParameterSetName: - -g --gateway-name -n --labels User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"31849aa5-056a-4f5b-927b-020ffdeb2bb6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8663e8d2-813f-4064-a0d6-83440077910b\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3212,11 +3414,11 @@ interactions: cache-control: - no-cache content-length: - - '2225' + - '2090' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:25 GMT + - Tue, 10 May 2022 14:01:23 GMT expires: - '-1' pragma: @@ -3233,7 +3435,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 197f0abf-2e53-41c3-b890-42ded49c2ba9 + - 86761320-d133-4210-95d9-7478ba1f7a01 status: code: 200 message: OK @@ -3253,25 +3455,25 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3a050fbb-8c39-4de5-9bca-af0d39a7ad37?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3fe28dc5-9e98-4d87-a50a-f6eb4d0333a2?api-version=2021-08-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 18 Sep 2021 07:22:28 GMT + - Tue, 10 May 2022 14:01:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/3a050fbb-8c39-4de5-9bca-af0d39a7ad37?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/3fe28dc5-9e98-4d87-a50a-f6eb4d0333a2?api-version=2021-08-01 pragma: - no-cache server: @@ -3282,7 +3484,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 187115e4-79d3-4623-93cb-9fb1f1773378 + - a39e4802-0cd1-4086-9acb-622e7ad9b05f x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -3302,9 +3504,58 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3fe28dc5-9e98-4d87-a50a-f6eb4d0333a2?api-version=2021-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: + - Tue, 10 May 2022 14:01: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: + - eb001495-cbc9-442f-835d-912a722591dd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3a050fbb-8c39-4de5-9bca-af0d39a7ad37?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3fe28dc5-9e98-4d87-a50a-f6eb4d0333a2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3316,7 +3567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:39 GMT + - Tue, 10 May 2022 14:01:45 GMT expires: - '-1' pragma: @@ -3333,7 +3584,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 47f4cf85-1d17-4f1b-82f1-88d54f505987 + - 4601e9ea-8295-475e-ade1-1723873a2d3d status: code: 200 message: OK @@ -3351,9 +3602,9 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3a050fbb-8c39-4de5-9bca-af0d39a7ad37?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3fe28dc5-9e98-4d87-a50a-f6eb4d0333a2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3365,7 +3616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:23:00 GMT + - Tue, 10 May 2022 14:02:06 GMT expires: - '-1' pragma: @@ -3382,7 +3633,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84bcfe91-7ec2-4dba-9712-41c1df2a4530 + - aaf11f8c-df52-4e5f-ae00-1f7653a3234f status: code: 200 message: OK @@ -3400,9 +3651,9 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3a050fbb-8c39-4de5-9bca-af0d39a7ad37?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3fe28dc5-9e98-4d87-a50a-f6eb4d0333a2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3414,7 +3665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:23:40 GMT + - Tue, 10 May 2022 14:02:46 GMT expires: - '-1' pragma: @@ -3431,7 +3682,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dec8859f-9514-469e-b244-32b74cb6c356 + - 980d1ca1-f1fd-49da-93c4-98406687b34a status: code: 200 message: OK @@ -3449,9 +3700,9 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": @@ -3461,11 +3712,11 @@ interactions: cache-control: - no-cache content-length: - - '357' + - '330' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:23:43 GMT + - Tue, 10 May 2022 14:02:48 GMT expires: - '-1' pragma: @@ -3478,7 +3729,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d6e307c-b018-458a-8ab9-9c12662aa3f2 + - 5b18f19a-cb9a-4f85-92e7-4a0cbe275806 status: code: 404 message: Not Found diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link.yaml index 3744754c1dc..52c54a83a3a 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T17:14:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '402' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:02:00 GMT + - Tue, 10 May 2022 17:14:33 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n - \ \"etag\": \"W/\\\"b300ca8e-8b9a-4e37-9613-33b0046bef17\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"25764a3d-6433-4ccf-8d72-699398090326\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e9c7ea3-9ff4-43b1-941c-b33fb6e5485d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ba3140b7-b5c8-414b-a596-d62d5a02fdf4?api-version=2021-08-01 cache-control: - no-cache content-length: - - '569' + - '556' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:02:08 GMT + - Tue, 10 May 2022 17:14:39 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 58b59d50-4d6f-4d11-947a-fa68d20050da + - 75dd3f41-e28a-4f66-8e76-2ed5b9fd5367 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e9c7ea3-9ff4-43b1-941c-b33fb6e5485d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ba3140b7-b5c8-414b-a596-d62d5a02fdf4?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:02:19 GMT + - Tue, 10 May 2022 17:14:49 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 55023a45-4944-420a-a951-f81d19723cb4 + - aa6d545d-067d-455a-a873-1ecf5e9ed19f status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n - \ \"etag\": \"W/\\\"edd3dc1c-6a46-469d-a1ad-e8d898d93b09\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dd38e979-3cf1-4386-af7d-9ae3231f2c0c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '570' + - '557' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:02:19 GMT + - Tue, 10 May 2022 17:14:50 GMT etag: - - W/"edd3dc1c-6a46-469d-a1ad-e8d898d93b09" + - W/"dd38e979-3cf1-4386-af7d-9ae3231f2c0c" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4842ab2a-bb18-41c1-b18b-49843c16b6a1 + - 2331cbf9-7849-4987-a1a6-4fcf6be3aa76 status: code: 200 message: OK @@ -220,21 +220,21 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T17:14:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '402' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:02:21 GMT + - Tue, 10 May 2022 17:14:51 GMT expires: - '-1' pragma: @@ -261,38 +261,41 @@ interactions: Connection: - keep-alive Content-Length: - - '288' + - '275' Content-Type: - application/json ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n - \ \"etag\": \"W/\\\"7a9ca78b-9713-4c3f-9332-73b322642b2d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e1b10a7c-b5f3-465d-b761-3995fcd7e610\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n - \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"None\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\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/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/800d9242-d2b0-4b09-839c-43ce2dae7e8e?api-version=2021-08-01 cache-control: - no-cache content-length: - - '865' + - '1089' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:02:35 GMT + - Tue, 10 May 2022 17:14:58 GMT expires: - '-1' pragma: @@ -305,9 +308,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d072014c-e88d-4c21-b14c-299ef17fdb6a + - 1ede210a-9d07-4b4b-9ae4-1f98556a0674 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -325,58 +328,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 15 Nov 2021 06:02: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: - - c38e638d-56fc-4f40-b882-b974552444d1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/800d9242-d2b0-4b09-839c-43ce2dae7e8e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -388,7 +342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:02:56 GMT + - Tue, 10 May 2022 17:15:08 GMT expires: - '-1' pragma: @@ -405,7 +359,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dc27f3be-591f-4bdd-a074-2bbaf6741ede + - aa36eeb4-a910-4e11-b93c-4beb18e55df2 status: code: 200 message: OK @@ -423,9 +377,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/800d9242-d2b0-4b09-839c-43ce2dae7e8e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -437,7 +391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:03:17 GMT + - Tue, 10 May 2022 17:15:18 GMT expires: - '-1' pragma: @@ -454,7 +408,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8bdad0ca-8bc1-4d6e-a505-2a8643c0ee8f + - 4dc4f850-23d2-45ac-b5ef-cb90c533389d status: code: 200 message: OK @@ -472,9 +426,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/800d9242-d2b0-4b09-839c-43ce2dae7e8e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -486,7 +440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:03:38 GMT + - Tue, 10 May 2022 17:15:38 GMT expires: - '-1' pragma: @@ -503,7 +457,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0940c2a4-c1dd-4a4e-8654-4cd28d3cf6a6 + - b4d7b010-4798-4f9d-ae61-7bb4384fac2c status: code: 200 message: OK @@ -521,9 +475,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/800d9242-d2b0-4b09-839c-43ce2dae7e8e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -535,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:04:18 GMT + - Tue, 10 May 2022 17:15:59 GMT expires: - '-1' pragma: @@ -552,7 +506,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2bdbdf96-2bfb-4a62-8055-b1f43ba27626 + - 430463c7-f819-4fd7-8f21-737d2d9d32f5 status: code: 200 message: OK @@ -570,9 +524,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/800d9242-d2b0-4b09-839c-43ce2dae7e8e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -584,7 +538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:04:58 GMT + - Tue, 10 May 2022 17:16:39 GMT expires: - '-1' pragma: @@ -601,7 +555,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 878b3d5f-0925-4ac0-9474-762684108102 + - 718b0146-9ff6-49f2-bc05-5364c61ac662 status: code: 200 message: OK @@ -619,9 +573,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/800d9242-d2b0-4b09-839c-43ce2dae7e8e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -633,7 +587,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:06:19 GMT + - Tue, 10 May 2022 17:17:20 GMT expires: - '-1' pragma: @@ -650,7 +604,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22ab8c23-9ad5-4291-9522-3e574206c692 + - aec73164-fed4-4460-b325-81e3c5a99317 status: code: 200 message: OK @@ -668,9 +622,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/800d9242-d2b0-4b09-839c-43ce2dae7e8e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -682,7 +636,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:00 GMT + - Tue, 10 May 2022 17:18:40 GMT expires: - '-1' pragma: @@ -699,7 +653,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3fd963f5-695c-41b2-b02c-cfc056d3bc0c + - 37ac7190-9554-4fed-be7d-3d01a953fa24 status: code: 200 message: OK @@ -717,28 +671,31 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n - \ \"etag\": \"W/\\\"4fbe3e2a-ac28-401d-849b-3d2d178ce5ce\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"48260a87-e66c-4272-b3dd-f3ac6247d2c3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n - \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"Provisioning\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '874' + - '1098' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:00 GMT + - Tue, 10 May 2022 17:18:40 GMT expires: - '-1' pragma: @@ -755,7 +712,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcbdbca3-c2c7-4bff-b144-112786adb3df + - 74b9636c-0bbd-496f-95c2-425cea780a82 status: code: 200 message: OK @@ -777,27 +734,27 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n - \ \"etag\": \"W/\\\"5570d404-4dff-467e-a8bb-47c797d258de\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"a9354f7b-005d-4ea7-a4a5-c59d84bc243b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f075b1a0-22f9-4d43-99df-7869e8b62374?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/439a050f-307c-4a95-9aef-2fbd37e56376?api-version=2021-08-01 cache-control: - no-cache content-length: - - '562' + - '549' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:04 GMT + - Tue, 10 May 2022 17:18:42 GMT expires: - '-1' pragma: @@ -810,7 +767,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bf8840e1-d5f9-483a-8bff-24a33b4fcacf + - d32fca6a-00f5-4d79-92bf-3a4c12f7eb8f x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -830,9 +787,9 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f075b1a0-22f9-4d43-99df-7869e8b62374?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/439a050f-307c-4a95-9aef-2fbd37e56376?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -844,7 +801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:14 GMT + - Tue, 10 May 2022 17:18:52 GMT expires: - '-1' pragma: @@ -861,7 +818,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fd52b9f6-7219-4c02-a34d-a6ccb5180485 + - c99c09eb-d495-4ee8-8093-f0f923dfd564 status: code: 200 message: OK @@ -879,13 +836,13 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n - \ \"etag\": \"W/\\\"3a60e36e-a81c-4583-a38b-b37055a81309\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"6dab11f7-9ee5-4ec3-9376-9e21def7b696\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" @@ -893,13 +850,13 @@ interactions: cache-control: - no-cache content-length: - - '563' + - '550' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:14 GMT + - Tue, 10 May 2022 17:18:52 GMT etag: - - W/"3a60e36e-a81c-4583-a38b-b37055a81309" + - W/"6dab11f7-9ee5-4ec3-9376-9e21def7b696" expires: - '-1' pragma: @@ -916,7 +873,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ab030fac-4525-4d75-9b76-8380285eab87 + - 68d93f06-fe1d-4576-9fad-c7939c5c8e9c status: code: 200 message: OK @@ -938,27 +895,27 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n - \ \"etag\": \"W/\\\"e4b15566-ec14-4947-886e-235d9e461000\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"01a58e86-e25c-4204-8bbf-3e897a264bf4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2409d48-04f0-4881-88fc-8b73d6dc25c5?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/985d9bc0-ac55-4c2f-b848-3ec108b2964b?api-version=2021-08-01 cache-control: - no-cache content-length: - - '562' + - '549' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:16 GMT + - Tue, 10 May 2022 17:18:54 GMT expires: - '-1' pragma: @@ -971,7 +928,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f65dfbf-b082-4ba8-85b9-57106e1ec794 + - c305d065-5d15-4800-aab7-52426d7c074c x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -991,9 +948,9 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2409d48-04f0-4881-88fc-8b73d6dc25c5?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/985d9bc0-ac55-4c2f-b848-3ec108b2964b?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1005,7 +962,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:27 GMT + - Tue, 10 May 2022 17:19:04 GMT expires: - '-1' pragma: @@ -1022,7 +979,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a32a48d-fc51-470f-a656-9ad20395646a + - 25a29452-75b5-46ae-9fe9-4181d0a65e5a status: code: 200 message: OK @@ -1040,13 +997,13 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n - \ \"etag\": \"W/\\\"23f75d10-fec7-48d1-a621-0ea98eeb14d7\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"9f4aa17f-e337-47ee-b275-a421f18c0640\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" @@ -1054,13 +1011,13 @@ interactions: cache-control: - no-cache content-length: - - '563' + - '550' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:27 GMT + - Tue, 10 May 2022 17:19:04 GMT etag: - - W/"23f75d10-fec7-48d1-a621-0ea98eeb14d7" + - W/"9f4aa17f-e337-47ee-b275-a421f18c0640" expires: - '-1' pragma: @@ -1077,7 +1034,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 55a776c8-9b51-4426-bd86-3622a6d807d3 + - 44cbf543-0fc0-4912-803d-69bea841e14c status: code: 200 message: OK @@ -1095,21 +1052,21 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T17:14:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '402' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:29 GMT + - Tue, 10 May 2022 17:19:06 GMT expires: - '-1' pragma: @@ -1137,9 +1094,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/test_s2s_vpn_gateway'' @@ -1149,11 +1106,11 @@ interactions: cache-control: - no-cache content-length: - - '297' + - '284' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:31 GMT + - Tue, 10 May 2022 17:19:07 GMT expires: - '-1' pragma: @@ -1180,19 +1137,19 @@ interactions: Connection: - keep-alive Content-Length: - - '275' + - '262' Content-Type: - application/json ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"5f876b48-e5b2-4ad3-9cc2-0c494824d351\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9f4db8d5-ca2c-4119-b9a2-d9cf26cc54a8\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n @@ -1204,15 +1161,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 cache-control: - no-cache content-length: - - '993' + - '967' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:37 GMT + - Tue, 10 May 2022 17:19:13 GMT expires: - '-1' pragma: @@ -1225,9 +1182,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 00f33cd9-803c-4047-9d2a-fea93e510f65 + - c178f16e-a2ce-4df8-a5ff-1505a03087a7 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1245,9 +1202,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1259,7 +1216,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:47 GMT + - Tue, 10 May 2022 17:19:23 GMT expires: - '-1' pragma: @@ -1276,7 +1233,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0058ceab-7677-4d51-9150-c4804b7f713c + - 5e62c789-9083-4468-9d77-26016862f34f status: code: 200 message: OK @@ -1294,9 +1251,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1308,7 +1265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:09:57 GMT + - Tue, 10 May 2022 17:19:34 GMT expires: - '-1' pragma: @@ -1325,7 +1282,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6f1a9b05-1d19-4478-9e44-c8fabf4a91e4 + - 27282f1d-2fa7-41f4-a005-763eba314217 status: code: 200 message: OK @@ -1343,9 +1300,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1357,7 +1314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:10:17 GMT + - Tue, 10 May 2022 17:19:54 GMT expires: - '-1' pragma: @@ -1374,7 +1331,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b0d6b53a-d41e-47bb-9957-902d9aae6c13 + - 74dee07b-9c62-4943-9dca-befe196a0fcd status: code: 200 message: OK @@ -1392,9 +1349,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1406,7 +1363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:10:37 GMT + - Tue, 10 May 2022 17:20:14 GMT expires: - '-1' pragma: @@ -1423,7 +1380,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 78188c31-3449-43e6-973d-06e8b3813acd + - 0ae6cea5-0085-4bb1-b8e5-91345d77f48b status: code: 200 message: OK @@ -1441,9 +1398,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1455,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:11:18 GMT + - Tue, 10 May 2022 17:20:54 GMT expires: - '-1' pragma: @@ -1472,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 216f1d87-0429-4e99-9c4e-ffee6eacbef4 + - 5fa93762-d8eb-441b-90e5-4590ed27ab8a status: code: 200 message: OK @@ -1490,9 +1447,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1504,7 +1461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:11:58 GMT + - Tue, 10 May 2022 17:21:34 GMT expires: - '-1' pragma: @@ -1521,7 +1478,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ead8ba9-97a1-45bf-bc90-a68c1d20e184 + - cee8839d-c34a-4bb1-a80d-9e0bd418798d status: code: 200 message: OK @@ -1539,9 +1496,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1553,7 +1510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:13:18 GMT + - Tue, 10 May 2022 17:22:55 GMT expires: - '-1' pragma: @@ -1570,7 +1527,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7609742c-b684-43a4-b5db-41555773deef + - ef1c80f1-605f-4690-b5b8-f413a6468b20 status: code: 200 message: OK @@ -1588,9 +1545,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1602,7 +1559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:15:59 GMT + - Tue, 10 May 2022 17:25:36 GMT expires: - '-1' pragma: @@ -1619,7 +1576,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 56f8fd05-6ccf-474b-808f-bef405aa2251 + - de45a062-a351-48e8-a376-d1665fe94b6d status: code: 200 message: OK @@ -1637,9 +1594,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1651,7 +1608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:17:40 GMT + - Tue, 10 May 2022 17:27:16 GMT expires: - '-1' pragma: @@ -1668,7 +1625,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcce1918-26c8-4337-bb04-4efa25cf622c + - 0c3e894c-066b-4c05-bc38-ae86d1dc1ae6 status: code: 200 message: OK @@ -1686,9 +1643,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1700,7 +1657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:19:20 GMT + - Tue, 10 May 2022 17:28:57 GMT expires: - '-1' pragma: @@ -1717,7 +1674,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4fefa7c6-56e4-47cd-949c-b14b835ad9f8 + - 4cc289a0-feb3-4670-849e-eba6cd04885d status: code: 200 message: OK @@ -1735,9 +1692,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1749,7 +1706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:21:01 GMT + - Tue, 10 May 2022 17:30:37 GMT expires: - '-1' pragma: @@ -1766,7 +1723,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 29614e74-cd17-4187-ba9c-3ad5cce88e6a + - df788303-2ae5-4b11-ae80-0ce0da86d120 status: code: 200 message: OK @@ -1784,9 +1741,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1798,7 +1755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:22:42 GMT + - Tue, 10 May 2022 17:32:17 GMT expires: - '-1' pragma: @@ -1815,7 +1772,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7312c405-bacb-45aa-b753-298345fca489 + - 0e325da2-dee7-479b-a4bb-7aee7b53c94d status: code: 200 message: OK @@ -1833,9 +1790,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1847,7 +1804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:24:22 GMT + - Tue, 10 May 2022 17:33:57 GMT expires: - '-1' pragma: @@ -1864,7 +1821,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 855bf6f4-419d-4978-b010-405188ed3981 + - 21fdf2b6-5770-41e3-89df-b672868dc5d2 status: code: 200 message: OK @@ -1882,9 +1839,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1896,7 +1853,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:26:02 GMT + - Tue, 10 May 2022 17:35:38 GMT expires: - '-1' pragma: @@ -1913,7 +1870,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1d4e9e93-8b55-429e-b9a7-544adf63bb10 + - d408ff85-85e3-482f-8d7e-af74e1010434 status: code: 200 message: OK @@ -1931,9 +1888,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1945,7 +1902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:27:42 GMT + - Tue, 10 May 2022 17:37:18 GMT expires: - '-1' pragma: @@ -1962,7 +1919,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d5909eff-fe40-4baf-921d-83bd11b6f88b + - 2f0fd322-a0d2-44db-b9af-5ebfae8e7027 status: code: 200 message: OK @@ -1980,9 +1937,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1994,7 +1951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:29:22 GMT + - Tue, 10 May 2022 17:38:59 GMT expires: - '-1' pragma: @@ -2011,7 +1968,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 30f148a9-895b-4ab6-a030-60c0db8bd261 + - 82855042-9c9a-4625-acef-40bb13615f03 status: code: 200 message: OK @@ -2029,9 +1986,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2043,7 +2000,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:31:03 GMT + - Tue, 10 May 2022 17:40:40 GMT expires: - '-1' pragma: @@ -2060,7 +2017,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ad5c30a5-dd1c-4107-b1b2-ee47d8c66003 + - 73f97881-58e7-4538-b6d3-c46c072ab02f status: code: 200 message: OK @@ -2078,21 +2035,21 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:32:44 GMT + - Tue, 10 May 2022 17:42:20 GMT expires: - '-1' pragma: @@ -2109,7 +2066,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cc8731fe-55dd-4730-bbcb-d865a8d64a0c + - 45ef0a0a-e6d2-4fb4-b19d-a6b87677927e status: code: 200 message: OK @@ -2127,41 +2084,21 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"8221e44a-002b-42c7-96dd-936f47257887\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n - \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n - \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": - 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n - \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n - \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n - \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n - \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": - \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": - \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": - \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": - false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1872' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:32:44 GMT + - Tue, 10 May 2022 17:44:00 GMT expires: - '-1' pragma: @@ -2178,7 +2115,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5f30b170-7ee5-4c1f-b2a7-d6e498b31bf1 + - fbfb21f2-a9af-4afc-b959-127a83d512c0 status: code: 200 message: OK @@ -2186,90 +2123,80 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-site create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -g -n --ip-address + - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '428' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:32:45 GMT + - Tue, 10 May 2022 17:45: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: + - cdb13cdc-b177-4828-8e0f-0ddfc4344461 status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"deviceProperties": {}, "ipAddress": - "10.0.1.110", "addressSpace": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-site create + - network vpn-gateway create Connection: - keep-alive - Content-Length: - - '109' - Content-Type: - - application/json ParameterSetName: - - -g -n --ip-address + - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"d7a519c0-1879-4b45-bfb9-fd004fe1bc25\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"ipAddress\": \"10.0.1.110\"\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d15e6b05-b7b9-4812-a967-9d80747be8eb?api-version=2020-05-01 cache-control: - no-cache content-length: - - '763' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:32:50 GMT + - Tue, 10 May 2022 17:47:21 GMT expires: - '-1' pragma: @@ -2279,15 +2206,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3da4415a-4858-4bd5-9827-69dd78c97762 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - 96e6d0ef-c72e-4208-9cd0-7caf5b1e6719 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2296,15 +2225,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vpn-site create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -g -n --ip-address + - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d15e6b05-b7b9-4812-a967-9d80747be8eb?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2316,7 +2245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:33:00 GMT + - Tue, 10 May 2022 17:49:01 GMT expires: - '-1' pragma: @@ -2333,7 +2262,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b78fdf5b-4f55-4b87-b819-116eb5b213c2 + - 27e59e15-05de-455e-94bc-1e2d3c1264c7 status: code: 200 message: OK @@ -2345,15 +2274,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vpn-site create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -g -n --ip-address + - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d15e6b05-b7b9-4812-a967-9d80747be8eb?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2d101e2-4a3a-4945-9e0f-d1f4093b5203?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2365,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:33:11 GMT + - Tue, 10 May 2022 17:50:41 GMT expires: - '-1' pragma: @@ -2382,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac9c27b7-5478-4a6f-a445-4ad96939ba41 + - 0484016b-4722-4958-ab4e-5fdc19489a30 status: code: 200 message: OK @@ -2394,37 +2323,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vpn-site create + - network vpn-gateway create Connection: - keep-alive ParameterSetName: - - -g -n --ip-address + - -g --vhub --name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"e83da5a5-8bb4-46b7-8c3a-d921c231630a\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"ipAddress\": \"10.0.1.110\"\r\n }\r\n}" + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"828c997c-df43-467e-93fa-c6420f144d7b\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"20.253.185.38\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"20.237.221.28\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"20.253.185.38\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"20.237.221.28\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '764' + - '1848' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:33:11 GMT - etag: - - W/"e83da5a5-8bb4-46b7-8c3a-d921c231630a" + - Tue, 10 May 2022 17:50:41 GMT expires: - '-1' pragma: @@ -2441,7 +2380,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3999a4f9-b993-4f57-aea7-c0f03727922d + - 7b2cfd84-e5dd-48a4-a2b9-034bb46a9644 status: code: 200 message: OK @@ -2453,97 +2392,86 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vpn-site link add + - network vpn-site create Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 response: body: - string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"e83da5a5-8bb4-46b7-8c3a-d921c231630a\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"ipAddress\": \"10.0.1.110\"\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T17:14:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '764' + - '402' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:33:13 GMT - etag: - - W/"e83da5a5-8bb4-46b7-8c3a-d921c231630a" + - Tue, 10 May 2022 17:50: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: - - 3eb8cac5-af1e-428d-9192-672ac57e70ce status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", - "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": - 0}, "ipAddress": "10.0.1.110", "addressSpace": {"addressPrefixes": []}, "isSecuritySite": - false, "vpnSiteLinks": [{"name": "VPN-Site-Link1", "properties": {"ipAddress": - "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.0.0"}}}]}}' + body: '{"location": "westus", "properties": {"deviceProperties": {}, "ipAddress": + "10.0.2.110", "addressSpace": {"addressPrefixes": ["10.0.2.0/24"]}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vpn-site link add + - network vpn-site create Connection: - keep-alive Content-Length: - - '539' + - '143' Content-Type: - application/json ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: - string: "{\r\n \"error\": {\r\n \"code\": \"MissingDefaultLinkForVpnSiteDuringMigrationToLinkFormat\",\r\n - \ \"message\": \"Default Vpn link is missing while migrating Vpn Site /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1 - to include links. One default link with same name and properties as VpnSite - remote_vpn_site_1 is mandatory.\",\r\n \"details\": []\r\n }\r\n}" + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"00def36e-d0b5-474e-a16a-67af3b6fd304\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"ipAddress\": \"10.0.2.110\"\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/5275d904-bb52-4fb9-8d77-87ec412c9348?api-version=2021-08-01 cache-control: - no-cache content-length: - - '492' + - '781' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:33:13 GMT + - Tue, 10 May 2022 17:50:50 GMT expires: - '-1' pragma: @@ -2556,69 +2484,41 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3ce1952a-e3f9-45a2-9e73-00d51bd6508f + - 9491f167-6172-4263-b3e5-78a3da127866 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 400 - message: Bad Request + code: 201 + message: Created - request: - body: '{"name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, - "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, - "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway connection create + - network vpn-site create Connection: - keep-alive - Content-Length: - - '1120' - Content-Type: - - application/json ParameterSetName: - - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables - --labels + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5275d904-bb52-4fb9-8d77-87ec412c9348?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"492c9ef3-d049-47f2-a084-d53281f09763\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n - \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": - {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n - \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n - \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n - \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": - []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n - \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": - 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": - \"IKEv2\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n - \ \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": - false,\r\n \"routingWeight\": 0\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2196' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:33:15 GMT + - Tue, 10 May 2022 17:51:00 GMT expires: - '-1' pragma: @@ -2628,15 +2528,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4c746cf-5d3c-4c7d-9347-1271120957aa - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - 602683cf-378c-4cb4-9adb-b407bc90e8bd status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2645,28 +2547,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway connection create + - network vpn-site create Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables - --labels + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5275d904-bb52-4fb9-8d77-87ec412c9348?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:33:26 GMT + - Tue, 10 May 2022 17:51:12 GMT expires: - '-1' pragma: @@ -2683,7 +2584,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3dd31c1b-9e97-48c9-9eef-828c2d718b00 + - 94715690-ea2b-4aba-870d-fb0be0f08549 status: code: 200 message: OK @@ -2695,28 +2596,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway connection create + - network vpn-site create Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables - --labels + - -g -n --ip-address --address-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"29e7c589-b65a-4480-b9ce-8c7b933a3cc6\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"ipAddress\": \"10.0.2.110\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '782' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:33:37 GMT + - Tue, 10 May 2022 17:51:12 GMT + etag: + - W/"29e7c589-b65a-4480-b9ce-8c7b933a3cc6" expires: - '-1' pragma: @@ -2733,7 +2643,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 981805f7-f226-4e77-a0e1-935d4e12db7a + - 2f2cf7d8-7c14-489c-8319-143a4613fdd6 status: code: 200 message: OK @@ -2741,32 +2651,41 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway connection create + - network vpn-site link add Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables - --labels + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"29e7c589-b65a-4480-b9ce-8c7b933a3cc6\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"ipAddress\": \"10.0.2.110\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '782' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:33:57 GMT + - Tue, 10 May 2022 17:51:13 GMT + etag: + - W/"29e7c589-b65a-4480-b9ce-8c7b933a3cc6" expires: - '-1' pragma: @@ -2783,28 +2702,163 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 543169b8-21e0-42eb-86c2-3e90a6cb1ffc + - 3da14286-5bb7-4aef-9cba-e8cf5dc437c2 status: code: 200 message: OK - request: - body: null + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", + "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.2.110", "addressSpace": {"addressPrefixes": ["10.0.2.0/24"]}, + "isSecuritySite": false, "vpnSiteLinks": [{"name": "VPN-Site-Link1", "properties": + {"ipAddress": "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": + "192.168.0.0"}}}], "o365Policy": {"breakOutCategories": {"allow": false, "optimize": + false, "default": false}}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vpn-gateway connection create + - network vpn-site link add Connection: - keep-alive + Content-Length: + - '632' + Content-Type: + - application/json + ParameterSetName: + - -g --site-name -n --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"MissingDefaultLinkForVpnSiteDuringMigrationToLinkFormat\",\r\n + \ \"message\": \"Default Vpn link is missing while migrating Vpn Site /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1 + to include links. One default link with same name and properties as VpnSite + remote_vpn_site_1 is mandatory.\",\r\n \"details\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '479' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 17:51:14 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: + - 2166b288-c2f8-446e-b13a-8652ff688c93 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: '{"name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + Content-Length: + - '1068' + Content-Type: + - application/json ParameterSetName: - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables --labels User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"e147d72b-cc2b-48a8-bbd7-2ffc2531cf73\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n + \ \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/46d80703-7db3-489e-ac7a-6cc077a3cc57?api-version=2021-08-01 + cache-control: + - no-cache + content-length: + - '2131' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 10 May 2022 17:51:15 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: + - 1930c3d3-9de9-48d6-9b11-b5f77901d59e + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/46d80703-7db3-489e-ac7a-6cc077a3cc57?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2816,7 +2870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:34:37 GMT + - Tue, 10 May 2022 17:51:25 GMT expires: - '-1' pragma: @@ -2833,7 +2887,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a3960714-ed03-4df6-9826-56cc0636fcd8 + - 4d3d0aa0-4f66-44f2-ac85-d070491fa412 status: code: 200 message: OK @@ -2852,9 +2906,109 @@ interactions: - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables --labels User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/46d80703-7db3-489e-ac7a-6cc077a3cc57?api-version=2021-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: + - Tue, 10 May 2022 17: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: + - a499035a-209a-4ed8-b2c2-39eaef6a1190 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/46d80703-7db3-489e-ac7a-6cc077a3cc57?api-version=2021-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: + - Tue, 10 May 2022 17:51: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: + - 9b99c7a1-d9e7-4319-a53a-fe99ed266a3c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/46d80703-7db3-489e-ac7a-6cc077a3cc57?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2866,7 +3020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:35:57 GMT + - Tue, 10 May 2022 17:52:36 GMT expires: - '-1' pragma: @@ -2883,7 +3037,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d5ef786d-1380-49e3-8766-39c6d2298dfe + - 5c0b0d4d-0569-4422-9c15-6065f0972d78 status: code: 200 message: OK @@ -2902,14 +3056,14 @@ interactions: - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables --labels User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"db22446c-0f72-484d-817a-5aa9468769aa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"0e944853-c07c-4c00-90af-5df12196f84f\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -2930,11 +3084,11 @@ interactions: cache-control: - no-cache content-length: - - '2233' + - '2168' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:35:58 GMT + - Tue, 10 May 2022 17:52:36 GMT expires: - '-1' pragma: @@ -2951,7 +3105,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e5935625-c4cd-48e7-8a00-595230b082e5 + - 4327f4af-240f-49ad-bf71-c5b8dd18a05f status: code: 200 message: OK @@ -2970,18 +3124,18 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"db22446c-0f72-484d-817a-5aa9468769aa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"0e944853-c07c-4c00-90af-5df12196f84f\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"db22446c-0f72-484d-817a-5aa9468769aa\\\"\",\r\n + \ \"etag\": \"W/\\\"0e944853-c07c-4c00-90af-5df12196f84f\\\"\",\r\n \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3003,29 +3157,29 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.253.185.38\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.237.221.28\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.253.185.38\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.221.28\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4347' + - '4258' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:36:01 GMT + - Tue, 10 May 2022 17:52:38 GMT expires: - '-1' pragma: @@ -3042,7 +3196,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ffd4d310-e325-42ec-b9a2-791b26197dc2 + - b8c31ce4-47f2-4019-9013-4da6daef6614 status: code: 200 message: OK @@ -3064,7 +3218,8 @@ interactions: "vnetRoutes": {"staticRoutes": []}}}}], "bgpSettings": {"asn": 65515, "peerWeight": 0, "bgpPeeringAddresses": [{"ipconfigurationId": "Instance0", "customBgpIpAddresses": []}, {"ipconfigurationId": "Instance1", "customBgpIpAddresses": []}]}, "vpnGatewayScaleUnit": - 1}}' + 1, "enableBgpRouteTranslationForNat": false, "isRoutingPreferenceInternet": + false, "natRules": []}}' headers: Accept: - application/json @@ -3075,25 +3230,25 @@ interactions: Connection: - keep-alive Content-Length: - - '2607' + - '2612' Content-Type: - application/json ParameterSetName: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"3390ca1c-fc65-4bc1-9605-9fb4c16bccc0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"68e732b1-7240-4250-bd0d-9e8d81bbbaab\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [\r\n \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"3390ca1c-fc65-4bc1-9605-9fb4c16bccc0\\\"\",\r\n + \ \"etag\": \"W/\\\"68e732b1-7240-4250-bd0d-9e8d81bbbaab\\\"\",\r\n \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3119,33 +3274,33 @@ interactions: \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.253.185.38\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.237.221.28\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.253.185.38\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.221.28\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f7da2ba9-bc43-4cf7-8607-5f5e37ccc408?api-version=2021-08-01 cache-control: - no-cache content-length: - - '4720' + - '4631' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:36:02 GMT + - Tue, 10 May 2022 17:52:39 GMT expires: - '-1' pragma: @@ -3162,9 +3317,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c70ea02-c654-4fd3-ab9b-8b9ea59b25ea + - 2aa61e40-e3ca-41e2-b947-a73763500d34 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3183,9 +3338,9 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f7da2ba9-bc43-4cf7-8607-5f5e37ccc408?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3197,7 +3352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:36:12 GMT + - Tue, 10 May 2022 17:52:49 GMT expires: - '-1' pragma: @@ -3214,7 +3369,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d8106f19-fbb4-49d8-aef3-2d8a5fb41432 + - 1d086a14-530e-4265-9195-b6a9d637bd73 status: code: 200 message: OK @@ -3233,9 +3388,9 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f7da2ba9-bc43-4cf7-8607-5f5e37ccc408?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3247,7 +3402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:36:22 GMT + - Tue, 10 May 2022 17:52:59 GMT expires: - '-1' pragma: @@ -3264,7 +3419,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 249a3943-6fca-434d-a3c2-c763c885e7ce + - 46fab217-b36c-4652-ae9c-d77d3d918502 status: code: 200 message: OK @@ -3283,9 +3438,9 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f7da2ba9-bc43-4cf7-8607-5f5e37ccc408?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3297,7 +3452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:36:43 GMT + - Tue, 10 May 2022 17:53:19 GMT expires: - '-1' pragma: @@ -3314,7 +3469,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 96f7ca05-68e4-442a-b831-45ec4342c8f7 + - 1b03d161-865b-483d-ac46-8295281db0c3 status: code: 200 message: OK @@ -3333,9 +3488,9 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f7da2ba9-bc43-4cf7-8607-5f5e37ccc408?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3347,7 +3502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:37:04 GMT + - Tue, 10 May 2022 17:53:40 GMT expires: - '-1' pragma: @@ -3364,7 +3519,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 35aa6aea-9436-45cb-81b2-e1e5487570f7 + - d485c71e-a184-491d-b46d-47ec1d5242f3 status: code: 200 message: OK @@ -3383,9 +3538,9 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f7da2ba9-bc43-4cf7-8607-5f5e37ccc408?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3397,7 +3552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:37:44 GMT + - Tue, 10 May 2022 17:54:20 GMT expires: - '-1' pragma: @@ -3414,7 +3569,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8abf3380-bfc0-4dcf-870c-a33a4013a8ca + - e91f516a-8155-4db1-8505-bc4f829897a7 status: code: 200 message: OK @@ -3433,9 +3588,9 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f7da2ba9-bc43-4cf7-8607-5f5e37ccc408?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3447,7 +3602,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:38:24 GMT + - Tue, 10 May 2022 17:55:00 GMT expires: - '-1' pragma: @@ -3464,7 +3619,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 855bd040-5b2a-4b2e-93de-75d554011bc7 + - 0136f1ae-0b4c-48d1-bdcd-eb28c51f65cd status: code: 200 message: OK @@ -3483,9 +3638,9 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f7da2ba9-bc43-4cf7-8607-5f5e37ccc408?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3497,7 +3652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:39:45 GMT + - Tue, 10 May 2022 17:56:21 GMT expires: - '-1' pragma: @@ -3514,7 +3669,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e69bb949-1ec7-40f7-9432-98547ca8505a + - c1a2b0ff-246b-437f-a059-754133f16f4e status: code: 200 message: OK @@ -3533,18 +3688,18 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1b0cbeb4-6f6f-440f-81de-943ea1695964\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n + \ \"etag\": \"W/\\\"1b0cbeb4-6f6f-440f-81de-943ea1695964\\\"\",\r\n \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3570,29 +3725,29 @@ interactions: \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.253.185.38\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.237.221.28\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.253.185.38\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.221.28\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4722' + - '4633' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:39:46 GMT + - Tue, 10 May 2022 17:56:21 GMT expires: - '-1' pragma: @@ -3609,7 +3764,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 94524437-46ad-49a4-bf1e-749cd190a92d + - cc3bdca0-6e2e-4fac-b6a2-9b275fda4d7c status: code: 200 message: OK @@ -3627,18 +3782,18 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1b0cbeb4-6f6f-440f-81de-943ea1695964\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n + \ \"etag\": \"W/\\\"1b0cbeb4-6f6f-440f-81de-943ea1695964\\\"\",\r\n \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3664,29 +3819,29 @@ interactions: \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.253.185.38\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.237.221.28\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.253.185.38\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.221.28\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4722' + - '4633' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:39:47 GMT + - Tue, 10 May 2022 17:56:22 GMT expires: - '-1' pragma: @@ -3703,7 +3858,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0f43f64-d903-46e2-bc00-504584489f51 + - 3e249ed7-0cb3-469b-9fe9-88f52809d976 status: code: 200 message: OK @@ -3721,18 +3876,18 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1b0cbeb4-6f6f-440f-81de-943ea1695964\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n + \ \"etag\": \"W/\\\"1b0cbeb4-6f6f-440f-81de-943ea1695964\\\"\",\r\n \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3758,29 +3913,29 @@ interactions: \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.253.185.38\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.237.221.28\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.253.185.38\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.221.28\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4722' + - '4633' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:39:50 GMT + - Tue, 10 May 2022 17:56:23 GMT expires: - '-1' pragma: @@ -3797,7 +3952,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 610f6e73-17ec-4e0f-a3db-2f0a58c80eed + - 27e7ee01-8e2f-4ab8-87f3-f63f5bcae41c status: code: 200 message: OK @@ -3816,7 +3971,8 @@ interactions: "vnetRoutes": {"staticRoutes": []}}}}], "bgpSettings": {"asn": 65515, "peerWeight": 0, "bgpPeeringAddresses": [{"ipconfigurationId": "Instance0", "customBgpIpAddresses": []}, {"ipconfigurationId": "Instance1", "customBgpIpAddresses": []}]}, "vpnGatewayScaleUnit": - 1}}' + 1, "enableBgpRouteTranslationForNat": false, "isRoutingPreferenceInternet": + false, "natRules": []}}' headers: Accept: - application/json @@ -3827,24 +3983,24 @@ interactions: Connection: - keep-alive Content-Length: - - '2393' + - '2398' Content-Type: - application/json ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"abff1635-d025-48a4-a641-f9c464904587\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"137893fd-75a5-4cbc-9ca4-a6e53193387b\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [\r\n \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"abff1635-d025-48a4-a641-f9c464904587\\\"\",\r\n + \ \"etag\": \"W/\\\"137893fd-75a5-4cbc-9ca4-a6e53193387b\\\"\",\r\n \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3866,33 +4022,33 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.253.185.38\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.237.221.28\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.253.185.38\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.221.28\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d8a51b8c-b2d6-43da-b076-6341427a3c1f?api-version=2021-08-01 cache-control: - no-cache content-length: - - '4345' + - '4256' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:39:50 GMT + - Tue, 10 May 2022 17:56:24 GMT expires: - '-1' pragma: @@ -3909,9 +4065,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2bb2775e-66fc-49c3-883c-498363198b27 + - f2bbf1f8-2fb9-4655-929d-de3313ded6cd x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -3929,9 +4085,9 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d8a51b8c-b2d6-43da-b076-6341427a3c1f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3943,7 +4099,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:40:00 GMT + - Tue, 10 May 2022 17:56:34 GMT expires: - '-1' pragma: @@ -3960,7 +4116,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2e960cde-b48c-49b2-ac0c-c4d160eb63b7 + - b0e70207-4dbc-4216-bf29-41228603f043 status: code: 200 message: OK @@ -3978,9 +4134,9 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d8a51b8c-b2d6-43da-b076-6341427a3c1f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3992,7 +4148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:40:10 GMT + - Tue, 10 May 2022 17:56:44 GMT expires: - '-1' pragma: @@ -4009,7 +4165,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8affbaea-c79b-4d17-b26e-cb45d35aeec4 + - 41c03174-b0c7-426b-9948-f177d47d6608 status: code: 200 message: OK @@ -4027,9 +4183,9 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d8a51b8c-b2d6-43da-b076-6341427a3c1f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4041,7 +4197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:40:31 GMT + - Tue, 10 May 2022 17:57:04 GMT expires: - '-1' pragma: @@ -4058,7 +4214,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6354707a-9028-405b-9b7b-f85211e957ab + - bc31065c-9a25-4bd4-9be5-bbee95f795db status: code: 200 message: OK @@ -4076,9 +4232,9 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d8a51b8c-b2d6-43da-b076-6341427a3c1f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4090,7 +4246,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:40:51 GMT + - Tue, 10 May 2022 17:57:25 GMT expires: - '-1' pragma: @@ -4107,7 +4263,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ba0ba86-22f0-4714-ad8d-3d9d010b4934 + - 4cb7b177-0736-4f65-b9d4-7b92059425a5 status: code: 200 message: OK @@ -4125,9 +4281,9 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d8a51b8c-b2d6-43da-b076-6341427a3c1f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4139,7 +4295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:41:31 GMT + - Tue, 10 May 2022 17:58:05 GMT expires: - '-1' pragma: @@ -4156,7 +4312,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ea2c0e10-fbe6-4ae5-b69f-0bc305b222fa + - 871cf2ef-ce79-44b4-abb9-b31312f0f181 status: code: 200 message: OK @@ -4174,9 +4330,9 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d8a51b8c-b2d6-43da-b076-6341427a3c1f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4188,7 +4344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:42:12 GMT + - Tue, 10 May 2022 17:58:46 GMT expires: - '-1' pragma: @@ -4205,7 +4361,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b6cd0311-9169-4b94-9678-9eb282c41151 + - d9093c3f-3551-4bfe-b1b6-3ab526a12d97 status: code: 200 message: OK @@ -4223,9 +4379,9 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d8a51b8c-b2d6-43da-b076-6341427a3c1f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -4237,7 +4393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:43:33 GMT + - Tue, 10 May 2022 18:00:05 GMT expires: - '-1' pragma: @@ -4254,7 +4410,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f52eac41-d38e-4d56-8eef-146d2a589cb2 + - cce24cd1-34eb-4d69-82c3-a47cd8a25dca status: code: 200 message: OK @@ -4272,18 +4428,18 @@ interactions: ParameterSetName: - -g --gateway-name --connection-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"63d4345a-2d37-4119-9aa6-1d53a1b905c7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7ffe972e-3d62-4aac-858a-e75a81ded464\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"63d4345a-2d37-4119-9aa6-1d53a1b905c7\\\"\",\r\n + \ \"etag\": \"W/\\\"7ffe972e-3d62-4aac-858a-e75a81ded464\\\"\",\r\n \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -4305,29 +4461,29 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.253.185.38\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.237.221.28\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.253.185.38\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.221.28\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4347' + - '4258' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:43:33 GMT + - Tue, 10 May 2022 18:00:06 GMT expires: - '-1' pragma: @@ -4344,7 +4500,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e0d6664e-e954-4f7b-afd2-110c5d5d0358 + - ccf71d7c-f339-46c8-89aa-ccd570a3d1c2 status: code: 200 message: OK @@ -4364,25 +4520,25 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/32e9ecba-f6dc-4462-8b8b-37f82b2cf152?api-version=2021-08-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 15 Nov 2021 06:43:35 GMT + - Tue, 10 May 2022 18:00:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/32e9ecba-f6dc-4462-8b8b-37f82b2cf152?api-version=2021-08-01 pragma: - no-cache server: @@ -4393,7 +4549,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ffcbb3bc-b0b3-4d62-9199-f9dfa767fa19 + - 8f2ae3e3-ddfd-4f85-ba0b-faf3195d7766 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -4413,9 +4569,9 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/32e9ecba-f6dc-4462-8b8b-37f82b2cf152?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4427,7 +4583,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:43:45 GMT + - Tue, 10 May 2022 18:00:18 GMT expires: - '-1' pragma: @@ -4444,7 +4600,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1a20dee-27f8-4e7f-81aa-0adf3a84b25d + - 5d679258-b315-4089-b5ac-a951f13bd414 status: code: 200 message: OK @@ -4462,9 +4618,9 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/32e9ecba-f6dc-4462-8b8b-37f82b2cf152?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4476,7 +4632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:43:55 GMT + - Tue, 10 May 2022 18:00:28 GMT expires: - '-1' pragma: @@ -4493,7 +4649,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 450d9db5-ceb3-4ddf-8bda-cc7885495f35 + - 37670826-4a15-4b1b-b67e-d734218bc889 status: code: 200 message: OK @@ -4511,9 +4667,9 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/32e9ecba-f6dc-4462-8b8b-37f82b2cf152?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4525,7 +4681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:44:15 GMT + - Tue, 10 May 2022 18:00:48 GMT expires: - '-1' pragma: @@ -4542,7 +4698,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0f4dc366-4e17-45b8-811b-c5846fdc2607 + - 3bbd1b7c-d0fb-4c12-85c5-839d9c39d08d status: code: 200 message: OK @@ -4560,9 +4716,9 @@ interactions: ParameterSetName: - -g -n --gateway-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/32e9ecba-f6dc-4462-8b8b-37f82b2cf152?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -4574,7 +4730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:44:56 GMT + - Tue, 10 May 2022 18:01:28 GMT expires: - '-1' pragma: @@ -4591,7 +4747,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c706ceb2-9010-4da7-bed6-a750b70ffcd9 + - 7769a2fc-c049-48ca-8fea-c224b5cde2a3 status: code: 200 message: OK @@ -4611,9 +4767,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: '' @@ -4621,17 +4777,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f01beed-da17-49f8-80ae-25e9e992f215?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4ebd5c65-7c5d-47f3-b7ed-299f986f2e3d?api-version=2021-08-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 15 Nov 2021 06:44:58 GMT + - Tue, 10 May 2022 18:01:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8f01beed-da17-49f8-80ae-25e9e992f215?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4ebd5c65-7c5d-47f3-b7ed-299f986f2e3d?api-version=2021-08-01 pragma: - no-cache server: @@ -4642,7 +4798,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c424f3e2-e4d7-4e21-b555-1473d068588e + - 79a28d88-6c66-49e0-ba29-4cd47f77f156 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -4662,9 +4818,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f01beed-da17-49f8-80ae-25e9e992f215?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4ebd5c65-7c5d-47f3-b7ed-299f986f2e3d?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -4676,7 +4832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:08 GMT + - Tue, 10 May 2022 18:01:40 GMT expires: - '-1' pragma: @@ -4693,7 +4849,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a23c9dad-a0e5-4c93-9207-5a5b25b44b4a + - 833ed011-2f0b-4929-9c97-54fe6e5b05c7 status: code: 200 message: OK @@ -4709,23 +4865,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-10T17:14:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '402' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:11 GMT + - Tue, 10 May 2022 18:01:41 GMT expires: - '-1' pragma: @@ -4741,8 +4897,8 @@ interactions: message: OK - request: body: '{"location": "westus", "properties": {"deviceProperties": {}, "addressSpace": - {}, "vpnSiteLinks": [{"name": "remote_vpn_site_1", "properties": {"ipAddress": - "10.0.1.110"}}]}}' + {"addressPrefixes": ["10.0.4.0/24"]}, "vpnSiteLinks": [{"name": "remote_vpn_site_1", + "properties": {"ipAddress": "10.0.4.110"}}]}}' headers: Accept: - application/json @@ -4753,45 +4909,45 @@ interactions: Connection: - keep-alive Content-Length: - - '174' + - '208' Content-Type: - application/json ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"48b79c55-7d51-4341-8084-2c05d2b8c95c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"282c7a16-cf27-4620-a6dc-b8b81393c48a\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"48b79c55-7d51-4341-8084-2c05d2b8c95c\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"282c7a16-cf27-4620-a6dc-b8b81393c48a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\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/13cfd2ef-1e17-4c3e-b24f-49575fd55ea7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/80827538-b34a-4c6e-997b-9938dfaf99bc?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1384' + - '1389' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:19 GMT + - Tue, 10 May 2022 18:01:48 GMT expires: - '-1' pragma: @@ -4804,7 +4960,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 69f62a70-94d5-4e31-8b47-94527cceb840 + - 0d6a0366-fd5c-42b4-8bec-4174054e5dac x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -4822,11 +4978,60 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/13cfd2ef-1e17-4c3e-b24f-49575fd55ea7?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/80827538-b34a-4c6e-997b-9938dfaf99bc?api-version=2021-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: + - Tue, 10 May 2022 18:01: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: + - 635dba28-ac64-42ba-b15b-f9107dff91c6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link --address-prefixes + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/80827538-b34a-4c6e-997b-9938dfaf99bc?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -4838,7 +5043,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:29 GMT + - Tue, 10 May 2022 18:02:09 GMT expires: - '-1' pragma: @@ -4855,7 +5060,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - df1c8aee-70ac-415e-ab1c-7b65e3951186 + - 44236474-392b-4f0c-b690-115123a6fb5e status: code: 200 message: OK @@ -4871,39 +5076,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"e450dfc4-6322-4f75-933c-b98a984d0981\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"577ce4db-6509-4e5a-bc89-a0ab4bcf409a\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"e450dfc4-6322-4f75-933c-b98a984d0981\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"577ce4db-6509-4e5a-bc89-a0ab4bcf409a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1386' + - '1391' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:29 GMT + - Tue, 10 May 2022 18:02:09 GMT etag: - - W/"e450dfc4-6322-4f75-933c-b98a984d0981" + - W/"577ce4db-6509-4e5a-bc89-a0ab4bcf409a" expires: - '-1' pragma: @@ -4920,7 +5125,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cec2035d-314e-4dab-8498-c9902674cc4e + - 77611487-4e50-41ea-bd05-dd430175b628 status: code: 200 message: OK @@ -4936,39 +5141,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"e450dfc4-6322-4f75-933c-b98a984d0981\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"577ce4db-6509-4e5a-bc89-a0ab4bcf409a\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"e450dfc4-6322-4f75-933c-b98a984d0981\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"577ce4db-6509-4e5a-bc89-a0ab4bcf409a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1386' + - '1391' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:31 GMT + - Tue, 10 May 2022 18:02:11 GMT etag: - - W/"e450dfc4-6322-4f75-933c-b98a984d0981" + - W/"577ce4db-6509-4e5a-bc89-a0ab4bcf409a" expires: - '-1' pragma: @@ -4985,18 +5190,20 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0c6bcf7a-68c7-4f94-89ec-437c82f92898 + - a593ccd0-1046-48b4-9363-ab6c9f588939 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": - 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", + 0}, "addressSpace": {"addressPrefixes": ["10.0.4.0/24"]}, "isSecuritySite": + false, "vpnSiteLinks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": - 0}, "ipAddress": "10.0.1.110"}}, {"name": "VPN-Site-Link1", "properties": {"ipAddress": - "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.1.0"}}}]}}' + 0}, "ipAddress": "10.0.4.110"}}, {"name": "VPN-Site-Link1", "properties": {"ipAddress": + "10.0.4.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.1.0"}}}], + "o365Policy": {"breakOutCategories": {"allow": false, "optimize": false, "default": + false}}}}' headers: Accept: - application/json @@ -5007,36 +5214,36 @@ interactions: Connection: - keep-alive Content-Length: - - '866' + - '946' Content-Type: - application/json ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"2e245717-6ded-4ea3-9613-35ae26f97091\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5b0e3f62-73d5-4205-8bbc-89746e1c0517\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"2e245717-6ded-4ea3-9613-35ae26f97091\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"5b0e3f62-73d5-4205-8bbc-89746e1c0517\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"2e245717-6ded-4ea3-9613-35ae26f97091\\\"\",\r\n + \ \"etag\": \"W/\\\"5b0e3f62-73d5-4205-8bbc-89746e1c0517\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -5045,15 +5252,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89352250-e536-4373-ae06-bedf80a04bef?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d639691f-1f3f-49b1-b7e1-66972ef6c51e?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2119' + - '2111' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:31 GMT + - Tue, 10 May 2022 18:02:11 GMT expires: - '-1' pragma: @@ -5070,7 +5277,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 950ccca4-4e6b-45a3-ae58-115f1c2b7a5c + - f093abb4-0b97-49a4-8a84-cc6e435d1605 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -5088,11 +5295,60 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d639691f-1f3f-49b1-b7e1-66972ef6c51e?api-version=2021-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: + - Tue, 10 May 2022 18:02: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: + - 58592bd7-9dd1-4e6b-9788-652b1e78091d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89352250-e536-4373-ae06-bedf80a04bef?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d639691f-1f3f-49b1-b7e1-66972ef6c51e?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -5104,7 +5360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:42 GMT + - Tue, 10 May 2022 18:02:32 GMT expires: - '-1' pragma: @@ -5121,7 +5377,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9b2d8737-0e7f-4db9-8e59-f8f7af4ea148 + - 93977db0-ac99-4cd3-b2c6-4cbbb409a36b status: code: 200 message: OK @@ -5137,32 +5393,32 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"10e238db-afd4-45f1-a18c-ce2c4257c63d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"10e238db-afd4-45f1-a18c-ce2c4257c63d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n + \ \"etag\": \"W/\\\"10e238db-afd4-45f1-a18c-ce2c4257c63d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -5171,13 +5427,13 @@ interactions: cache-control: - no-cache content-length: - - '2122' + - '2114' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:42 GMT + - Tue, 10 May 2022 18:02:32 GMT etag: - - W/"db844363-175f-4795-8e2a-5fe8c6dca04c" + - W/"10e238db-afd4-45f1-a18c-ce2c4257c63d" expires: - '-1' pragma: @@ -5194,7 +5450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9099b3c1-6099-4d56-a06a-86a2c51a0762 + - 5b9d7734-e80d-450f-b97c-ca67a4c7bf15 status: code: 200 message: OK @@ -5210,32 +5466,32 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"10e238db-afd4-45f1-a18c-ce2c4257c63d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"10e238db-afd4-45f1-a18c-ce2c4257c63d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n + \ \"etag\": \"W/\\\"10e238db-afd4-45f1-a18c-ce2c4257c63d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -5244,13 +5500,13 @@ interactions: cache-control: - no-cache content-length: - - '2122' + - '2114' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:43 GMT + - Tue, 10 May 2022 18:02:33 GMT etag: - - W/"db844363-175f-4795-8e2a-5fe8c6dca04c" + - W/"10e238db-afd4-45f1-a18c-ce2c4257c63d" expires: - '-1' pragma: @@ -5267,21 +5523,22 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ea466d0-83fe-41e4-afe0-b4bca2ef0a61 + - b1543fe0-9faa-4a6f-a758-05f331cb99bd status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": - 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", + 0}, "addressSpace": {"addressPrefixes": ["10.0.4.0/24"]}, "isSecuritySite": + false, "vpnSiteLinks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": - 0}, "ipAddress": "10.0.1.110"}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1", + 0}, "ipAddress": "10.0.4.110"}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1", "name": "VPN-Site-Link1", "properties": {"linkProperties": {"linkSpeedInMbps": - 0}, "ipAddress": "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": - "192.168.1.0"}}}, {"name": "VPN-Site-Link2", "properties": {"ipAddress": "10.0.1.112", - "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.2.0"}}}]}}' + 0}, "ipAddress": "10.0.4.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": + "192.168.1.0"}}}, {"name": "VPN-Site-Link2", "properties": {"ipAddress": "10.0.4.112", + "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.2.0"}}}], "o365Policy": + {"breakOutCategories": {"allow": false, "optimize": false, "default": false}}}}' headers: Accept: - application/json @@ -5292,44 +5549,44 @@ interactions: Connection: - keep-alive Content-Length: - - '1282' + - '1349' Content-Type: - application/json ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"573feaab-3202-45ea-a7c3-7ae418a9d490\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d0b4c7fc-1383-422c-aa5e-5fff05f917ad\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"573feaab-3202-45ea-a7c3-7ae418a9d490\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"d0b4c7fc-1383-422c-aa5e-5fff05f917ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"573feaab-3202-45ea-a7c3-7ae418a9d490\\\"\",\r\n + \ \"etag\": \"W/\\\"d0b4c7fc-1383-422c-aa5e-5fff05f917ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n - \ \"etag\": \"W/\\\"573feaab-3202-45ea-a7c3-7ae418a9d490\\\"\",\r\n + \ \"etag\": \"W/\\\"d0b4c7fc-1383-422c-aa5e-5fff05f917ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.112\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -5338,15 +5595,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/baea1736-2b61-4474-997b-2b7de2982f1f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a424986b-e53e-4a62-ae99-50dfeeca49f2?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2854' + - '2833' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:44 GMT + - Tue, 10 May 2022 18:02:34 GMT expires: - '-1' pragma: @@ -5363,9 +5620,58 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60aa22d6-de3f-4933-9f27-20ee6c024310 + - 06673b95-9d4a-49b5-b051-c5be5f5d58f0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g --site-name -n --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a424986b-e53e-4a62-ae99-50dfeeca49f2?api-version=2021-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: + - Tue, 10 May 2022 18:02: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: + - 9759db32-c032-43a6-a42f-7297fdb4c784 status: code: 200 message: OK @@ -5381,11 +5687,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/baea1736-2b61-4474-997b-2b7de2982f1f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a424986b-e53e-4a62-ae99-50dfeeca49f2?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -5397,7 +5703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:54 GMT + - Tue, 10 May 2022 18:02:54 GMT expires: - '-1' pragma: @@ -5414,7 +5720,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c3deacc-c022-419e-b102-56d7e06c07af + - c66e7cf7-8766-4b8e-ad78-a75074911dc9 status: code: 200 message: OK @@ -5430,40 +5736,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.112\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -5472,13 +5778,13 @@ interactions: cache-control: - no-cache content-length: - - '2858' + - '2837' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:54 GMT + - Tue, 10 May 2022 18:02:55 GMT etag: - - W/"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448" + - W/"77d61438-00fc-4962-b7d3-83b57ff24786" expires: - '-1' pragma: @@ -5495,7 +5801,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8e83bc21-4b4e-451d-840f-787764d572fc + - ee379bbf-883f-43ea-aaf9-d08514e95823 status: code: 200 message: OK @@ -5511,40 +5817,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n + - -g --site-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.112\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -5553,13 +5859,13 @@ interactions: cache-control: - no-cache content-length: - - '2858' + - '2837' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:57 GMT + - Tue, 10 May 2022 18:02:56 GMT etag: - - W/"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448" + - W/"77d61438-00fc-4962-b7d3-83b57ff24786" expires: - '-1' pragma: @@ -5576,7 +5882,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5278ba00-ccc5-4da5-a01b-d0278c644002 + - 07bc7e33-8a56-4d6a-a8fd-f221304403f8 status: code: 200 message: OK @@ -5592,40 +5898,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --index + - -g --site-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n - \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"etag\": \"W/\\\"77d61438-00fc-4962-b7d3-83b57ff24786\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.112\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -5634,13 +5940,13 @@ interactions: cache-control: - no-cache content-length: - - '2858' + - '2837' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:59 GMT + - Tue, 10 May 2022 18:02:57 GMT etag: - - W/"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448" + - W/"77d61438-00fc-4962-b7d3-83b57ff24786" expires: - '-1' pragma: @@ -5657,21 +5963,21 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d30e3ba6-9036-4bc1-b963-4e837ac01512 + - 71d4cf3d-2baa-428a-8bdf-e6cb1857f0b4 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": - 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1", - "name": "VPN-Site-Link1", "properties": {"linkProperties": {"linkSpeedInMbps": - 0}, "ipAddress": "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": - "192.168.1.0"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2", + 0}, "addressSpace": {"addressPrefixes": ["10.0.4.0/24"]}, "isSecuritySite": + false, "vpnSiteLinks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", + "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.4.110"}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2", "name": "VPN-Site-Link2", "properties": {"linkProperties": {"linkSpeedInMbps": - 0}, "ipAddress": "10.0.1.112", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": - "192.168.2.0"}}}]}}' + 0}, "ipAddress": "10.0.4.112", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": + "192.168.2.0"}}}], "o365Policy": {"breakOutCategories": {"allow": false, "optimize": + false, "default": false}}}}' headers: Accept: - application/json @@ -5682,38 +5988,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1205' + - '1210' Content-Type: - application/json ParameterSetName: - - -g -n --index + - -g --site-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"63dbd8d4-fe2a-49f1-88f8-c1d509f133b4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"eae9c0f0-be75-4bae-9481-1f4745dc8421\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"63dbd8d4-fe2a-49f1-88f8-c1d509f133b4\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"eae9c0f0-be75-4bae-9481-1f4745dc8421\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n - \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n - \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": - 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n - \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n - \ \"etag\": \"W/\\\"63dbd8d4-fe2a-49f1-88f8-c1d509f133b4\\\"\",\r\n + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n + \ \"etag\": \"W/\\\"eae9c0f0-be75-4bae-9481-1f4745dc8421\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.112\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -5722,15 +6026,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/88109d2f-fd4b-4e0a-9002-dea9350590f9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d916091-9f27-448d-a5e6-affd998dae23?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2231' + - '2111' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:45:59 GMT + - Tue, 10 May 2022 18:02:57 GMT expires: - '-1' pragma: @@ -5747,9 +6051,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 74ca2445-1eaa-4743-836a-3448581e0bdc + - e1dce6c4-71d0-49bc-8299-e89d8d1b2872 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -5765,11 +6069,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --index + - -g --site-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/88109d2f-fd4b-4e0a-9002-dea9350590f9?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d916091-9f27-448d-a5e6-affd998dae23?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -5781,7 +6085,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:46:09 GMT + - Tue, 10 May 2022 18:03:07 GMT expires: - '-1' pragma: @@ -5798,7 +6102,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7b3fe24c-547e-4cfb-9c74-732530d3744d + - 67a37d42-c53c-4c30-8697-db6b07efdbc8 status: code: 200 message: OK @@ -5814,34 +6118,32 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --index + - -g --site-name --index User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"d16c5b14-7067-48f5-ac74-62a93286c946\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"28386d4f-7ab0-414b-b0d5-376ad1678b45\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"d16c5b14-7067-48f5-ac74-62a93286c946\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.4.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"28386d4f-7ab0-414b-b0d5-376ad1678b45\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n - \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n - \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": - 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n - \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n - \ \"etag\": \"W/\\\"d16c5b14-7067-48f5-ac74-62a93286c946\\\"\",\r\n + \ \"ipAddress\": \"10.0.4.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n + \ \"etag\": \"W/\\\"28386d4f-7ab0-414b-b0d5-376ad1678b45\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.4.112\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -5850,153 +6152,13 @@ interactions: cache-control: - no-cache content-length: - - '2234' + - '2114' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 06:46:10 GMT + - Tue, 10 May 2022 18:03:08 GMT etag: - - W/"d16c5b14-7067-48f5-ac74-62a93286c946" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 6a8b49f5-9d73-445b-aed9-0292409f8798 - status: - code: 200 - message: OK -- request: - body: '{"name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, - "vpnLinkConnections": [{"name": "test_s2s_vpn_gateway_connection", "properties": - {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}}}], - "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, - "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vpn-gateway connection create - Connection: - - keep-alive - Content-Length: - - '1460' - Content-Type: - - application/json - ParameterSetName: - - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table - --propagated-route-tables --labels --with-link - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"e95da4c4-c1d1-4f88-b4e4-afe93a21f67b\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n - \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": - {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n - \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n - \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n - \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": - []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n - \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"e95da4c4-c1d1-4f88-b4e4-afe93a21f67b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n - \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": - [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": - 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": - \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": - false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": - false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n - \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": - 0\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd9960bd-12a8-417f-a0ff-4aae03a1184f?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '3403' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 15 Nov 2021 06:46: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: - - ddbd31a8-7cfd-4a23-8bd7-ac6af4549e6f - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vpn-gateway connection create - Connection: - - keep-alive - ParameterSetName: - - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table - --propagated-route-tables --labels --with-link - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd9960bd-12a8-417f-a0ff-4aae03a1184f?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"InvalidConnectedSiteId\",\r\n - \ \"message\": \"The vpnsite id '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1' - is invalid or the vpnsite does not exist or the vpnsite exists with links - and no link connections are configured.\",\r\n \"details\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '452' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 15 Nov 2021 06:46:23 GMT + - W/"28386d4f-7ab0-414b-b0d5-376ad1678b45" expires: - '-1' pragma: @@ -6013,7 +6175,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1a076342-0aa4-4618-aec5-3bbc3dfbad4f + - 8aed5656-1b66-4061-8756-c7e91777e9d9 status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn.yaml index 8bc698fa706..7d043bff937 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T07:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T03:11:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '412' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:50:19 GMT + - Wed, 11 May 2022 03:11:21 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n - \ \"etag\": \"W/\\\"c172f699-9ac2-4cd8-bbbb-27deb7f654df\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"65abfdd0-cf1a-4643-b9a9-4b3e2f93813b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f47d50df-1001-4f36-bb42-4732b21ed581?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2e81c587-0751-42b4-915a-e98fea4a2a9a?api-version=2021-08-01 cache-control: - no-cache content-length: - - '569' + - '561' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:50:25 GMT + - Wed, 11 May 2022 03:11:33 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1acd2526-81c8-4524-93f1-db0a6537de6f + - 8af991c9-9d74-4f4b-b812-792cd14aeff2 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f47d50df-1001-4f36-bb42-4732b21ed581?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2e81c587-0751-42b4-915a-e98fea4a2a9a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:50:36 GMT + - Wed, 11 May 2022 03:11:43 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 143693d4-e1f1-41e6-9830-ef723452f119 + - 846df874-06eb-42ea-9819-b4ee1a6d4420 status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n - \ \"etag\": \"W/\\\"d6990f2d-e393-4bb5-8b5c-29e02ed9ed0f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f4060524-9455-4258-a359-100d8f1834b2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '570' + - '562' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:50:36 GMT + - Wed, 11 May 2022 03:11:43 GMT etag: - - W/"d6990f2d-e393-4bb5-8b5c-29e02ed9ed0f" + - W/"f4060524-9455-4258-a359-100d8f1834b2" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 40dd55c4-b165-4e60-bab9-b3bf9a8904b5 + - ae452566-aa9a-46dd-896c-53bf4e874e12 status: code: 200 message: OK @@ -220,21 +220,21 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T07:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T03:11:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '412' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:50:38 GMT + - Wed, 11 May 2022 03:11:44 GMT expires: - '-1' pragma: @@ -261,38 +261,41 @@ interactions: Connection: - keep-alive Content-Length: - - '288' + - '280' Content-Type: - application/json ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n - \ \"etag\": \"W/\\\"6db4b679-f07e-4b4b-82fb-4e8a38f1bd18\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c8e325a1-7765-4d59-9974-9dc8fb44ef3c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n - \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"None\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\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/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d215172d-f5d6-487f-8de8-2214e2f4260c?api-version=2021-08-01 cache-control: - no-cache content-length: - - '865' + - '1099' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:50:46 GMT + - Wed, 11 May 2022 03:11:47 GMT expires: - '-1' pragma: @@ -305,9 +308,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - aee906a8-5351-40fa-b1cd-4bb382fa626b + - d53dad2e-f82e-482c-8a84-f165144064af x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -325,9 +328,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d215172d-f5d6-487f-8de8-2214e2f4260c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -339,7 +342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:50:57 GMT + - Wed, 11 May 2022 03:11:57 GMT expires: - '-1' pragma: @@ -356,7 +359,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c797af7-2ad4-47de-a1c3-b49e9d541fd0 + - cd284e57-2f9c-4ccd-aa4a-e90dcf4f163b status: code: 200 message: OK @@ -374,9 +377,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d215172d-f5d6-487f-8de8-2214e2f4260c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -388,7 +391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:51:07 GMT + - Wed, 11 May 2022 03:12:09 GMT expires: - '-1' pragma: @@ -405,7 +408,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8fbdbbcd-9514-4f2d-aed4-1f451838509f + - 696c89f8-5a7b-4d8f-ab24-9bf150bd3895 status: code: 200 message: OK @@ -423,9 +426,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d215172d-f5d6-487f-8de8-2214e2f4260c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -437,7 +440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:51:27 GMT + - Wed, 11 May 2022 03:12:29 GMT expires: - '-1' pragma: @@ -454,7 +457,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0061a331-60f0-4b69-a0ff-8041019956d5 + - 34dcfa39-38b7-43f3-bb5b-7a9d45e109b4 status: code: 200 message: OK @@ -472,9 +475,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d215172d-f5d6-487f-8de8-2214e2f4260c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -486,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:51:49 GMT + - Wed, 11 May 2022 03:12:49 GMT expires: - '-1' pragma: @@ -503,7 +506,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d3881d18-7d38-471c-b432-69e02c03ee4a + - 776b6384-7167-432a-8d7c-01e09f9ec00f status: code: 200 message: OK @@ -521,9 +524,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d215172d-f5d6-487f-8de8-2214e2f4260c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -535,7 +538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:52:29 GMT + - Wed, 11 May 2022 03:13:29 GMT expires: - '-1' pragma: @@ -552,7 +555,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 26285642-e489-4575-8c4c-ee5dc57396fb + - f2ba5839-315a-4043-a4d7-0f1228cae583 status: code: 200 message: OK @@ -570,9 +573,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d215172d-f5d6-487f-8de8-2214e2f4260c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -584,7 +587,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:53:09 GMT + - Wed, 11 May 2022 03:14:09 GMT expires: - '-1' pragma: @@ -601,7 +604,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fe563bca-a403-4e06-b3c4-4269093e48af + - e30ce88e-e65b-4cab-a473-16d96d7083d2 status: code: 200 message: OK @@ -619,9 +622,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d215172d-f5d6-487f-8de8-2214e2f4260c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -633,7 +636,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:54:30 GMT + - Wed, 11 May 2022 03:15:30 GMT expires: - '-1' pragma: @@ -650,7 +653,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 36fb2f16-6c2f-4f24-8398-94297a9aeee2 + - f6bd2499-cbac-4710-be55-bd4303c42372 status: code: 200 message: OK @@ -668,9 +671,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d215172d-f5d6-487f-8de8-2214e2f4260c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -682,7 +685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:12 GMT + - Wed, 11 May 2022 03:18:11 GMT expires: - '-1' pragma: @@ -699,7 +702,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 30f64f1b-f3f1-41d7-b307-9704a0ce7304 + - 74fc47a1-13c0-4162-8af4-dabf8036960d status: code: 200 message: OK @@ -717,28 +720,31 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n - \ \"etag\": \"W/\\\"02ec0060-41bb-48de-b3f9-4d661a1eff14\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"cac7fd8c-9d11-49dd-ad05-798c236d93f8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n - \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"Provisioning\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '874' + - '1108' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:12 GMT + - Wed, 11 May 2022 03:18:12 GMT expires: - '-1' pragma: @@ -755,7 +761,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6644e0c6-85ff-49ad-b44c-3d943a788b09 + - 7d4689d8-e25a-43c3-b5a3-8a7ec3bb8b22 status: code: 200 message: OK @@ -777,27 +783,27 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n - \ \"etag\": \"W/\\\"824e377c-bd4f-4d68-9c7f-b46cf88a8de4\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"fca4b46c-af7f-41f9-9e89-69c964ecdb06\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca4c206c-9b2d-420c-a984-44acea1eeefd?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/932de563-8902-4fdb-a14f-c1f0b88e11ba?api-version=2021-08-01 cache-control: - no-cache content-length: - - '562' + - '554' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:14 GMT + - Wed, 11 May 2022 03:18:13 GMT expires: - '-1' pragma: @@ -810,7 +816,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c10951c2-4fcf-40be-8e2a-eb3796f5b69c + - 35fb8396-f5cd-4525-9122-3028da068dab x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -830,9 +836,9 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca4c206c-9b2d-420c-a984-44acea1eeefd?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/932de563-8902-4fdb-a14f-c1f0b88e11ba?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -844,7 +850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:25 GMT + - Wed, 11 May 2022 03:18:23 GMT expires: - '-1' pragma: @@ -861,7 +867,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ff4f3760-d82b-4584-ac9e-b7fd039598ef + - ac6c8007-184f-477b-a65e-3af3da1453ed status: code: 200 message: OK @@ -879,13 +885,13 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n - \ \"etag\": \"W/\\\"61ebcc4b-6031-4ba1-ace1-5a7e345cedb5\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"a92a0785-f85b-4b2f-bdce-478d84d9fb2a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" @@ -893,13 +899,13 @@ interactions: cache-control: - no-cache content-length: - - '563' + - '555' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:25 GMT + - Wed, 11 May 2022 03:18:23 GMT etag: - - W/"61ebcc4b-6031-4ba1-ace1-5a7e345cedb5" + - W/"a92a0785-f85b-4b2f-bdce-478d84d9fb2a" expires: - '-1' pragma: @@ -916,7 +922,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4fc65265-7f67-47b0-ad44-c64eee409126 + - 71881ae9-849a-4565-8d93-6695b3b21b83 status: code: 200 message: OK @@ -938,27 +944,27 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n - \ \"etag\": \"W/\\\"15e5a4b6-ed28-49a5-8b67-64f639932306\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"96a32269-b58d-4c84-919e-6cfceac0f58c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33a282e9-9a67-494b-8030-359af48a4b15?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74fc0f40-b05d-4cbb-869b-bdffe05fcf1f?api-version=2021-08-01 cache-control: - no-cache content-length: - - '562' + - '554' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:28 GMT + - Wed, 11 May 2022 03:18:25 GMT expires: - '-1' pragma: @@ -971,7 +977,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d292a72-7fd7-4c74-8a33-d6acd8a04eb4 + - 358d4367-05c2-40ee-b647-1567bf80148f x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -991,9 +997,9 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33a282e9-9a67-494b-8030-359af48a4b15?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74fc0f40-b05d-4cbb-869b-bdffe05fcf1f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1005,7 +1011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:38 GMT + - Wed, 11 May 2022 03:18:36 GMT expires: - '-1' pragma: @@ -1022,7 +1028,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8666bc51-8415-4fbc-8dfe-8e0e40c308ca + - 73ebc114-63d5-4a74-96e0-1b6d2ae34022 status: code: 200 message: OK @@ -1040,13 +1046,13 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n - \ \"etag\": \"W/\\\"347f53ac-84fa-48b3-8d1d-c2e3c89dd428\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"2c117a1a-b745-4e1e-b7b0-9e9b7e6fac4e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" @@ -1054,13 +1060,13 @@ interactions: cache-control: - no-cache content-length: - - '563' + - '555' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:39 GMT + - Wed, 11 May 2022 03:18:36 GMT etag: - - W/"347f53ac-84fa-48b3-8d1d-c2e3c89dd428" + - W/"2c117a1a-b745-4e1e-b7b0-9e9b7e6fac4e" expires: - '-1' pragma: @@ -1077,7 +1083,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4b9a5db3-289b-4f2e-802c-91a114c03636 + - ce054c70-aa02-42b5-9a98-aa935eb86ca1 status: code: 200 message: OK @@ -1095,21 +1101,21 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T07:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T03:11:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '412' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:40 GMT + - Wed, 11 May 2022 03:18:37 GMT expires: - '-1' pragma: @@ -1137,9 +1143,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/test_s2s_vpn_gateway'' @@ -1149,11 +1155,11 @@ interactions: cache-control: - no-cache content-length: - - '297' + - '289' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:42 GMT + - Wed, 11 May 2022 03:18:38 GMT expires: - '-1' pragma: @@ -1180,19 +1186,19 @@ interactions: Connection: - keep-alive Content-Length: - - '275' + - '267' Content-Type: - application/json ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"e2d5fa80-2765-4033-877f-2a211b4b4731\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"76f3605e-10e9-4a42-a7e7-f17a4b3238cb\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n @@ -1204,15 +1210,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 cache-control: - no-cache content-length: - - '993' + - '977' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:48 GMT + - Wed, 11 May 2022 03:18:43 GMT expires: - '-1' pragma: @@ -1225,9 +1231,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4fe18d4e-d478-465f-a107-81403fd013f4 + - cc85dbe1-349a-43cd-b2cf-3031b7493bc0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -1245,9 +1251,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1259,7 +1265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:57:58 GMT + - Wed, 11 May 2022 03:18:53 GMT expires: - '-1' pragma: @@ -1276,7 +1282,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 756c138f-5c7b-458e-9ede-879599d0cb35 + - 8c067012-748d-4fc4-9202-4738af597932 status: code: 200 message: OK @@ -1294,9 +1300,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1308,7 +1314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:58:09 GMT + - Wed, 11 May 2022 03:19:03 GMT expires: - '-1' pragma: @@ -1325,7 +1331,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 58ece530-6838-4fb3-bb10-a99976b121eb + - d5472aa7-f377-4f9f-844b-047a8c593ded status: code: 200 message: OK @@ -1343,9 +1349,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1357,7 +1363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:58:29 GMT + - Wed, 11 May 2022 03:19:23 GMT expires: - '-1' pragma: @@ -1374,7 +1380,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f94bf551-0735-4c2f-9486-95b645f77336 + - 03d06c54-7a00-4ff1-9b6b-6d61748549dc status: code: 200 message: OK @@ -1392,9 +1398,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1406,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:58:50 GMT + - Wed, 11 May 2022 03:19:43 GMT expires: - '-1' pragma: @@ -1423,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2d58bc38-163a-4446-b90b-39a3ff53a223 + - d4e06f87-1285-42bc-9736-78042350518a status: code: 200 message: OK @@ -1441,9 +1447,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1455,7 +1461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 07:59:30 GMT + - Wed, 11 May 2022 03:20:24 GMT expires: - '-1' pragma: @@ -1472,7 +1478,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac01be59-ea44-4216-ba89-29a923f9f6b1 + - 18578176-bc61-479a-a0b0-7fd9412b15b5 status: code: 200 message: OK @@ -1490,9 +1496,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1504,7 +1510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:00:11 GMT + - Wed, 11 May 2022 03:21:04 GMT expires: - '-1' pragma: @@ -1521,7 +1527,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0760f8d1-44df-4561-a8f9-81ae5915d843 + - 87dd07a0-6c54-4fe6-adc8-498048786a92 status: code: 200 message: OK @@ -1539,9 +1545,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1553,7 +1559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:01:30 GMT + - Wed, 11 May 2022 03:22:24 GMT expires: - '-1' pragma: @@ -1570,7 +1576,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ec554209-a5ed-4fb5-95bf-fc621b14609c + - cbf80483-b3a9-4533-9079-ac45865e6543 status: code: 200 message: OK @@ -1588,9 +1594,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1602,7 +1608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:04:11 GMT + - Wed, 11 May 2022 03:25:05 GMT expires: - '-1' pragma: @@ -1612,14 +1618,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b002ee6b-9915-4be4-90b8-4fef8f66230b + - 9339c701-c33a-4a9d-94cb-8b39189ca5ce status: code: 200 message: OK @@ -1637,9 +1639,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1651,7 +1653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:05:52 GMT + - Wed, 11 May 2022 03:26:46 GMT expires: - '-1' pragma: @@ -1661,14 +1663,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e2a863eb-9457-4de1-9464-a5e9aae23f57 + - 040edbcf-ed89-4da3-95cf-30a024ad4715 status: code: 200 message: OK @@ -1686,9 +1684,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1700,7 +1698,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:07:33 GMT + - Wed, 11 May 2022 03:28:26 GMT expires: - '-1' pragma: @@ -1710,14 +1708,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f9d061c0-578e-4257-b014-131ba4ba37db + - 211d24ca-48d2-4e16-89e4-377632b85706 status: code: 200 message: OK @@ -1735,9 +1729,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1749,7 +1743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:09:13 GMT + - Wed, 11 May 2022 03:30:07 GMT expires: - '-1' pragma: @@ -1759,14 +1753,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 99a1d0a4-3035-4889-9058-22c86fa8785a + - 1a32558a-77b3-4ad4-bb13-9e05bfdecda6 status: code: 200 message: OK @@ -1784,9 +1774,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1798,7 +1788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:10:54 GMT + - Wed, 11 May 2022 03:31:48 GMT expires: - '-1' pragma: @@ -1808,14 +1798,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3648f525-bb84-494c-b88f-e384a09cf9dd + - 9bcd70b3-84f5-4b3e-831b-157ecf9eede9 status: code: 200 message: OK @@ -1833,9 +1819,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1847,7 +1833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:12:34 GMT + - Wed, 11 May 2022 03:33:30 GMT expires: - '-1' pragma: @@ -1857,14 +1843,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3e442ff1-a923-473a-b54f-b2560a238c3d + - 26a41579-606f-491b-992e-1ffc4b6206a7 status: code: 200 message: OK @@ -1882,9 +1864,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1896,7 +1878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:14:15 GMT + - Wed, 11 May 2022 03:35:11 GMT expires: - '-1' pragma: @@ -1906,14 +1888,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 53dff98a-941c-4a5a-8b97-c2be102b81a6 + - 693d1758-0f86-4f06-8c98-b2c2db19e82c status: code: 200 message: OK @@ -1931,9 +1909,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1945,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:15:55 GMT + - Wed, 11 May 2022 03:36:51 GMT expires: - '-1' pragma: @@ -1955,14 +1933,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 61c4bfbe-9d24-4fa9-892e-9e77e8e61bc5 + - d684fc58-d9c6-471d-92d4-1ccb50cd7d44 status: code: 200 message: OK @@ -1980,9 +1954,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1994,7 +1968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:17:36 GMT + - Wed, 11 May 2022 03:38:31 GMT expires: - '-1' pragma: @@ -2004,14 +1978,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb7aefc1-220e-46e6-a7c6-cb8cb1a3b05c + - 0500a123-1adf-41af-93cf-0f9c5bdedeff status: code: 200 message: OK @@ -2029,9 +1999,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2043,7 +2013,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:19:15 GMT + - Wed, 11 May 2022 03:40:11 GMT expires: - '-1' pragma: @@ -2060,7 +2030,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2e5edc47-3071-40dc-b620-6d063f6c4a26 + - ef84cb29-0d3f-46e2-bed3-ebc9610dba34 status: code: 200 message: OK @@ -2078,9 +2048,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2092,7 +2062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:20:57 GMT + - Wed, 11 May 2022 03:41:55 GMT expires: - '-1' pragma: @@ -2109,7 +2079,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b221b461-8270-4f99-97e0-23e51b859501 + - 6981fc9e-dde8-48e7-9ae6-1a285b56a52b status: code: 200 message: OK @@ -2127,9 +2097,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2141,7 +2111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:22:37 GMT + - Wed, 11 May 2022 03:43:35 GMT expires: - '-1' pragma: @@ -2158,7 +2128,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 38ce8dd8-9aab-4a54-a279-25b03baa08e3 + - 370b3c9f-a0f6-45fd-b535-3f11ca0f102d status: code: 200 message: OK @@ -2176,9 +2146,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2190,7 +2160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:24:18 GMT + - Wed, 11 May 2022 03:45:15 GMT expires: - '-1' pragma: @@ -2207,7 +2177,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7b9fe5b0-f1a9-4ef1-a8b8-b4a440c4d07b + - 2798b2d5-4a63-4ace-baca-854cd5dfa8de status: code: 200 message: OK @@ -2225,9 +2195,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2239,7 +2209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:25:59 GMT + - Wed, 11 May 2022 03:46:56 GMT expires: - '-1' pragma: @@ -2249,14 +2219,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a09dbacc-0308-4d99-8033-6b0f818b2ab1 + - 5ad6086d-3829-41c9-95c5-418cb27ba5e1 status: code: 200 message: OK @@ -2274,9 +2240,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/496b9e7c-1bd9-4f54-b5bc-dc6a7e5b7cbe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2288,7 +2254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:27:39 GMT + - Wed, 11 May 2022 03:48:37 GMT expires: - '-1' pragma: @@ -2298,14 +2264,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73e5e6c1-a263-4691-9c60-391cd14b46e8 + - d00e52b2-6666-4cf0-a787-ed70a7665b49 status: code: 200 message: OK @@ -2323,13 +2285,13 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"0641d765-071a-4968-8d62-55bd1fbea8cd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1af3806d-b9ee-4919-b0c3-a91ac36c949a\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n @@ -2337,27 +2299,27 @@ interactions: 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.83.91.250\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.237.248.220\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.83.92.88\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.237.248.181\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"13.83.91.250\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.248.220\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.83.92.88\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.248.181\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1868' + - '1862' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:27:40 GMT + - Wed, 11 May 2022 03:48:37 GMT expires: - '-1' pragma: @@ -2367,14 +2329,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 35e6c3d6-aafd-4ce4-b3a4-588298d38c48 + - 7dc65f8c-a1be-4b36-b09f-07b601db59df status: code: 200 message: OK @@ -2390,23 +2348,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T07:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T03:11:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '412' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:27:42 GMT + - Wed, 11 May 2022 03:48:38 GMT expires: - '-1' pragma: @@ -2422,8 +2380,8 @@ interactions: message: OK - request: body: '{"location": "westus", "properties": {"deviceProperties": {}, "addressSpace": - {}, "vpnSiteLinks": [{"name": "remote_vpn_site_1", "properties": {"ipAddress": - "10.0.1.110"}}]}}' + {"addressPrefixes": ["10.0.2.0/24"]}, "vpnSiteLinks": [{"name": "remote_vpn_site_1", + "properties": {"ipAddress": "10.0.2.110"}}]}}' headers: Accept: - application/json @@ -2434,45 +2392,45 @@ interactions: Connection: - keep-alive Content-Length: - - '174' + - '208' Content-Type: - application/json ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"fc77d023-621e-4b1f-9e3f-da17fcb5e022\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3c51bd1a-fe5c-4945-95ac-1619ad647ca5\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"fc77d023-621e-4b1f-9e3f-da17fcb5e022\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"3c51bd1a-fe5c-4945-95ac-1619ad647ca5\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\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/5ce0e464-8450-4ec9-a492-114362f3bbfc?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f109409-c1fe-4ba5-8a97-2ba2585233c1?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1384' + - '1399' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:27:48 GMT + - Wed, 11 May 2022 03:48:44 GMT expires: - '-1' pragma: @@ -2485,9 +2443,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b4c17c7f-32b1-48f1-88e1-9852efb065d1 + - 023a8e9d-3553-42f3-b255-9b378308897a x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -2503,11 +2461,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ce0e464-8450-4ec9-a492-114362f3bbfc?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f109409-c1fe-4ba5-8a97-2ba2585233c1?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2519,7 +2477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:27:58 GMT + - Wed, 11 May 2022 03:48:54 GMT expires: - '-1' pragma: @@ -2536,7 +2494,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2837d2cd-f026-49ac-a1fe-bb66cc477918 + - 7c24bd22-6f32-4b58-bcf3-b5377da07b7d status: code: 200 message: OK @@ -2552,11 +2510,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ce0e464-8450-4ec9-a492-114362f3bbfc?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f109409-c1fe-4ba5-8a97-2ba2585233c1?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2568,7 +2526,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:08 GMT + - Wed, 11 May 2022 03:49:04 GMT expires: - '-1' pragma: @@ -2585,7 +2543,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 10084b7e-0261-4fc7-8d52-595d47575153 + - 67f7b204-a828-441b-8c4b-21c1b11da037 status: code: 200 message: OK @@ -2601,39 +2559,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"1ef5a61b-9e6c-4079-885c-225c491c30a5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"77143d8d-c14b-428a-8f61-825164dff492\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"1ef5a61b-9e6c-4079-885c-225c491c30a5\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"77143d8d-c14b-428a-8f61-825164dff492\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1386' + - '1401' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:09 GMT + - Wed, 11 May 2022 03:49:05 GMT etag: - - W/"1ef5a61b-9e6c-4079-885c-225c491c30a5" + - W/"77143d8d-c14b-428a-8f61-825164dff492" expires: - '-1' pragma: @@ -2650,7 +2608,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e48a40ac-fd61-4ce2-8f4b-7f3c1b0576d4 + - b0000ab5-55c9-4af2-aafc-fe456404158a status: code: 200 message: OK @@ -2666,39 +2624,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"1ef5a61b-9e6c-4079-885c-225c491c30a5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"77143d8d-c14b-428a-8f61-825164dff492\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"1ef5a61b-9e6c-4079-885c-225c491c30a5\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"77143d8d-c14b-428a-8f61-825164dff492\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1386' + - '1401' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:10 GMT + - Wed, 11 May 2022 03:49:06 GMT etag: - - W/"1ef5a61b-9e6c-4079-885c-225c491c30a5" + - W/"77143d8d-c14b-428a-8f61-825164dff492" expires: - '-1' pragma: @@ -2715,18 +2673,20 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 950403db-c3f4-4e38-92fb-59e1f8c5c485 + - 1aa96d2b-76a7-40c9-aef7-f1d2b93412bf status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": - 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", + 0}, "addressSpace": {"addressPrefixes": ["10.0.2.0/24"]}, "isSecuritySite": + false, "vpnSiteLinks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": - 0}, "ipAddress": "10.0.1.110"}}, {"name": "VPN-Site-Link1", "properties": {"ipAddress": - "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.1.0"}}}]}}' + 0}, "ipAddress": "10.0.2.110"}}, {"name": "VPN-Site-Link1", "properties": {"ipAddress": + "10.0.2.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.1.0"}}}], + "o365Policy": {"breakOutCategories": {"allow": false, "optimize": false, "default": + false}}}}' headers: Accept: - application/json @@ -2737,36 +2697,36 @@ interactions: Connection: - keep-alive Content-Length: - - '866' + - '956' Content-Type: - application/json ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"2f1e6d1b-5131-46d5-abca-ab4535e277d4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"cb7ea1a1-1b1a-449c-b046-e1317d843010\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"2f1e6d1b-5131-46d5-abca-ab4535e277d4\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"cb7ea1a1-1b1a-449c-b046-e1317d843010\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"2f1e6d1b-5131-46d5-abca-ab4535e277d4\\\"\",\r\n + \ \"etag\": \"W/\\\"cb7ea1a1-1b1a-449c-b046-e1317d843010\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.2.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -2775,15 +2735,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0fa1307-a1b6-48e1-960e-40dff306c881?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ff74677-a16a-4a1a-8f9c-0085f9dd8061?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2119' + - '2126' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:11 GMT + - Wed, 11 May 2022 03:49:06 GMT expires: - '-1' pragma: @@ -2800,9 +2760,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12dd7013-aebf-4284-aa7c-7fc5c80f2951 + - 68bd98c9-7410-4713-ad2c-e961ad237f78 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2818,11 +2778,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0fa1307-a1b6-48e1-960e-40dff306c881?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ff74677-a16a-4a1a-8f9c-0085f9dd8061?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2834,7 +2794,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:21 GMT + - Wed, 11 May 2022 03:49:17 GMT expires: - '-1' pragma: @@ -2851,7 +2811,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1531bd0a-c9cb-44ff-9e71-1590ea9f112d + - d61150f8-ed97-4681-b8f8-ec831eaacf2e status: code: 200 message: OK @@ -2867,11 +2827,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0fa1307-a1b6-48e1-960e-40dff306c881?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ff74677-a16a-4a1a-8f9c-0085f9dd8061?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2883,7 +2843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:31 GMT + - Wed, 11 May 2022 03:49:27 GMT expires: - '-1' pragma: @@ -2900,7 +2860,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6994e7a9-c81c-4154-9a7d-7f53b820bdc0 + - 9683c1f2-f1f3-4cc9-b91d-c1ad49196137 status: code: 200 message: OK @@ -2916,32 +2876,32 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"8cf15b39-7eb0-42bf-861f-b5714d7d929c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"39f35aa1-b43c-48ed-b758-c710ebf0e426\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"8cf15b39-7eb0-42bf-861f-b5714d7d929c\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"39f35aa1-b43c-48ed-b758-c710ebf0e426\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"8cf15b39-7eb0-42bf-861f-b5714d7d929c\\\"\",\r\n + \ \"etag\": \"W/\\\"39f35aa1-b43c-48ed-b758-c710ebf0e426\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.2.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -2950,13 +2910,13 @@ interactions: cache-control: - no-cache content-length: - - '2122' + - '2129' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:32 GMT + - Wed, 11 May 2022 03:49:27 GMT etag: - - W/"8cf15b39-7eb0-42bf-861f-b5714d7d929c" + - W/"39f35aa1-b43c-48ed-b758-c710ebf0e426" expires: - '-1' pragma: @@ -2973,7 +2933,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2effc7c5-7f18-402b-8269-b0a83ab9ac18 + - f7446e4a-bf16-447c-aed9-b9e55f066089 status: code: 200 message: OK @@ -2995,21 +2955,21 @@ interactions: Connection: - keep-alive Content-Length: - - '1460' + - '1420' Content-Type: - application/json ParameterSetName: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"e5aac739-24eb-45f1-9bdf-bca73f8d3265\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bf1c1b6c-8672-4498-8f79-f1f0c8754ca5\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3022,7 +2982,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"e5aac739-24eb-45f1-9bdf-bca73f8d3265\\\"\",\r\n + \ \"etag\": \"W/\\\"bf1c1b6c-8672-4498-8f79-f1f0c8754ca5\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3031,21 +2991,21 @@ interactions: \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n - \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd164810-ddf2-4c29-a34a-75ea971e1419?api-version=2021-08-01 cache-control: - no-cache content-length: - - '3403' + - '3394' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:35 GMT + - Wed, 11 May 2022 03:49:29 GMT expires: - '-1' pragma: @@ -3058,9 +3018,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9cbb9b6e-f8eb-4a37-a668-93b8a8380502 + - 4782412a-ded4-40c0-b308-7048f0a9b6c0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -3079,9 +3039,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd164810-ddf2-4c29-a34a-75ea971e1419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3093,7 +3053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:45 GMT + - Wed, 11 May 2022 03:49:39 GMT expires: - '-1' pragma: @@ -3110,7 +3070,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 10b4474c-5dd2-46c0-89ab-9f4e639f4e38 + - fb933762-8d92-470b-970e-70ff4aaa930a status: code: 200 message: OK @@ -3129,9 +3089,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd164810-ddf2-4c29-a34a-75ea971e1419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3143,7 +3103,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:28:56 GMT + - Wed, 11 May 2022 03:49:50 GMT expires: - '-1' pragma: @@ -3160,7 +3120,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dbcc00db-cb27-421d-9400-79ad45a42503 + - fe25b948-300a-4e82-a868-09e60aa99094 status: code: 200 message: OK @@ -3179,9 +3139,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd164810-ddf2-4c29-a34a-75ea971e1419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3193,7 +3153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:29:16 GMT + - Wed, 11 May 2022 03:50:10 GMT expires: - '-1' pragma: @@ -3210,7 +3170,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92b1ec42-fe8e-4887-b8d7-2aed53fd0504 + - 840b2a19-9e71-45ca-90bb-6593b135a860 status: code: 200 message: OK @@ -3229,9 +3189,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd164810-ddf2-4c29-a34a-75ea971e1419?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3243,7 +3203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:29:56 GMT + - Wed, 11 May 2022 03:50:50 GMT expires: - '-1' pragma: @@ -3260,7 +3220,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d944c4ad-1d88-41ea-9455-c6be85a140e5 + - 109caa9f-9d44-4d02-9547-6bbddbf5e9e3 status: code: 200 message: OK @@ -3279,14 +3239,14 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"9555d5fd-7faf-40a0-82a5-7a6c045dad36\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8c21f172-da0a-430f-a6be-c347244eba6f\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3299,7 +3259,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"9555d5fd-7faf-40a0-82a5-7a6c045dad36\\\"\",\r\n + \ \"etag\": \"W/\\\"8c21f172-da0a-430f-a6be-c347244eba6f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3309,18 +3269,19 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3447' + - '3438' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:29:57 GMT + - Wed, 11 May 2022 03:50:50 GMT expires: - '-1' pragma: @@ -3337,7 +3298,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 97cbda4c-96fb-43f1-b113-fe7bfc5b424e + - 6bfb5ca1-6509-4283-b3fd-40b994a8a2ef status: code: 200 message: OK @@ -3353,16 +3314,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + - -g --connection-name --gateway-name -n --vpn-site-link --vpn-connection-protocol-type User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"9555d5fd-7faf-40a0-82a5-7a6c045dad36\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8c21f172-da0a-430f-a6be-c347244eba6f\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3375,7 +3336,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"9555d5fd-7faf-40a0-82a5-7a6c045dad36\\\"\",\r\n + \ \"etag\": \"W/\\\"8c21f172-da0a-430f-a6be-c347244eba6f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3385,18 +3346,19 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3447' + - '3438' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:30:00 GMT + - Wed, 11 May 2022 03:50:52 GMT expires: - '-1' pragma: @@ -3413,7 +3375,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c3dcf23c-8561-4cba-bb20-8fbd49ecf1bd + - 5372bc3a-10b9-4ea8-bdc8-beedb0c16c83 status: code: 200 message: OK @@ -3424,10 +3386,11 @@ interactions: "enableInternetSecurity": false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, - "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": - 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": - [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}, {"name": - "Connection-Link1", "properties": {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1"}, + "routingWeight": 0, "vpnLinkConnectionMode": "Default", "vpnConnectionProtocolType": + "IKEv2", "connectionBandwidth": 10, "enableBgp": false, "vpnGatewayCustomBgpAddresses": + [], "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": [], "enableRateLimiting": + false, "useLocalAzureIpAddress": false}}, {"name": "Connection-Link1", "properties": + {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1"}, "vpnConnectionProtocolType": "IKEv2"}}], "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, @@ -3443,20 +3406,20 @@ interactions: Connection: - keep-alive Content-Length: - - '2665' + - '2673' Content-Type: - application/json ParameterSetName: - - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + - -g --connection-name --gateway-name -n --vpn-site-link --vpn-connection-protocol-type User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"90125fb2-2347-4234-b21f-814978dd3eb6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ae69d146-b768-4381-bb88-ea1da0ce2a18\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3469,7 +3432,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"90125fb2-2347-4234-b21f-814978dd3eb6\\\"\",\r\n + \ \"etag\": \"W/\\\"ae69d146-b768-4381-bb88-ea1da0ce2a18\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3478,10 +3441,11 @@ interactions: \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n - \ {\r\n \"name\": \"Connection-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/Connection-Link1\",\r\n - \ \"etag\": \"W/\\\"90125fb2-2347-4234-b21f-814978dd3eb6\\\"\",\r\n + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ },\r\n {\r\n \"name\": \"Connection-Link1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/Connection-Link1\",\r\n + \ \"etag\": \"W/\\\"ae69d146-b768-4381-bb88-ea1da0ce2a18\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3490,21 +3454,21 @@ interactions: \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n - \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/434fb4d2-2e4a-46b7-91b0-efd40290654f?api-version=2021-08-01 cache-control: - no-cache content-length: - - '4810' + - '4832' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:30:00 GMT + - Wed, 11 May 2022 03:50:53 GMT expires: - '-1' pragma: @@ -3521,9 +3485,58 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7386b1ab-12f2-4bb3-9938-d5ac7f3fa4d9 + - 4bacc27f-4c1c-483b-9747-1f652463918d x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn add + Connection: + - keep-alive + ParameterSetName: + - -g --connection-name --gateway-name -n --vpn-site-link --vpn-connection-protocol-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/434fb4d2-2e4a-46b7-91b0-efd40290654f?api-version=2021-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: + - Wed, 11 May 2022 03:51: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: + - 45522b3b-80cc-4688-a2b2-917394bee249 status: code: 200 message: OK @@ -3539,11 +3552,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + - -g --connection-name --gateway-name -n --vpn-site-link --vpn-connection-protocol-type User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/434fb4d2-2e4a-46b7-91b0-efd40290654f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3555,7 +3568,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:30:11 GMT + - Wed, 11 May 2022 03:51:13 GMT expires: - '-1' pragma: @@ -3572,7 +3585,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7ee9529d-c182-45d9-b6e8-22017481de9d + - 5e0acabb-309a-4737-9d6b-a1fc0653ea6d status: code: 200 message: OK @@ -3588,11 +3601,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + - -g --connection-name --gateway-name -n --vpn-site-link --vpn-connection-protocol-type User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/434fb4d2-2e4a-46b7-91b0-efd40290654f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3604,7 +3617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:30:21 GMT + - Wed, 11 May 2022 03:51:34 GMT expires: - '-1' pragma: @@ -3621,7 +3634,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 061c3032-1bf8-4e5b-a0d0-40fa260c442e + - 28cd4035-7fd6-4ad4-bc20-00245e223db8 status: code: 200 message: OK @@ -3637,11 +3650,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + - -g --connection-name --gateway-name -n --vpn-site-link --vpn-connection-protocol-type User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/434fb4d2-2e4a-46b7-91b0-efd40290654f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3653,7 +3666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:30:42 GMT + - Wed, 11 May 2022 03:52:14 GMT expires: - '-1' pragma: @@ -3670,7 +3683,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9bb8dcb0-d1c5-40b1-9130-f1036cc177a2 + - ee5d37ba-e1fa-413f-ab33-ad279b2287ba status: code: 200 message: OK @@ -3686,11 +3699,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + - -g --connection-name --gateway-name -n --vpn-site-link --vpn-connection-protocol-type User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/434fb4d2-2e4a-46b7-91b0-efd40290654f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3702,7 +3715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:31:22 GMT + - Wed, 11 May 2022 03:53:35 GMT expires: - '-1' pragma: @@ -3719,7 +3732,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a6d92a5b-89dc-4263-8abc-1a1176127b69 + - 9de71fb9-3cee-4ad6-8172-0efec2ec50d1 status: code: 200 message: OK @@ -3735,16 +3748,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + - -g --connection-name --gateway-name -n --vpn-site-link --vpn-connection-protocol-type User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d217ccbd-b46d-4236-a4db-32e6a81d7ed3\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3757,7 +3770,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"etag\": \"W/\\\"d217ccbd-b46d-4236-a4db-32e6a81d7ed3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3767,10 +3780,11 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ },\r\n {\r\n \"name\": \"Connection-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/Connection-Link1\",\r\n - \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"etag\": \"W/\\\"d217ccbd-b46d-4236-a4db-32e6a81d7ed3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3780,18 +3794,19 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4897' + - '4919' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:31:23 GMT + - Wed, 11 May 2022 03:53:36 GMT expires: - '-1' pragma: @@ -3808,7 +3823,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 96dd7474-6ccf-42e9-8aae-7efb1bc98a86 + - 4112e24a-220e-493a-87e3-9a6dc1de6457 status: code: 200 message: OK @@ -3824,16 +3839,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name + - -g --connection-name --gateway-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d217ccbd-b46d-4236-a4db-32e6a81d7ed3\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3846,7 +3861,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"etag\": \"W/\\\"d217ccbd-b46d-4236-a4db-32e6a81d7ed3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3856,10 +3871,11 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ },\r\n {\r\n \"name\": \"Connection-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/Connection-Link1\",\r\n - \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"etag\": \"W/\\\"d217ccbd-b46d-4236-a4db-32e6a81d7ed3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3869,18 +3885,19 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4897' + - '4919' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:31:26 GMT + - Wed, 11 May 2022 03:53:37 GMT expires: - '-1' pragma: @@ -3897,7 +3914,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dcf5f5a1-bbfd-4f41-8dac-de76a1471ec3 + - 7dbd7733-e27b-40b9-95a4-24b3af546cfb status: code: 200 message: OK @@ -3913,16 +3930,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --index + - -g --connection-name --gateway-name --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d217ccbd-b46d-4236-a4db-32e6a81d7ed3\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3935,7 +3952,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"etag\": \"W/\\\"d217ccbd-b46d-4236-a4db-32e6a81d7ed3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3945,10 +3962,11 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ },\r\n {\r\n \"name\": \"Connection-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/Connection-Link1\",\r\n - \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"etag\": \"W/\\\"d217ccbd-b46d-4236-a4db-32e6a81d7ed3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3958,18 +3976,19 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4897' + - '4919' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:31:28 GMT + - Wed, 11 May 2022 03:53:39 GMT expires: - '-1' pragma: @@ -3986,7 +4005,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2cb208fe-8799-4977-b2df-3985d0a8305f + - 15f14384-1a59-494c-a8a7-984a20330743 status: code: 200 message: OK @@ -3997,10 +4016,11 @@ interactions: "enableInternetSecurity": false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, - "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": - 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": - [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}], "routingConfiguration": - {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "routingWeight": 0, "vpnLinkConnectionMode": "Default", "vpnConnectionProtocolType": + "IKEv2", "connectionBandwidth": 10, "enableBgp": false, "vpnGatewayCustomBgpAddresses": + [], "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": [], "enableRateLimiting": + false, "useLocalAzureIpAddress": false}}], "routingConfiguration": {"associatedRouteTable": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, "vnetRoutes": {"staticRoutes": []}}}}' @@ -4014,20 +4034,20 @@ interactions: Connection: - keep-alive Content-Length: - - '2329' + - '2345' Content-Type: - application/json ParameterSetName: - - -g -n --gateway-name --index + - -g --connection-name --gateway-name --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"ff8c3ab5-a727-4214-8bce-bb26ef4d0064\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"53d95f3b-8a5c-4d3e-8e29-ec608ebbde9f\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -4040,7 +4060,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"ff8c3ab5-a727-4214-8bce-bb26ef4d0064\\\"\",\r\n + \ \"etag\": \"W/\\\"53d95f3b-8a5c-4d3e-8e29-ec608ebbde9f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -4049,21 +4069,21 @@ interactions: \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n - \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1dec2813-5a93-4b1c-95c0-c99df5f0965f?api-version=2021-08-01 cache-control: - no-cache content-length: - - '3403' + - '3394' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:31:29 GMT + - Wed, 11 May 2022 03:53:39 GMT expires: - '-1' pragma: @@ -4080,9 +4100,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0042e9cf-be03-4c52-91bc-0d2976fd1048 + - 2394adb6-164c-4d26-ae95-83f71e6c09b3 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -4098,11 +4118,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --index + - -g --connection-name --gateway-name --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1dec2813-5a93-4b1c-95c0-c99df5f0965f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4114,7 +4134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:31:39 GMT + - Wed, 11 May 2022 03:53:50 GMT expires: - '-1' pragma: @@ -4131,7 +4151,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9e0461d9-0df6-4040-befe-6bad569fddc1 + - e9b1e1d8-42d4-4e2a-a187-373945e5470d status: code: 200 message: OK @@ -4147,11 +4167,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --index + - -g --connection-name --gateway-name --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1dec2813-5a93-4b1c-95c0-c99df5f0965f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4163,7 +4183,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:31:49 GMT + - Wed, 11 May 2022 03:54:00 GMT expires: - '-1' pragma: @@ -4180,7 +4200,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 78324e59-5f32-4a03-a889-2ffd7428fecb + - 570a1a53-a8ed-4115-b0d5-bf4c7d954a06 status: code: 200 message: OK @@ -4196,11 +4216,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --index + - -g --connection-name --gateway-name --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1dec2813-5a93-4b1c-95c0-c99df5f0965f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4212,7 +4232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:32:10 GMT + - Wed, 11 May 2022 03:54:21 GMT expires: - '-1' pragma: @@ -4229,7 +4249,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c9d34075-11a1-48c3-acee-fbd16de3aad8 + - e56a9a9c-1c5b-4ab5-8412-2aa98cc6d9c8 status: code: 200 message: OK @@ -4245,11 +4265,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --index + - -g --connection-name --gateway-name --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1dec2813-5a93-4b1c-95c0-c99df5f0965f?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -4261,7 +4281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:32:50 GMT + - Wed, 11 May 2022 03:55:01 GMT expires: - '-1' pragma: @@ -4278,7 +4298,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 35f5b1cc-ce51-4cba-9499-e89b537a32e3 + - d5c1026a-1295-485d-a7e9-88c67cefe867 status: code: 200 message: OK @@ -4294,269 +4314,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --gateway-name --index - User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": - {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n - \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n - \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n - \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": - []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n - \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n - \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": - [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": - 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": - \"None\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"enableBgp\": - false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": - false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": - 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n - \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": - 0\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3452' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 15 Nov 2021 08:32: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: - - 6cdf49b6-3eef-4511-9f46-72c6f28d7edd - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vpn-gateway connection ipsec-policy add - Connection: - - keep-alive - ParameterSetName: - - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime - --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group - User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n - \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n - \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": - {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n - \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": - [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n - \ \"ids\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n - \ }\r\n ]\r\n },\r\n \"vnetRoutes\": - {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n - \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n - \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": - \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n - \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": - [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": - 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": - \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": - false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": - false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n - \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n - \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n - \ \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n - \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n - \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": - 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n - \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.83.91.250\",\r\n \"10.0.1.4\"\r\n ]\r\n - \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n - \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"13.83.92.88\",\r\n \"10.0.1.5\"\r\n ]\r\n - \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": - \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"13.83.91.250\",\r\n \"privateIpAddress\": - \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"13.83.92.88\",\r\n \"privateIpAddress\": - \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": - false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '5665' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 15 Nov 2021 08:32: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: - - 075af2a4-e154-4d93-a9a2-a18db5b7c3ca - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway", - "location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub"}, - "connections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection", - "name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": {"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, - "ipsecPolicies": [{"saLifeTimeSeconds": 86471, "saDataSizeKilobytes": 429496, - "ipsecEncryption": "AES256", "ipsecIntegrity": "SHA256", "ikeEncryption": "AES256", - "ikeIntegrity": "SHA384", "dhGroup": "DHGroup14", "pfsGroup": "PFS14"}], "enableInternetSecurity": - false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", - "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, - "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": - 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": - [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}], "routingConfiguration": - {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, - "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, - "vnetRoutes": {"staticRoutes": []}}}}], "bgpSettings": {"asn": 65515, "peerWeight": - 0, "bgpPeeringAddresses": [{"ipconfigurationId": "Instance0", "customBgpIpAddresses": - []}, {"ipconfigurationId": "Instance1", "customBgpIpAddresses": []}]}, "vpnGatewayScaleUnit": - 1}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vpn-gateway connection ipsec-policy add - Connection: - - keep-alive - Content-Length: - - '3279' - Content-Type: - - application/json - ParameterSetName: - - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime - --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group - User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 - response: - body: - string: "{\r\n \"error\": {\r\n \"code\": \"VpnConnectionPropertyIsDeprecated\",\r\n - \ \"message\": \"Update request for VpnConnection /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection - contains deprecated property IpsecPolicies. Please use corresponding VpnSiteLinkConnection - property instead.\",\r\n \"details\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '504' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 15 Nov 2021 08:32:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5dea340f-c214-4743-83ed-44100d5b0eda - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vpn-gateway connection vpn-site-link-conn ipsec-policy add - Connection: - - keep-alive - ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity - --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + - -g --connection-name --gateway-name --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ced4218d-155c-4ca7-9ef8-29c72c4fba86\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -4569,7 +4336,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n + \ \"etag\": \"W/\\\"ced4218d-155c-4ca7-9ef8-29c72c4fba86\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -4579,18 +4346,19 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3452' + - '3443' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 08:32:55 GMT + - Wed, 11 May 2022 03:55:02 GMT expires: - '-1' pragma: @@ -4607,7 +4375,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b017a15d-0399-4a9f-bae7-1397cd267a1b + - e4fd26cd-5475-4143-86e2-ead339e7240a status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_site_link_conn_ipsec_policy.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_site_link_conn_ipsec_policy.yaml index 0378a8a357f..7803575ec0f 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_site_link_conn_ipsec_policy.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_site_link_conn_ipsec_policy.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T09:26:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T04:01:14Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '392' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:27:05 GMT + - Wed, 11 May 2022 04:01:16 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n - \ \"etag\": \"W/\\\"b6dffa7d-b293-4d9a-a214-8d9ff0a34daa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b58e0709-abd0-4678-8a6b-7c3d8c5065f5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79fbc6ce-1ccd-4fbe-bc14-0cc14a0d9b19?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9410d60f-308e-4179-aa3e-c4a5b6abf0c7?api-version=2021-08-01 cache-control: - no-cache content-length: - - '569' + - '551' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:27:12 GMT + - Wed, 11 May 2022 04:01:23 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 785baaf8-5b04-4aeb-a218-7b1a87fdc86c + - 82f5f634-3d00-4574-af2b-83783ce9c3fd x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79fbc6ce-1ccd-4fbe-bc14-0cc14a0d9b19?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9410d60f-308e-4179-aa3e-c4a5b6abf0c7?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:27:23 GMT + - Wed, 11 May 2022 04:01:33 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2999b2e-f1fc-4407-9d37-ed6f2aaccb52 + - e8dee9e4-8c74-48b4-bfdc-01a26ff7978b status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n - \ \"etag\": \"W/\\\"48b1b235-2f1f-44f4-b3ab-876d64bbb8c3\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"da71b097-9092-42a4-bcdb-185fb1bff313\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '570' + - '552' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:27:23 GMT + - Wed, 11 May 2022 04:01:33 GMT etag: - - W/"48b1b235-2f1f-44f4-b3ab-876d64bbb8c3" + - W/"da71b097-9092-42a4-bcdb-185fb1bff313" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6edea1ff-5a4f-473c-9600-3681bb23c0b5 + - 77420ec1-8475-4f70-a3e6-3dd1afdd5467 status: code: 200 message: OK @@ -220,29 +220,27 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T09:26:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T04:01:14Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '392' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:27:24 GMT + - Wed, 11 May 2022 04:01:34 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -261,38 +259,41 @@ interactions: Connection: - keep-alive Content-Length: - - '288' + - '270' Content-Type: - application/json ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n - \ \"etag\": \"W/\\\"410ba271-6721-4174-b10e-b5d1ec212346\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"07e8e093-e926-4b11-a4a8-df61d46eeba3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n - \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"None\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\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/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1758a041-0313-4943-b365-737340a386e5?api-version=2021-08-01 cache-control: - no-cache content-length: - - '865' + - '1079' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:27:33 GMT + - Wed, 11 May 2022 04:01:40 GMT expires: - '-1' pragma: @@ -305,9 +306,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee315491-461a-40ce-9262-56fb0bd9c9a5 + - 7c152609-eb22-4b11-be65-c44ccd77c090 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -325,58 +326,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 15 Nov 2021 09:27: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: - - eed7dd12-293e-4682-be28-02439b49711b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix - User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1758a041-0313-4943-b365-737340a386e5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -388,7 +340,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:27:53 GMT + - Wed, 11 May 2022 04:01:51 GMT expires: - '-1' pragma: @@ -405,7 +357,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5ffadbd-477b-44ac-978c-67371b9db631 + - d54e208c-907e-4b6f-99e3-ef6c2e0783b9 status: code: 200 message: OK @@ -423,9 +375,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1758a041-0313-4943-b365-737340a386e5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -437,7 +389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:28:13 GMT + - Wed, 11 May 2022 04:02:01 GMT expires: - '-1' pragma: @@ -454,7 +406,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a3a7b29a-d9d6-4585-af10-68b68e79a5d7 + - 056633ae-d240-4b4e-a56f-69f56e582080 status: code: 200 message: OK @@ -472,9 +424,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1758a041-0313-4943-b365-737340a386e5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -486,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:28:34 GMT + - Wed, 11 May 2022 04:02:21 GMT expires: - '-1' pragma: @@ -503,7 +455,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cec62125-d357-4a6d-a42d-1aa92ff078b4 + - 28996e24-624d-439b-857f-6a8343488c8d status: code: 200 message: OK @@ -521,9 +473,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1758a041-0313-4943-b365-737340a386e5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -535,7 +487,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:29:14 GMT + - Wed, 11 May 2022 04:02:42 GMT expires: - '-1' pragma: @@ -552,7 +504,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b9451b4f-1091-4b1b-abec-4a767c221458 + - f99aeee8-3cde-4e3f-a004-542015dbb282 status: code: 200 message: OK @@ -570,9 +522,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1758a041-0313-4943-b365-737340a386e5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -584,7 +536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:29:54 GMT + - Wed, 11 May 2022 04:03:22 GMT expires: - '-1' pragma: @@ -601,7 +553,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9cc45ee3-49dd-40b0-bf34-fdb524ba1c0a + - 81bde987-00bf-456d-87a3-1dd917c2159b status: code: 200 message: OK @@ -619,9 +571,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1758a041-0313-4943-b365-737340a386e5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -633,7 +585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:31:15 GMT + - Wed, 11 May 2022 04:04:03 GMT expires: - '-1' pragma: @@ -650,7 +602,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2f64eb44-7bb9-43c8-86c2-58327b45eefa + - 1fd1226f-941d-4202-9449-e02382462f79 status: code: 200 message: OK @@ -668,9 +620,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1758a041-0313-4943-b365-737340a386e5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -682,7 +634,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:33:56 GMT + - Wed, 11 May 2022 04:05:23 GMT expires: - '-1' pragma: @@ -699,7 +651,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fed0337b-5133-4ce6-bc8f-61c70d8ab9ed + - 1dffbf96-216d-4c80-a77a-2c976b7d1937 status: code: 200 message: OK @@ -717,28 +669,31 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n - \ \"etag\": \"W/\\\"d9010b08-f38e-4cb8-bb75-2e28d8165b19\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"89400c17-6a7b-4513-839a-e4e7fb43cfa9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\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_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n - \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"Provisioning\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '874' + - '1088' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:33:56 GMT + - Wed, 11 May 2022 04:05:23 GMT expires: - '-1' pragma: @@ -755,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d9b3de65-d7c7-4d35-bb97-d97955d4e128 + - 3d630536-f6ea-4818-8ef6-eb882b883e61 status: code: 200 message: OK @@ -777,27 +732,27 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n - \ \"etag\": \"W/\\\"c2e45c99-1b85-4d67-9e9d-9658aecbc57d\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"92322df9-6b3b-4438-9315-9eb129fb2d90\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6a6a0b2-7cbd-4f7d-a51e-cf8ea76b0af6?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6c1f698f-ea61-47e4-8f60-be9b6445c300?api-version=2021-08-01 cache-control: - no-cache content-length: - - '562' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:33:58 GMT + - Wed, 11 May 2022 04:05:25 GMT expires: - '-1' pragma: @@ -810,7 +765,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60a91cde-a6b1-4fe7-9f99-3a5784545727 + - 0c8385d6-76ba-4112-b02f-c00ba15eb805 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -830,9 +785,9 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6a6a0b2-7cbd-4f7d-a51e-cf8ea76b0af6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6c1f698f-ea61-47e4-8f60-be9b6445c300?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -844,7 +799,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:09 GMT + - Wed, 11 May 2022 04:05:35 GMT expires: - '-1' pragma: @@ -854,14 +809,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9d5bc2a9-6430-47e6-94ba-c693834c9d08 + - bb184852-202f-4886-b9a9-abebdcac58bd status: code: 200 message: OK @@ -879,13 +830,13 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n - \ \"etag\": \"W/\\\"7f797088-ba01-4102-91df-349b29b76ec6\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"c7708dc8-715d-4fbc-a9b5-f25f2d397ae4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" @@ -893,13 +844,13 @@ interactions: cache-control: - no-cache content-length: - - '563' + - '545' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:09 GMT + - Wed, 11 May 2022 04:05:36 GMT etag: - - W/"7f797088-ba01-4102-91df-349b29b76ec6" + - W/"c7708dc8-715d-4fbc-a9b5-f25f2d397ae4" expires: - '-1' pragma: @@ -909,14 +860,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b16a2f89-e34b-4415-9275-825d53cb6052 + - de3a90ad-ecc0-4481-8baf-1458723c180e status: code: 200 message: OK @@ -938,27 +885,78 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2021-08-01 + response: + body: + string: '{"error":{"code":"ServerTimeout","message":"The request timed out. + Diagnostic information: timestamp ''20220511T040552Z'', subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', + tracking id ''0135f666-b4c4-4315-b9ea-c16fb2822a6f'', request correlation + id ''0135f666-b4c4-4315-b9ea-c16fb2822a6f''."}}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 11 May 2022 04:05:51 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: 503 + message: Service Unavailable +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n - \ \"etag\": \"W/\\\"8e64a75a-2a19-4400-920b-c3f62a8c10b8\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"86a148c2-9fd1-496c-9b37-02b5ac0ddacf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a214a9-19c8-4ef4-8f72-5e796be3b2f4?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b6bd83a-0247-4804-9580-b80eb19ef03c?api-version=2021-08-01 cache-control: - no-cache content-length: - - '562' + - '544' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:12 GMT + - Wed, 11 May 2022 04:05:52 GMT expires: - '-1' pragma: @@ -971,9 +969,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 48bbf672-5904-4c91-9e99-fee69ec00335 + - 77383970-466f-43a6-9ec3-51c66ce54519 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -991,9 +989,9 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a214a9-19c8-4ef4-8f72-5e796be3b2f4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b6bd83a-0247-4804-9580-b80eb19ef03c?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1005,7 +1003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:22 GMT + - Wed, 11 May 2022 04:06:02 GMT expires: - '-1' pragma: @@ -1022,7 +1020,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 073f79a5-85c8-489e-aa28-42d4203a08d1 + - 95e3391b-c1dd-472e-aa9f-bb71fde3eafa status: code: 200 message: OK @@ -1040,13 +1038,13 @@ interactions: ParameterSetName: - -g --vhub-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n - \ \"etag\": \"W/\\\"b42bc81c-cdfd-456e-b36f-3a2684cfcad9\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"6fe1fd90-237b-4684-a6cd-daf05b21568a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" @@ -1054,13 +1052,13 @@ interactions: cache-control: - no-cache content-length: - - '563' + - '545' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:22 GMT + - Wed, 11 May 2022 04:06:02 GMT etag: - - W/"b42bc81c-cdfd-456e-b36f-3a2684cfcad9" + - W/"6fe1fd90-237b-4684-a6cd-daf05b21568a" expires: - '-1' pragma: @@ -1077,7 +1075,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 142487be-23ff-443b-aefb-1ef83e4c839f + - 82f72e20-5ee0-44c6-a44d-6cbeec865af0 status: code: 200 message: OK @@ -1095,21 +1093,21 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T09:26:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T04:01:14Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '392' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:25 GMT + - Wed, 11 May 2022 04:06:04 GMT expires: - '-1' pragma: @@ -1137,9 +1135,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/test_s2s_vpn_gateway'' @@ -1149,11 +1147,11 @@ interactions: cache-control: - no-cache content-length: - - '297' + - '279' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:27 GMT + - Wed, 11 May 2022 04:06:04 GMT expires: - '-1' pragma: @@ -1180,19 +1178,19 @@ interactions: Connection: - keep-alive Content-Length: - - '275' + - '257' Content-Type: - application/json ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"9ae423b5-049c-4904-811e-4f9a04b3eabf\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9ccf1a9d-8e75-45e7-b81f-43111633ed21\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n @@ -1204,15 +1202,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 cache-control: - no-cache content-length: - - '993' + - '957' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:32 GMT + - Wed, 11 May 2022 04:06:12 GMT expires: - '-1' pragma: @@ -1225,7 +1223,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1fea268-b25e-44ed-b596-5196e4274d04 + - 6515ffa2-3f3d-4fa6-9f44-9b6d63f8c07e x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1245,9 +1243,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1259,7 +1257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:42 GMT + - Wed, 11 May 2022 04:06:22 GMT expires: - '-1' pragma: @@ -1276,7 +1274,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2f76e778-6e87-4658-b644-986d726327ab + - b5ecc617-eadf-4117-bb13-6e210693ce0b status: code: 200 message: OK @@ -1294,9 +1292,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1308,7 +1306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:34:52 GMT + - Wed, 11 May 2022 04:06:32 GMT expires: - '-1' pragma: @@ -1325,7 +1323,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d400580-2d52-4ec4-9a36-468c193870ec + - d0ca7e52-7159-4652-b95e-03288b2323ee status: code: 200 message: OK @@ -1343,9 +1341,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1357,7 +1355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:35:13 GMT + - Wed, 11 May 2022 04:06:52 GMT expires: - '-1' pragma: @@ -1374,7 +1372,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0702a6fa-e0b2-4067-9a3d-0202ee1edfbc + - bede3cd7-21e5-4a3f-bde3-0c745d315084 status: code: 200 message: OK @@ -1392,9 +1390,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1406,7 +1404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:35:33 GMT + - Wed, 11 May 2022 04:07:13 GMT expires: - '-1' pragma: @@ -1423,7 +1421,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 91e3394a-e67b-4ced-9e04-d201ef323a05 + - 0d235e47-c503-4997-be2b-36b11b81528e status: code: 200 message: OK @@ -1441,9 +1439,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1455,7 +1453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:36:13 GMT + - Wed, 11 May 2022 04:07:54 GMT expires: - '-1' pragma: @@ -1472,7 +1470,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b248ff84-03f6-4524-80a6-8385c4666492 + - 3ffeef61-b064-4b4e-829f-9a88627330fa status: code: 200 message: OK @@ -1490,9 +1488,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1504,7 +1502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:36:53 GMT + - Wed, 11 May 2022 04:08:34 GMT expires: - '-1' pragma: @@ -1521,7 +1519,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a536a6aa-3e21-43d7-91fe-b48644897cb1 + - ed4c4e3c-cfc0-4d03-b907-d3c71517a5a6 status: code: 200 message: OK @@ -1539,9 +1537,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1553,7 +1551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:38:14 GMT + - Wed, 11 May 2022 04:09:54 GMT expires: - '-1' pragma: @@ -1570,7 +1568,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b3ab7136-ba9e-4093-a991-817cfc090e8d + - bf31a6a9-f94e-4511-afde-7feaa0eab2c6 status: code: 200 message: OK @@ -1588,9 +1586,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1602,7 +1600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:40:54 GMT + - Wed, 11 May 2022 04:12:36 GMT expires: - '-1' pragma: @@ -1612,14 +1610,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac17c229-6f09-435e-8d0c-dad3e9714eb0 + - 81ccf933-e788-40de-a347-ded7428c9cdc status: code: 200 message: OK @@ -1637,9 +1631,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1651,7 +1645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:42:35 GMT + - Wed, 11 May 2022 04:14:17 GMT expires: - '-1' pragma: @@ -1661,14 +1655,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c493219b-8dba-4344-a144-bceef1c224df + - 40bce2a1-d592-46ec-b2e7-b5749c07e4c8 status: code: 200 message: OK @@ -1686,9 +1676,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1700,7 +1690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:44:15 GMT + - Wed, 11 May 2022 04:15:57 GMT expires: - '-1' pragma: @@ -1710,14 +1700,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c2eed38-37df-48b2-8202-e0e4767f79d8 + - f8ee5c47-5a8c-4315-a632-edc52c598cec status: code: 200 message: OK @@ -1735,9 +1721,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1749,7 +1735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:45:56 GMT + - Wed, 11 May 2022 04:17:37 GMT expires: - '-1' pragma: @@ -1759,14 +1745,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 89b79d73-2cad-401d-a3ba-728936a6636b + - 6cec2fd2-9b65-46eb-8634-120319ef3d20 status: code: 200 message: OK @@ -1784,9 +1766,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1798,7 +1780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:47:37 GMT + - Wed, 11 May 2022 04:19:19 GMT expires: - '-1' pragma: @@ -1808,14 +1790,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8133aa0f-5e86-4b3d-bb99-c0cc211e89b8 + - 731f3ba9-8a6b-4494-b98b-ef0ee53fc148 status: code: 200 message: OK @@ -1833,9 +1811,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1847,7 +1825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:49:16 GMT + - Wed, 11 May 2022 04:20:58 GMT expires: - '-1' pragma: @@ -1857,14 +1835,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c339cc99-1eca-4c39-b0c0-5c17ca9b05bd + - 512ca1c7-92d6-4b31-939e-1be161074546 status: code: 200 message: OK @@ -1882,9 +1856,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1896,7 +1870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:50:57 GMT + - Wed, 11 May 2022 04:22:39 GMT expires: - '-1' pragma: @@ -1906,14 +1880,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 127619c2-1418-4b4a-ba79-8861e3a1de90 + - 4905c33f-3137-45b9-9a6c-57fba70c9ab0 status: code: 200 message: OK @@ -1931,9 +1901,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1945,7 +1915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:52:37 GMT + - Wed, 11 May 2022 04:24:20 GMT expires: - '-1' pragma: @@ -1955,14 +1925,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ab56e4f4-c189-4f71-bf13-af73233c0b32 + - ae5d56b0-5af7-4991-bb25-59f9a8f29d41 status: code: 200 message: OK @@ -1980,9 +1946,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1994,7 +1960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:54:18 GMT + - Wed, 11 May 2022 04:26:00 GMT expires: - '-1' pragma: @@ -2004,14 +1970,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dbba0405-e60f-4def-ae9a-4b587be168f8 + - 4d9f42d1-f47d-42b2-8347-e53a155f91f0 status: code: 200 message: OK @@ -2029,9 +1991,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2043,7 +2005,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:55:57 GMT + - Wed, 11 May 2022 04:27:41 GMT expires: - '-1' pragma: @@ -2053,14 +2015,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a65c098d-02ce-437c-a184-cbf4666bd95e + - b9c5a586-1e9c-407e-838a-b771de101bb0 status: code: 200 message: OK @@ -2078,9 +2036,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2092,7 +2050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:57:39 GMT + - Wed, 11 May 2022 04:29:22 GMT expires: - '-1' pragma: @@ -2102,14 +2060,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3ff1f82f-550b-4232-b946-2bd0fe4ef2ba + - dcd769e5-7671-41d4-9a8e-c85acee608bd status: code: 200 message: OK @@ -2127,9 +2081,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2141,7 +2095,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 09:59:19 GMT + - Wed, 11 May 2022 04:31:02 GMT expires: - '-1' pragma: @@ -2151,14 +2105,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1fa5e4c3-5a5c-4005-983a-4384921d89e6 + - 09885100-a1c6-41a6-9322-ec294e38266d status: code: 200 message: OK @@ -2176,9 +2126,9 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2190,7 +2140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:00:59 GMT + - Wed, 11 May 2022 04:32:43 GMT expires: - '-1' pragma: @@ -2200,14 +2150,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac5e5aa1-c3fa-4036-b79c-dcef50dc20bd + - 32fbb34f-82b8-40f4-8b12-762234a2878c status: code: 200 message: OK @@ -2225,9 +2171,99 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-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: + - Wed, 11 May 2022 04:34: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: + - fcb01176-16d8-4d65-b177-b3c5362a4ef3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-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: + - Wed, 11 May 2022 04:36:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e6a3f052-71a9-44c2-8ab5-13f4dcb2f8b3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b780094-2ca0-4bd7-bb04-e6d86ffbc178?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2239,7 +2275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:02:40 GMT + - Wed, 11 May 2022 04:37:44 GMT expires: - '-1' pragma: @@ -2249,14 +2285,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a5ab48c9-2f24-4b8c-8b41-46f91693852b + - 28f62104-7cd3-4efb-b71e-0051ffd58abe status: code: 200 message: OK @@ -2274,41 +2306,41 @@ interactions: ParameterSetName: - -g --vhub --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"09e32374-0098-4097-962f-02506932b763\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"248a8399-6d6e-48e1-b83c-f1839696b5e5\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"104.40.28.19\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.237.193.142\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"104.40.10.243\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.228.124.99\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"104.40.28.19\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.193.142\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"104.40.10.243\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.228.124.99\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1872' + - '1840' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:02:41 GMT + - Wed, 11 May 2022 04:37:44 GMT expires: - '-1' pragma: @@ -2318,14 +2350,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 517a5cc8-3391-47a7-80a2-63266095c62c + - 987e28f6-67e5-44c1-ae0a-9cd290e66e30 status: code: 200 message: OK @@ -2341,23 +2369,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T09:26:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T04:01:14Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '392' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:02:43 GMT + - Wed, 11 May 2022 04:37:45 GMT expires: - '-1' pragma: @@ -2373,8 +2401,8 @@ interactions: message: OK - request: body: '{"location": "westus", "properties": {"deviceProperties": {}, "addressSpace": - {}, "vpnSiteLinks": [{"name": "remote_vpn_site_1", "properties": {"ipAddress": - "10.0.1.110"}}]}}' + {"addressPrefixes": ["10.0.2.0/24"]}, "vpnSiteLinks": [{"name": "remote_vpn_site_1", + "properties": {"ipAddress": "10.0.2.110"}}]}}' headers: Accept: - application/json @@ -2385,45 +2413,45 @@ interactions: Connection: - keep-alive Content-Length: - - '174' + - '208' Content-Type: - application/json ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"b53c3dd9-663e-4bb9-bb5a-d569d367f678\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dd85ea68-c8a7-4b54-a7da-817eeba15994\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"b53c3dd9-663e-4bb9-bb5a-d569d367f678\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"dd85ea68-c8a7-4b54-a7da-817eeba15994\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\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/6b41ae35-67e9-4eec-8d5a-2b5c9d3ddffe?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/289df20a-281a-4b85-b8bb-0deb99ab9e25?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1384' + - '1379' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:02:50 GMT + - Wed, 11 May 2022 04:37:52 GMT expires: - '-1' pragma: @@ -2436,9 +2464,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 974f5603-9d29-4959-b1b6-975b31b1a949 + - 044342d9-f458-4378-a19c-84885a5290f0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -2454,23 +2482,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b41ae35-67e9-4eec-8d5a-2b5c9d3ddffe?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/289df20a-281a-4b85-b8bb-0deb99ab9e25?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:01 GMT + - Wed, 11 May 2022 04:38:02 GMT expires: - '-1' pragma: @@ -2487,7 +2515,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4bbadc58-7bbc-44a5-bd57-281949d9049a + - 372349fa-fae1-4a88-97f1-47eafe014a04 status: code: 200 message: OK @@ -2503,23 +2531,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g -n --ip-address --with-link --address-prefixes User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b41ae35-67e9-4eec-8d5a-2b5c9d3ddffe?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"12ab9a41-15ec-4886-8110-8fd22f462542\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"12ab9a41-15ec-4886-8110-8fd22f462542\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '1381' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:12 GMT + - Wed, 11 May 2022 04:38:03 GMT + etag: + - W/"12ab9a41-15ec-4886-8110-8fd22f462542" expires: - '-1' pragma: @@ -2536,7 +2580,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fe446d43-9a58-4a4b-ac6b-6c68bc4d31f9 + - b9aca951-084e-45bf-ae14-bdbca612aacc status: code: 200 message: OK @@ -2544,47 +2588,47 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vpn-site create + - network vpn-site link add Connection: - keep-alive ParameterSetName: - - -g -n --ip-address --with-link + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0f719ff2-caa4-49cb-895b-0585b0823a2f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"12ab9a41-15ec-4886-8110-8fd22f462542\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0f719ff2-caa4-49cb-895b-0585b0823a2f\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"12ab9a41-15ec-4886-8110-8fd22f462542\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1386' + - '1381' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:12 GMT + - Wed, 11 May 2022 04:38:03 GMT etag: - - W/"0f719ff2-caa4-49cb-895b-0585b0823a2f" + - W/"12ab9a41-15ec-4886-8110-8fd22f462542" expires: - '-1' pragma: @@ -2601,12 +2645,20 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2ab8c0d4-6399-4171-9aa5-e4d3b458cdb3 + - bf7a21b9-23b7-4219-997a-fb048f8dd483 status: code: 200 message: OK - request: - body: null + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", + "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": + 0}, "addressSpace": {"addressPrefixes": ["10.0.2.0/24"]}, "isSecuritySite": + false, "vpnSiteLinks": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", + "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.2.110"}}, {"name": "VPN-Site-Link1", "properties": {"ipAddress": + "10.0.2.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.1.0"}}}], + "o365Policy": {"breakOutCategories": {"allow": false, "optimize": false, "default": + false}}}}' headers: Accept: - application/json @@ -2616,40 +2668,54 @@ interactions: - network vpn-site link add Connection: - keep-alive + Content-Length: + - '936' + Content-Type: + - application/json ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0f719ff2-caa4-49cb-895b-0585b0823a2f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6ec55ee2-2d9e-4d23-b863-1d573093ebcb\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"0f719ff2-caa4-49cb-895b-0585b0823a2f\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"6ec55ee2-2d9e-4d23-b863-1d573093ebcb\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": - \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"6ec55ee2-2d9e-4d23-b863-1d573093ebcb\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.2.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\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/b2ed1a4d-a90f-44a3-b732-e4dac06afe99?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1386' + - '2096' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:14 GMT - etag: - - W/"0f719ff2-caa4-49cb-895b-0585b0823a2f" + - Wed, 11 May 2022 04:38:03 GMT expires: - '-1' pragma: @@ -2666,75 +2732,41 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0f8a2126-18b7-410a-9c0b-0c1ef60c8695 + - bc802f96-6a99-47a7-847a-4d2211086331 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", - "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": - 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", - "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": - 0}, "ipAddress": "10.0.1.110"}}, {"name": "VPN-Site-Link1", "properties": {"ipAddress": - "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.1.0"}}}]}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - network vpn-site link add Connection: - keep-alive - Content-Length: - - '866' - Content-Type: - - application/json ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b2ed1a4d-a90f-44a3-b732-e4dac06afe99?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"a8168690-9bbe-43a0-a2d0-a3a8ca321a01\\\"\",\r\n \"type\": - \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"a8168690-9bbe-43a0-a2d0-a3a8ca321a01\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": - {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": - \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": - \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"a8168690-9bbe-43a0-a2d0-a3a8ca321a01\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n - \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n - \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": - 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n - \ }\r\n ]\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d3128f2c-72c3-40a2-8068-f6c8abec316c?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2119' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:14 GMT + - Wed, 11 May 2022 04:38:14 GMT expires: - '-1' pragma: @@ -2751,9 +2783,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c559a630-8dc5-4ea0-8e7e-03f62b5a589c - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - 3afdb11f-b3f1-4883-a720-a1947f6d8ca4 status: code: 200 message: OK @@ -2769,11 +2799,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d3128f2c-72c3-40a2-8068-f6c8abec316c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b2ed1a4d-a90f-44a3-b732-e4dac06afe99?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2785,7 +2815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:25 GMT + - Wed, 11 May 2022 04:38:24 GMT expires: - '-1' pragma: @@ -2802,7 +2832,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 564a4338-2090-4044-abb3-62089c71954d + - 476c8e5f-f500-41f2-937e-8c0e26359a23 status: code: 200 message: OK @@ -2818,32 +2848,32 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + - -g --site-name -n --ip-address --asn --bgp-peering-address User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"af71f61b-6c5f-41e6-866f-38ba4dfc26b8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"491bafb6-767d-4b4f-8191-5e32ab65d58e\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n - \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n - \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n - \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": - false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n - \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n - \ \"etag\": \"W/\\\"af71f61b-6c5f-41e6-866f-38ba4dfc26b8\\\"\",\r\n + \ \"addressPrefixes\": [\r\n \"10.0.2.0/24\"\r\n ]\r\n },\r\n + \ \"deviceProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n },\r\n + \ \"isSecuritySite\": false,\r\n \"o365Policy\": {\r\n \"breakOutCategories\": + {\r\n \"optimize\": false,\r\n \"allow\": false,\r\n \"default\": + false\r\n }\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": + \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"491bafb6-767d-4b4f-8191-5e32ab65d58e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + \ \"ipAddress\": \"10.0.2.110\",\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n - \ \"etag\": \"W/\\\"af71f61b-6c5f-41e6-866f-38ba4dfc26b8\\\"\",\r\n + \ \"etag\": \"W/\\\"491bafb6-767d-4b4f-8191-5e32ab65d58e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"ipAddress\": \"10.0.2.111\",\r\n \"bgpProperties\": {\r\n \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n @@ -2852,13 +2882,13 @@ interactions: cache-control: - no-cache content-length: - - '2122' + - '2099' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:25 GMT + - Wed, 11 May 2022 04:38:25 GMT etag: - - W/"af71f61b-6c5f-41e6-866f-38ba4dfc26b8" + - W/"491bafb6-767d-4b4f-8191-5e32ab65d58e" expires: - '-1' pragma: @@ -2875,7 +2905,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f7c2a8b3-ae45-46af-9fd2-3b5b537a2d24 + - 449415fa-b76b-4312-9c4a-f603bee1a286 status: code: 200 message: OK @@ -2897,21 +2927,21 @@ interactions: Connection: - keep-alive Content-Length: - - '1460' + - '1370' Content-Type: - application/json ParameterSetName: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"d795ab67-69ed-498a-925d-dc914b03986c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c5c01d8d-eeaf-4e6c-8747-cc657c10528d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -2924,7 +2954,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"d795ab67-69ed-498a-925d-dc914b03986c\\\"\",\r\n + \ \"etag\": \"W/\\\"c5c01d8d-eeaf-4e6c-8747-cc657c10528d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -2933,21 +2963,21 @@ interactions: \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n - \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ba48a6a2-9892-4f57-94ee-4a05583d1c96?api-version=2021-08-01 cache-control: - no-cache content-length: - - '3403' + - '3324' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:27 GMT + - Wed, 11 May 2022 04:38:26 GMT expires: - '-1' pragma: @@ -2960,7 +2990,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 767ca8f9-c4f3-4c68-96be-8ea04db1ecf4 + - 860b9ed7-ac41-44b9-b849-12bbfdcf6f33 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2981,9 +3011,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ba48a6a2-9892-4f57-94ee-4a05583d1c96?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2995,7 +3025,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:38 GMT + - Wed, 11 May 2022 04:38:36 GMT expires: - '-1' pragma: @@ -3012,7 +3042,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b14ae09f-ef25-4407-bd61-b26fa6511899 + - 5a36b0be-d6ba-4dd8-813a-db45775db8fe status: code: 200 message: OK @@ -3031,9 +3061,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ba48a6a2-9892-4f57-94ee-4a05583d1c96?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3045,7 +3075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:03:48 GMT + - Wed, 11 May 2022 04:38:47 GMT expires: - '-1' pragma: @@ -3062,7 +3092,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b134a139-3e57-41b7-919b-8dd008d83695 + - e4de07eb-289b-4fed-82a1-234dddd25d21 status: code: 200 message: OK @@ -3081,9 +3111,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ba48a6a2-9892-4f57-94ee-4a05583d1c96?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3095,7 +3125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:04:09 GMT + - Wed, 11 May 2022 04:39:07 GMT expires: - '-1' pragma: @@ -3112,7 +3142,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5acf4cb3-4c6a-47a0-8f63-683381bdc1d1 + - 99c60734-8ede-436a-8cab-000899c4f62d status: code: 200 message: OK @@ -3131,59 +3161,9 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 15 Nov 2021 10:04: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: - - a24df7d4-b851-40d4-89cb-7ce285acfa83 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vpn-gateway connection create - Connection: - - keep-alive - ParameterSetName: - - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table - --propagated-route-tables --labels --with-link - User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ba48a6a2-9892-4f57-94ee-4a05583d1c96?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3195,7 +3175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:06:10 GMT + - Wed, 11 May 2022 04:39:48 GMT expires: - '-1' pragma: @@ -3212,7 +3192,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c19bae8b-d056-4d79-bf3e-fe9e8ce60843 + - 681b5967-e2c0-4f94-9718-e9f1781770ad status: code: 200 message: OK @@ -3231,14 +3211,14 @@ interactions: - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table --propagated-route-tables --labels --with-link User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"435c8f0d-3ab5-4edd-b7fe-2707d0c939f2\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3251,7 +3231,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n + \ \"etag\": \"W/\\\"435c8f0d-3ab5-4edd-b7fe-2707d0c939f2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3261,18 +3241,19 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3447' + - '3368' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:06:10 GMT + - Wed, 11 May 2022 04:39:49 GMT expires: - '-1' pragma: @@ -3289,7 +3270,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c2fab54-ac07-4e5a-a109-617d769288e5 + - c8c6f21f-9fc2-44c8-b0d3-9ede5965e280 status: code: 200 message: OK @@ -3308,18 +3289,18 @@ interactions: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n - \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"435c8f0d-3ab5-4edd-b7fe-2707d0c939f2\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n + \ \"etag\": \"W/\\\"435c8f0d-3ab5-4edd-b7fe-2707d0c939f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3334,7 +3315,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n + \ \"etag\": \"W/\\\"435c8f0d-3ab5-4edd-b7fe-2707d0c939f2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n @@ -3344,36 +3325,36 @@ interactions: \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n - \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \ \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": - \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"104.40.28.19\",\r\n \"10.0.1.4\"\r\n ]\r\n + [\r\n \"20.237.193.142\",\r\n \"10.0.1.4\"\r\n ]\r\n \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n - \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": - [\r\n \"104.40.10.243\",\r\n \"10.0.1.5\"\r\n ]\r\n + [\r\n \"20.228.124.99\",\r\n \"10.0.1.5\"\r\n ]\r\n \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n - \ \"publicIpAddress\": \"104.40.28.19\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.237.193.142\",\r\n \"privateIpAddress\": \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n - \ \"publicIpAddress\": \"104.40.10.243\",\r\n \"privateIpAddress\": + \ \"publicIpAddress\": \"20.228.124.99\",\r\n \"privateIpAddress\": \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '5669' + - '5564' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:06:13 GMT + - Wed, 11 May 2022 04:39:50 GMT expires: - '-1' pragma: @@ -3390,7 +3371,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 771afdaa-1667-4536-bb39-864cae5a91e1 + - 7bf91416-df8e-4057-a95a-d8f48a97d08e status: code: 200 message: OK @@ -3406,16 +3387,18 @@ interactions: false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, - "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": - 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": - [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}], "routingConfiguration": - {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "routingWeight": 0, "vpnLinkConnectionMode": "Default", "vpnConnectionProtocolType": + "IKEv2", "connectionBandwidth": 10, "enableBgp": false, "vpnGatewayCustomBgpAddresses": + [], "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": [], "enableRateLimiting": + false, "useLocalAzureIpAddress": false}}], "routingConfiguration": {"associatedRouteTable": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, "vnetRoutes": {"staticRoutes": []}}}}], "bgpSettings": {"asn": 65515, "peerWeight": 0, "bgpPeeringAddresses": [{"ipconfigurationId": "Instance0", "customBgpIpAddresses": []}, {"ipconfigurationId": "Instance1", "customBgpIpAddresses": []}]}, "vpnGatewayScaleUnit": - 1}}' + 1, "enableBgpRouteTranslationForNat": false, "isRoutingPreferenceInternet": + false, "natRules": []}}' headers: Accept: - application/json @@ -3426,16 +3409,16 @@ interactions: Connection: - keep-alive Content-Length: - - '3279' + - '3285' Content-Type: - application/json ParameterSetName: - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2021-08-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"VpnConnectionPropertyIsDeprecated\",\r\n @@ -3446,11 +3429,11 @@ interactions: cache-control: - no-cache content-length: - - '504' + - '486' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:06:14 GMT + - Wed, 11 May 2022 04:39:51 GMT expires: - '-1' pragma: @@ -3463,7 +3446,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 72c2f778-39e3-4441-9180-17717363a701 + - e1161789-d2b1-4b22-a7fd-05e25f71fd35 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -3481,17 +3464,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + - -g --gateway-name --connection-name -n --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"435c8f0d-3ab5-4edd-b7fe-2707d0c939f2\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3504,7 +3487,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n + \ \"etag\": \"W/\\\"435c8f0d-3ab5-4edd-b7fe-2707d0c939f2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3514,18 +3497,19 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3447' + - '3368' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:06:15 GMT + - Wed, 11 May 2022 04:39:51 GMT expires: - '-1' pragma: @@ -3542,7 +3526,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9d687498-4606-4619-bd9f-bf39e5c76bd2 + - af730499-c041-494a-b8bf-143ce2d936a7 status: code: 200 message: OK @@ -3553,13 +3537,13 @@ interactions: "enableInternetSecurity": false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, - "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": - 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": - [{"saLifeTimeSeconds": 86471, "saDataSizeKilobytes": 429496, "ipsecEncryption": - "AES256", "ipsecIntegrity": "SHA256", "ikeEncryption": "AES256", "ikeIntegrity": - "SHA384", "dhGroup": "DHGroup14", "pfsGroup": "PFS14"}], "enableRateLimiting": - false, "useLocalAzureIpAddress": false}}], "routingConfiguration": {"associatedRouteTable": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "routingWeight": 0, "vpnLinkConnectionMode": "Default", "vpnConnectionProtocolType": + "IKEv2", "connectionBandwidth": 10, "enableBgp": false, "vpnGatewayCustomBgpAddresses": + [], "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": [{"saLifeTimeSeconds": + 86471, "saDataSizeKilobytes": 429496, "ipsecEncryption": "AES256", "ipsecIntegrity": + "SHA256", "ikeEncryption": "AES256", "ikeIntegrity": "SHA384", "dhGroup": "DHGroup14", + "pfsGroup": "PFS14"}], "enableRateLimiting": false, "useLocalAzureIpAddress": + false}}], "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, "vnetRoutes": {"staticRoutes": []}}}}' @@ -3573,21 +3557,21 @@ interactions: Connection: - keep-alive Content-Length: - - '2543' + - '2489' Content-Type: - application/json ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + - -g --gateway-name --connection-name -n --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"819f6c57-c530-453a-9bfb-46ad95c1337b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"056fd113-47e6-411a-b4c1-618d2ac67f04\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3600,7 +3584,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"819f6c57-c530-453a-9bfb-46ad95c1337b\\\"\",\r\n + \ \"etag\": \"W/\\\"056fd113-47e6-411a-b4c1-618d2ac67f04\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3614,20 +3598,21 @@ interactions: false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e87c04a6-f17e-48db-9bec-8c613f947c6a?api-version=2021-08-01 cache-control: - no-cache content-length: - - '3778' + - '3699' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:06:16 GMT + - Wed, 11 May 2022 04:39:53 GMT expires: - '-1' pragma: @@ -3644,7 +3629,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 456bfed5-2a3c-40d8-85c9-31c53ace8e19 + - 93d0152a-e696-4c09-ba0f-ca8faaca9cc1 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -3662,12 +3647,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + - -g --gateway-name --connection-name -n --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e87c04a6-f17e-48db-9bec-8c613f947c6a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3679,7 +3664,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:06:26 GMT + - Wed, 11 May 2022 04:40:03 GMT expires: - '-1' pragma: @@ -3696,7 +3681,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a719e262-338b-48e3-804d-f0d89b9f6ef4 + - 9db74076-f21d-4718-816d-5ecdc6aa118a status: code: 200 message: OK @@ -3712,12 +3697,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + - -g --gateway-name --connection-name -n --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e87c04a6-f17e-48db-9bec-8c613f947c6a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3729,7 +3714,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:06:37 GMT + - Wed, 11 May 2022 04:40:13 GMT expires: - '-1' pragma: @@ -3746,7 +3731,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9daf0e01-6dbf-43bb-851f-261803180c49 + - 91abafbe-8bcb-4605-9935-87039997e2fd status: code: 200 message: OK @@ -3762,12 +3747,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + - -g --gateway-name --connection-name -n --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e87c04a6-f17e-48db-9bec-8c613f947c6a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3779,7 +3764,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:06:58 GMT + - Wed, 11 May 2022 04:40:33 GMT expires: - '-1' pragma: @@ -3796,7 +3781,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d5bfe3b9-46ae-4c9d-afd0-164b4aef939c + - 4806ed03-f3f1-4e85-a180-87e902d288cc status: code: 200 message: OK @@ -3812,12 +3797,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + - -g --gateway-name --connection-name -n --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e87c04a6-f17e-48db-9bec-8c613f947c6a?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3829,7 +3814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:07:38 GMT + - Wed, 11 May 2022 04:41:14 GMT expires: - '-1' pragma: @@ -3846,7 +3831,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3966f610-87cc-4acf-9449-8dc94c631ebb + - 309afdf0-8c3c-4e58-9392-115bf074a4aa status: code: 200 message: OK @@ -3862,17 +3847,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + - -g --gateway-name --connection-name -n --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6e458852-a90b-4239-9bca-fcb75c290c0d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3885,7 +3870,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n + \ \"etag\": \"W/\\\"6e458852-a90b-4239-9bca-fcb75c290c0d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3899,19 +3884,19 @@ interactions: \"Unknown\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n - \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3822' + - '3743' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:07:39 GMT + - Wed, 11 May 2022 04:41:14 GMT expires: - '-1' pragma: @@ -3928,7 +3913,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84320923-be0a-44e5-829e-5418cd841499 + - f54dc66b-93a1-4b82-9305-ed2e5ae8dea6 status: code: 200 message: OK @@ -3944,16 +3929,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name + - -g --gateway-name --connection-name -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6e458852-a90b-4239-9bca-fcb75c290c0d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -3966,7 +3951,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n + \ \"etag\": \"W/\\\"6e458852-a90b-4239-9bca-fcb75c290c0d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -3980,19 +3965,19 @@ interactions: \"Unknown\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n - \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3822' + - '3743' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:07:41 GMT + - Wed, 11 May 2022 04:41:15 GMT expires: - '-1' pragma: @@ -4009,7 +3994,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e3cdfdc-47d0-49c3-b70f-60b454edec16 + - 12cd1613-d5b1-4444-a48c-dbcfa2fb286d status: code: 200 message: OK @@ -4025,16 +4010,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --index + - -g --gateway-name --connection-name -n --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6e458852-a90b-4239-9bca-fcb75c290c0d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -4047,7 +4032,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n + \ \"etag\": \"W/\\\"6e458852-a90b-4239-9bca-fcb75c290c0d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -4061,19 +4046,19 @@ interactions: \"Unknown\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n - \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3822' + - '3743' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:07:43 GMT + - Wed, 11 May 2022 04:41:17 GMT expires: - '-1' pragma: @@ -4090,7 +4075,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0a50952-7bee-442e-a373-58cf7ff21957 + - e9dd8f93-8037-4012-8cf0-4505249edb8c status: code: 200 message: OK @@ -4101,10 +4086,11 @@ interactions: "enableInternetSecurity": false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, - "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": - 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": - [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}], "routingConfiguration": - {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "routingWeight": 0, "vpnLinkConnectionMode": "Default", "vpnConnectionProtocolType": + "IKEv2", "connectionBandwidth": 10, "enableBgp": false, "vpnGatewayCustomBgpAddresses": + [], "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": [], "enableRateLimiting": + false, "useLocalAzureIpAddress": false}}], "routingConfiguration": {"associatedRouteTable": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, "vnetRoutes": {"staticRoutes": []}}}}' @@ -4118,20 +4104,20 @@ interactions: Connection: - keep-alive Content-Length: - - '2329' + - '2275' Content-Type: - application/json ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --index + - -g --gateway-name --connection-name -n --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"6d8f4d5c-91c7-4e88-a050-8508a2944bc1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"26de05c2-0a58-4749-ab3b-e1085770f004\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -4144,7 +4130,7 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"6d8f4d5c-91c7-4e88-a050-8508a2944bc1\\\"\",\r\n + \ \"etag\": \"W/\\\"26de05c2-0a58-4749-ab3b-e1085770f004\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": @@ -4153,21 +4139,21 @@ interactions: \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": - 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": - \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n - \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": + []\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b380441f-ab59-4f67-81f9-cc76bd9585d5?api-version=2021-08-01 cache-control: - no-cache content-length: - - '3403' + - '3324' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:07:43 GMT + - Wed, 11 May 2022 04:41:17 GMT expires: - '-1' pragma: @@ -4184,7 +4170,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2a1c8235-2f3b-4894-bf6f-0659b30f4b30 + - ba7bd242-e369-4dc4-994c-9fe7956eb449 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -4202,11 +4188,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --index + - -g --gateway-name --connection-name -n --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b380441f-ab59-4f67-81f9-cc76bd9585d5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4218,7 +4204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:07:54 GMT + - Wed, 11 May 2022 04:41:28 GMT expires: - '-1' pragma: @@ -4235,7 +4221,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 70c1e640-eb80-4510-a4b5-aea72629c640 + - f0bae058-880a-4003-9b2e-700c01758565 status: code: 200 message: OK @@ -4251,11 +4237,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --index + - -g --gateway-name --connection-name -n --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b380441f-ab59-4f67-81f9-cc76bd9585d5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4267,7 +4253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:08:04 GMT + - Wed, 11 May 2022 04:41:38 GMT expires: - '-1' pragma: @@ -4284,7 +4270,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49059427-8839-4116-9905-11135ac7ae81 + - 345cdfd9-2aa6-4550-82da-1b4060ac17c8 status: code: 200 message: OK @@ -4300,11 +4286,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --index + - -g --gateway-name --connection-name -n --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b380441f-ab59-4f67-81f9-cc76bd9585d5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4316,7 +4302,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:08:25 GMT + - Wed, 11 May 2022 04:41:58 GMT expires: - '-1' pragma: @@ -4333,7 +4319,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd120fc3-3e50-4e4d-86da-b4b39f7e859c + - 51e32716-3dde-44c9-bf81-c36c8afd7fe8 status: code: 200 message: OK @@ -4349,11 +4335,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --index + - -g --gateway-name --connection-name -n --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b380441f-ab59-4f67-81f9-cc76bd9585d5?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -4365,7 +4351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:09:05 GMT + - Wed, 11 May 2022 04:42:39 GMT expires: - '-1' pragma: @@ -4382,7 +4368,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 638f3ff7-c777-4256-ad3a-10d1747f4215 + - 26238c15-5248-487f-a606-97d998624b49 status: code: 200 message: OK @@ -4398,16 +4384,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gateway-name -n --vpn-site-link-conn-name --index + - -g --gateway-name --connection-name -n --index User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"891440d9-5b63-4d80-a7c3-efc696a7df79\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dd7c592c-a543-4f64-9994-496f72460fa1\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n @@ -4420,28 +4406,29 @@ interactions: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n - \ \"etag\": \"W/\\\"891440d9-5b63-4d80-a7c3-efc696a7df79\\\"\",\r\n + \ \"etag\": \"W/\\\"dd7c592c-a543-4f64-9994-496f72460fa1\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": - \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + \"None\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": - \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \"Default\",\r\n \"vpnGatewayCustomBgpAddresses\": []\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3447' + - '3373' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 10:09:06 GMT + - Wed, 11 May 2022 04:42:40 GMT expires: - '-1' pragma: @@ -4458,7 +4445,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b2c8b0e4-bac6-4591-ad5e-51df01a1c3ee + - 7d3786ac-bcb2-4daf-88ca-4fd1966a6ee9 status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_p2s_vpn_client_generate.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_p2s_vpn_client_generate.yaml index e730a8ab170..41ed3d0bf61 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_p2s_vpn_client_generate.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_p2s_vpn_client_generate.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_p2s_vpn_client_generate000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001","name":"test_p2s_vpn_client_generate000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T07:19:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001","name":"test_p2s_vpn_client_generate000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T04:59:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '346' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:19:53 GMT + - Wed, 11 May 2022 04:59:16 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test-p2s-vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan\",\r\n - \ \"etag\": \"W/\\\"be012caa-22b4-4f1d-a981-ededdee442b1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"648bba82-626e-4585-819d-8b801b5a1735\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -74,15 +74,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d7afc08b-462e-470c-9d45-6e591b2cf855?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/53ffb698-e3ba-487c-9e61-f1c8ac763eb8?api-version=2021-08-01 cache-control: - no-cache content-length: - - '577' + - '536' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:01 GMT + - Wed, 11 May 2022 04:59:23 GMT expires: - '-1' pragma: @@ -95,7 +95,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 18c6873d-91dd-42ee-b30e-80fff58946d9 + - d24d62f7-91fd-49af-b641-d8d438d0bf0a x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d7afc08b-462e-470c-9d45-6e591b2cf855?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/53ffb698-e3ba-487c-9e61-f1c8ac763eb8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:11 GMT + - Wed, 11 May 2022 04:59:33 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e663dc0f-f501-42c3-948a-e63fb1efe371 + - 40730fef-5ba9-437d-9a37-f77addf3c75e status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test-p2s-vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan\",\r\n - \ \"etag\": \"W/\\\"4716befe-5977-4057-b6d2-fc304f0b6a12\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f626d4d2-d117-4caa-aa01-eaff0df3ed32\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -179,13 +179,13 @@ interactions: cache-control: - no-cache content-length: - - '578' + - '537' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:12 GMT + - Wed, 11 May 2022 04:59:34 GMT etag: - - W/"4716befe-5977-4057-b6d2-fc304f0b6a12" + - W/"f626d4d2-d117-4caa-aa01-eaff0df3ed32" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 130ea6ce-011d-4271-967e-622f9759a7fe + - 8defb93b-d91d-4f08-a4c8-3cdea6591e5b status: code: 200 message: OK @@ -220,21 +220,21 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_p2s_vpn_client_generate000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001","name":"test_p2s_vpn_client_generate000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T07:19:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001","name":"test_p2s_vpn_client_generate000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T04:59:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '346' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:14 GMT + - Wed, 11 May 2022 04:59:34 GMT expires: - '-1' pragma: @@ -261,38 +261,41 @@ interactions: Connection: - keep-alive Content-Length: - - '292' + - '251' Content-Type: - application/json ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualHubs/test-p2s-vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualHubs/test-p2s-vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test-p2s-vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualHubs/test-p2s-vhub\",\r\n - \ \"etag\": \"W/\\\"e2586ed0-996c-4a54-a46b-e818babd4e57\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f985b78d-ad1b-444f-9ce3-866ed8fa70a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": - []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan\"\r\n - \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"None\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\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/9dd93ea4-ed8a-4b48-b4b8-4235b6a74212?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd004dfa-70fe-43aa-83f3-9867cad003fe?api-version=2021-08-01 cache-control: - no-cache content-length: - - '877' + - '1045' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:22 GMT + - Wed, 11 May 2022 05:00:29 GMT expires: - '-1' pragma: @@ -305,7 +308,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 002d4651-07ad-4234-8989-c2f0bdcf4cf8 + - bf49bc0e-6720-43bd-bcaf-8489ffa23d0d x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -325,9 +328,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dd93ea4-ed8a-4b48-b4b8-4235b6a74212?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd004dfa-70fe-43aa-83f3-9867cad003fe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -339,7 +342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:32 GMT + - Wed, 11 May 2022 05:00:42 GMT expires: - '-1' pragma: @@ -349,14 +352,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 052d7247-c5cf-4f6f-84d7-d49ab560c080 + - 1e3a8705-599f-4a0d-8fab-f9c4f7424848 status: code: 200 message: OK @@ -374,9 +373,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dd93ea4-ed8a-4b48-b4b8-4235b6a74212?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd004dfa-70fe-43aa-83f3-9867cad003fe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -388,7 +387,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:20:42 GMT + - Wed, 11 May 2022 05:00:53 GMT expires: - '-1' pragma: @@ -398,14 +397,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bb0c905e-36ee-48b4-b8cb-222488f83977 + - f48df05c-f90b-4838-bb2b-7650a3286729 status: code: 200 message: OK @@ -423,9 +418,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dd93ea4-ed8a-4b48-b4b8-4235b6a74212?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd004dfa-70fe-43aa-83f3-9867cad003fe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -437,7 +432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:21:03 GMT + - Wed, 11 May 2022 05:01:18 GMT expires: - '-1' pragma: @@ -447,14 +442,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7925c9c4-d5b2-4151-8715-e91f66a0f80d + - 752bf57c-3302-496d-8fdc-759a738e98d7 status: code: 200 message: OK @@ -472,9 +463,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dd93ea4-ed8a-4b48-b4b8-4235b6a74212?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd004dfa-70fe-43aa-83f3-9867cad003fe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -486,7 +477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:21:23 GMT + - Wed, 11 May 2022 05:01:40 GMT expires: - '-1' pragma: @@ -496,14 +487,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 768ade16-3eae-46c9-ad3b-adc726650948 + - 60011aae-27f4-49d3-93fc-91babc1544c3 status: code: 200 message: OK @@ -521,9 +508,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dd93ea4-ed8a-4b48-b4b8-4235b6a74212?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd004dfa-70fe-43aa-83f3-9867cad003fe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -535,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:03 GMT + - Wed, 11 May 2022 05:02:27 GMT expires: - '-1' pragma: @@ -545,14 +532,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fc04a072-f707-4fae-ac70-6ce8d754a971 + - cc66eb96-c1c2-4ddf-a9a7-4aed39e5ea94 status: code: 200 message: OK @@ -570,9 +553,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dd93ea4-ed8a-4b48-b4b8-4235b6a74212?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd004dfa-70fe-43aa-83f3-9867cad003fe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -584,7 +567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:22:43 GMT + - Wed, 11 May 2022 05:03:47 GMT expires: - '-1' pragma: @@ -594,14 +577,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7782705f-1e74-4359-8c1c-3c4fb3d80453 + - 461f17d5-4028-430b-bec5-48b8542707de status: code: 200 message: OK @@ -619,58 +598,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dd93ea4-ed8a-4b48-b4b8-4235b6a74212?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 18 Sep 2021 07:24: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: - - 3ee4367e-2191-4e7b-8489-7ff3a62c53db - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix - User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dd93ea4-ed8a-4b48-b4b8-4235b6a74212?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd004dfa-70fe-43aa-83f3-9867cad003fe?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -682,7 +612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:26:46 GMT + - Wed, 11 May 2022 05:05:09 GMT expires: - '-1' pragma: @@ -692,14 +622,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee2f24c3-791f-4d5b-a5f1-57431f8882e4 + - 96b71be8-a0bc-4530-b984-22c555cf212b status: code: 200 message: OK @@ -717,28 +643,31 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualHubs/test-p2s-vhub?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualHubs/test-p2s-vhub?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test-p2s-vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualHubs/test-p2s-vhub\",\r\n - \ \"etag\": \"W/\\\"059cfcf7-f3fd-4234-af4b-442afe5a7bcf\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bf06f154-768a-47b0-beaf-e8958e7f2928\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": - []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan\"\r\n - \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": + 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualWans/test-p2s-vwan\"\r\n + \ },\r\n \"networkVirtualAppliances\": [],\r\n \"routingState\": \"Provisioning\",\r\n + \ \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": + \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '886' + - '1054' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:26:46 GMT + - Wed, 11 May 2022 05:05:09 GMT expires: - '-1' pragma: @@ -748,14 +677,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 355c756e-6c02-456c-ad93-73dd7c1bbcd7 + - cdbbe854-cecd-4480-8e7a-19cc1557a60e status: code: 200 message: OK @@ -773,21 +698,21 @@ interactions: ParameterSetName: - -g -n --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_p2s_vpn_client_generate000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001","name":"test_p2s_vpn_client_generate000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T07:19:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001","name":"test_p2s_vpn_client_generate000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T04:59:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '346' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:26:47 GMT + - Wed, 11 May 2022 05:05:09 GMT expires: - '-1' pragma: @@ -823,13 +748,13 @@ interactions: ParameterSetName: - -g -n --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/vpnServerConfigurations/test-p2s-vpn-server-config?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/vpnServerConfigurations/test-p2s-vpn-server-config?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test-p2s-vpn-server-config\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/vpnServerConfigurations/test-p2s-vpn-server-config\",\r\n - \ \"etag\": \"W/\\\"aaa6ec2a-93a3-4fd5-a003-c13069e3696d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"07d4ad4e-cc25-4765-aae1-e11785b0d58b\\\"\",\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\": @@ -840,21 +765,21 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\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/0d2dc7f6-20c9-42ad-8a9c-0e04c785b4a9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1cfd6824-6c5f-4b12-8a63-a0c1d97c8133?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2274' + - '2271' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:26:54 GMT + - Wed, 11 May 2022 05:05:16 GMT expires: - '-1' pragma: @@ -867,9 +792,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ff931d90-46f0-4ca4-a692-5de3cf123b13 + - 02e938ed-9a5f-43ba-bcb7-744170f7f754 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -887,9 +812,9 @@ interactions: ParameterSetName: - -g -n --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0d2dc7f6-20c9-42ad-8a9c-0e04c785b4a9?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1cfd6824-6c5f-4b12-8a63-a0c1d97c8133?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -901,7 +826,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:27:05 GMT + - Wed, 11 May 2022 05:05:26 GMT expires: - '-1' pragma: @@ -918,7 +843,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e69157de-b5ee-47c7-9178-3b5fcfaafe89 + - 747a19ab-b665-45af-8cd2-1f6e8f9a31fe status: code: 200 message: OK @@ -936,13 +861,13 @@ interactions: ParameterSetName: - -g -n --vpn-client-root-certs --vpn-client-revoked-certs User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/vpnServerConfigurations/test-p2s-vpn-server-config?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/vpnServerConfigurations/test-p2s-vpn-server-config?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test-p2s-vpn-server-config\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/vpnServerConfigurations/test-p2s-vpn-server-config\",\r\n - \ \"etag\": \"W/\\\"e27a1885-2fc0-4439-ba05-5b9517cc4850\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2b0ed0e3-49c6-401b-a398-4b71927c8544\\\"\",\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\": @@ -953,19 +878,19 @@ interactions: \ \"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}" + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"configurationPolicyGroups\": + [],\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2275' + - '2272' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:27:05 GMT + - Wed, 11 May 2022 05:05:27 GMT etag: - - W/"e27a1885-2fc0-4439-ba05-5b9517cc4850" + - W/"2b0ed0e3-49c6-401b-a398-4b71927c8544" expires: - '-1' pragma: @@ -982,7 +907,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 10262fb7-ce24-4a44-b9d6-fa3ee776fde2 + - 8d67ac26-3909-4f69-9d19-24528dc7b50d status: code: 200 message: OK @@ -1000,21 +925,21 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_p2s_vpn_client_generate000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001","name":"test_p2s_vpn_client_generate000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-18T07:19:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001","name":"test_p2s_vpn_client_generate000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-11T04:59:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '346' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:27:07 GMT + - Wed, 11 May 2022 05:05:28 GMT expires: - '-1' pragma: @@ -1044,19 +969,19 @@ interactions: Connection: - keep-alive Content-Length: - - '766' + - '684' Content-Type: - application/json ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2svpnGateways/test-p2s-gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2svpnGateways/test-p2s-gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test-p2s-gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2sVpnGateways/test-p2s-gateway\",\r\n - \ \"etag\": \"W/\\\"11a450ce-6b1f-4369-b783-53a18a6b6e8a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3c61842f-d51a-4077-bc20-6dd1033d84b6\\\"\",\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/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualHubs/test-p2s-vhub\"\r\n @@ -1064,7 +989,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2sVpnGateways/test-p2s-gateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"11a450ce-6b1f-4369-b783-53a18a6b6e8a\\\"\",\r\n + \ \"etag\": \"W/\\\"3c61842f-d51a-4077-bc20-6dd1033d84b6\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -1077,21 +1002,23 @@ interactions: \ \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"10.0.2.0/24\",\r\n \"11.0.1.0/24\"\r\n ]\r\n \ },\r\n \"enableInternetSecurity\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\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/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2824' + - '2681' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:27:15 GMT + - Wed, 11 May 2022 05:05:34 GMT expires: - '-1' pragma: @@ -1104,9 +1031,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 52e54744-9b52-496e-822b-5c14e1563f9c + - edd632e2-679a-45a8-a80a-6ffdc6a4e2a1 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -1124,9 +1051,58 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-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: + - Wed, 11 May 2022 05: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: + - d53574fd-fa0e-413b-8eb4-472712f9e1b5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub -n --scale-unit --address-space --vpn-server-config + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1138,7 +1114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:27:26 GMT + - Wed, 11 May 2022 05:05:55 GMT expires: - '-1' pragma: @@ -1155,7 +1131,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b3472507-59c4-436c-b233-ef31196f9967 + - 6f4aab6e-999b-401d-8678-0687ae2eaa9a status: code: 200 message: OK @@ -1173,9 +1149,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1187,7 +1163,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:27:36 GMT + - Wed, 11 May 2022 05:06:15 GMT expires: - '-1' pragma: @@ -1204,7 +1180,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1661fe80-efbd-41b0-9b39-e841e193e1b5 + - ec3d12dd-e49c-4cdb-af90-e41ac11a96b7 status: code: 200 message: OK @@ -1222,9 +1198,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1236,7 +1212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:27:57 GMT + - Wed, 11 May 2022 05:06:36 GMT expires: - '-1' pragma: @@ -1253,7 +1229,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9f51e9ec-ebac-472a-b328-ea3512a02fc4 + - 91033564-c5db-4c41-a77c-41d80b8ae064 status: code: 200 message: OK @@ -1271,9 +1247,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1285,7 +1261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:28:17 GMT + - Wed, 11 May 2022 05:07:16 GMT expires: - '-1' pragma: @@ -1302,7 +1278,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1a767e19-273b-4b44-81b5-b0d70140e07f + - 187fd461-d92c-4ffe-b398-6d052dc52953 status: code: 200 message: OK @@ -1320,9 +1296,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1334,7 +1310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:28:58 GMT + - Wed, 11 May 2022 05:07:57 GMT expires: - '-1' pragma: @@ -1351,7 +1327,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2bd0c356-e06f-4be6-b388-614d2f254536 + - 06672af8-f1eb-4fdf-99f5-f0da3a65e69c status: code: 200 message: OK @@ -1369,9 +1345,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1383,7 +1359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:29:39 GMT + - Wed, 11 May 2022 05:09:17 GMT expires: - '-1' pragma: @@ -1400,7 +1376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c0411561-c54d-42ec-8639-c4a32657a04b + - 19a352a0-d9b1-47e9-839b-f95118610a75 status: code: 200 message: OK @@ -1418,9 +1394,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1432,7 +1408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:30:59 GMT + - Wed, 11 May 2022 05:11:57 GMT expires: - '-1' pragma: @@ -1449,7 +1425,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 871e23d7-564b-490b-a2ca-97898627645e + - 60fdd5dc-4561-4f6b-ba2e-b75639a05f48 status: code: 200 message: OK @@ -1467,9 +1443,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1481,7 +1457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:33:39 GMT + - Wed, 11 May 2022 05:13:37 GMT expires: - '-1' pragma: @@ -1498,7 +1474,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 94fed200-e893-4481-9c29-91bb4351151d + - 98ff71a1-67c1-4966-b8cf-bb98437a523e status: code: 200 message: OK @@ -1516,9 +1492,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1530,7 +1506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:35:20 GMT + - Wed, 11 May 2022 05:15:18 GMT expires: - '-1' pragma: @@ -1547,7 +1523,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49cf18ed-f5ca-4611-96f9-80a417134c76 + - 77e2f426-ae64-4735-89aa-be3a79b50be0 status: code: 200 message: OK @@ -1565,9 +1541,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1579,7 +1555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:37:00 GMT + - Wed, 11 May 2022 05:16:58 GMT expires: - '-1' pragma: @@ -1596,7 +1572,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ea5b5cd2-19d3-4413-82d3-b8ef0423f3b9 + - 21f20c58-91d6-493e-b8f0-98cfea0df2e3 status: code: 200 message: OK @@ -1614,9 +1590,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1628,7 +1604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:38:41 GMT + - Wed, 11 May 2022 05:18:39 GMT expires: - '-1' pragma: @@ -1645,7 +1621,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d52a3b11-aa95-4f06-aaff-a76997d2cf52 + - 9885cc44-2b05-4a71-884e-05f110256697 status: code: 200 message: OK @@ -1663,9 +1639,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1677,7 +1653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:40:21 GMT + - Wed, 11 May 2022 05:20:19 GMT expires: - '-1' pragma: @@ -1694,7 +1670,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22c9b013-41fd-43a8-9479-6ca7211b94ed + - d587d902-8b8c-43c2-b758-cc3fb633f99b status: code: 200 message: OK @@ -1712,9 +1688,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1726,7 +1702,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:42:02 GMT + - Wed, 11 May 2022 05:21:59 GMT expires: - '-1' pragma: @@ -1743,7 +1719,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fd15aa5c-d3b0-404d-a8a6-d7e34fd1b6f0 + - 56172922-4012-49b6-a073-e31a6d8ade8d status: code: 200 message: OK @@ -1761,9 +1737,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1775,7 +1751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:43:41 GMT + - Wed, 11 May 2022 05:23:41 GMT expires: - '-1' pragma: @@ -1792,7 +1768,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 514ce3b1-b140-42ab-a7a9-79a22a7c299f + - ee9ff21e-0193-411f-b5f0-16cbc40910de status: code: 200 message: OK @@ -1810,9 +1786,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1824,7 +1800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:45:22 GMT + - Wed, 11 May 2022 05:25:21 GMT expires: - '-1' pragma: @@ -1841,7 +1817,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7b6de334-3af6-4546-be13-cf07ab862129 + - bce43f9a-8a6c-4232-b052-e0b846d9ce8e status: code: 200 message: OK @@ -1859,9 +1835,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1873,7 +1849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:47:03 GMT + - Wed, 11 May 2022 05:27:01 GMT expires: - '-1' pragma: @@ -1890,7 +1866,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3411056a-3867-4d8e-8bce-871af41768f2 + - 415cb7a5-4a40-4530-a531-fb73ce8b3e87 status: code: 200 message: OK @@ -1908,9 +1884,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1922,7 +1898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:48:43 GMT + - Wed, 11 May 2022 05:28:43 GMT expires: - '-1' pragma: @@ -1939,7 +1915,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 65364bb9-c99c-4b77-9222-89ecfb1a7192 + - d2b9f660-9f2a-422d-bcac-b17acb2204a0 status: code: 200 message: OK @@ -1957,9 +1933,9 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1971,7 +1947,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:50:24 GMT + - Wed, 11 May 2022 05:30:23 GMT expires: - '-1' pragma: @@ -1988,7 +1964,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1488f35d-89d4-40bf-bbdb-25ab35880ec0 + - 9b1301f3-b7b7-4fb3-8458-878c42b504b8 status: code: 200 message: OK @@ -2006,9 +1982,205 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e2ab9ab-13b8-4334-ab86-05e3d8229b87?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-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: + - Wed, 11 May 2022 05:32: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: + - f0b98ce2-0b5b-47ee-9831-6542f31f0bcb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub -n --scale-unit --address-space --vpn-server-config + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-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: + - Wed, 11 May 2022 05:33: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: + - c9a6db86-dc35-453c-9d6b-a1d2d71a5e4d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub -n --scale-unit --address-space --vpn-server-config + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-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: + - Wed, 11 May 2022 05:35: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: + - 4c8b1ed1-b4ed-4ae8-9dfa-08e572b2153c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub -n --scale-unit --address-space --vpn-server-config + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-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: + - Wed, 11 May 2022 05:37: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: + - dcef0966-6baf-46d8-a7ac-8fe2d259ff5a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub -n --scale-unit --address-space --vpn-server-config + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dd91913-16a2-42b1-bc9d-b6ffd94055d8?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2020,7 +2192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:52:03 GMT + - Wed, 11 May 2022 05:38:44 GMT expires: - '-1' pragma: @@ -2037,7 +2209,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22b94cfe-b955-4637-8b4f-5e4d457deb21 + - f8267af0-6e47-4bf4-b8a2-b80446cd84ea status: code: 200 message: OK @@ -2055,13 +2227,13 @@ interactions: ParameterSetName: - -g --vhub -n --scale-unit --address-space --vpn-server-config User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2svpnGateways/test-p2s-gateway?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2svpnGateways/test-p2s-gateway?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"test-p2s-gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2sVpnGateways/test-p2s-gateway\",\r\n - \ \"etag\": \"W/\\\"2c926e92-3fde-4c8d-9aed-7c35534766e8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5919b95e-7664-43bf-bcdc-4d84bb2872ce\\\"\",\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/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/virtualHubs/test-p2s-vhub\"\r\n @@ -2069,7 +2241,7 @@ interactions: \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2sVpnGateways/test-p2s-gateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n - \ \"etag\": \"W/\\\"2c926e92-3fde-4c8d-9aed-7c35534766e8\\\"\",\r\n + \ \"etag\": \"W/\\\"5919b95e-7664-43bf-bcdc-4d84bb2872ce\\\"\",\r\n \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": @@ -2082,19 +2254,21 @@ interactions: \ \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"10.0.2.0/24\",\r\n \"11.0.1.0/24\"\r\n ]\r\n \ },\r\n \"enableInternetSecurity\": true\r\n }\r\n - \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": - [],\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + \ }\r\n ],\r\n \"vpnGatewayDetachStatus\": \"Attached\",\r\n \"vpnGatewayScaleUnit\": + 2,\r\n \"customDnsServers\": [],\r\n \"isRoutingPreferenceInternet\": + false,\r\n \"useRadiusProxyIPs\": false,\r\n \"radiusProxyIPs\": []\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '2826' + - '2683' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:52:04 GMT + - Wed, 11 May 2022 05:38:44 GMT etag: - - W/"2c926e92-3fde-4c8d-9aed-7c35534766e8" + - W/"5919b95e-7664-43bf-bcdc-4d84bb2872ce" expires: - '-1' pragma: @@ -2111,7 +2285,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 06f0a622-36f9-435d-a17f-900583fc8008 + - 6cc5ef92-e370-43ee-9db0-18451aac08e5 status: code: 200 message: OK @@ -2133,15 +2307,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2svpnGateways/test-p2s-gateway/generatevpnprofile?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_p2s_vpn_client_generate000001/providers/Microsoft.Network/p2svpnGateways/test-p2s-gateway/generatevpnprofile?api-version=2021-08-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bd34ef5-898a-494e-b96e-8ae844c82c7d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eec3ed5c-8bae-4d46-a247-0b9841b937f0?api-version=2021-08-01 cache-control: - no-cache content-length: @@ -2149,11 +2323,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:52:07 GMT + - Wed, 11 May 2022 05:38:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4bd34ef5-898a-494e-b96e-8ae844c82c7d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/eec3ed5c-8bae-4d46-a247-0b9841b937f0?api-version=2021-08-01 pragma: - no-cache server: @@ -2164,7 +2338,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b0ad6eee-b366-4cc5-b815-be82c0e4d85c + - c2acd487-5149-417b-8e28-8d77c149208e x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2184,23 +2358,72 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eec3ed5c-8bae-4d46-a247-0b9841b937f0?api-version=2021-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: + - Wed, 11 May 2022 05:38: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: + - c4f5f56d-dc1f-4363-9aac-24a65c674bb6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway vpn-client generate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bd34ef5-898a-494e-b96e-8ae844c82c7d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eec3ed5c-8bae-4d46-a247-0b9841b937f0?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": - {\r\n \"profileUrl\": \"https://nfvprodsuppby.blob.core.windows.net/vpnprofileimmutable/c4c00031-4373-4a26-badf-3b7ddbc15185/vpnprofile/0a48ebac-27c3-4ffc-aead-12e3354cc192/vpnclientconfiguration.zip?sv=2018-03-28&sr=b&sig=00000000-0000-0000-0000-000000000000&fileExtension=.zip\"\r\n + {\r\n \"profileUrl\": \"https://nfvprodsuppby.blob.core.windows.net/vpnprofileimmutable/86360031-e27d-466f-9140-e22f21e27936/vpnprofile/5992aa3b-f613-459f-8f30-49731e34a35f/vpnclientconfiguration.zip?sv=2018-03-28&sr=b&sig=00000000-0000-0000-0000-000000000000&fileExtension=.zip\"\r\n \ }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '431' + - '356' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:52:17 GMT + - Wed, 11 May 2022 05:39:07 GMT expires: - '-1' pragma: @@ -2217,7 +2440,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 07271ba1-81e9-4ca0-a640-defec2582a0a + - e5795a8c-266a-41c7-81b5-f65185fd4f96 status: code: 200 message: OK @@ -2235,27 +2458,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4bd34ef5-898a-494e-b96e-8ae844c82c7d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/eec3ed5c-8bae-4d46-a247-0b9841b937f0?api-version=2021-08-01 response: body: - string: "{\r\n \"profileUrl\": \"https://nfvprodsuppby.blob.core.windows.net/vpnprofileimmutable/c4c00031-4373-4a26-badf-3b7ddbc15185/vpnprofile/0a48ebac-27c3-4ffc-aead-12e3354cc192/vpnclientconfiguration.zip?sv=2018-03-28&sr=b&sig=00000000-0000-0000-0000-000000000000&fileExtension=.zip\"\r\n}" + string: "{\r\n \"profileUrl\": \"https://nfvprodsuppby.blob.core.windows.net/vpnprofileimmutable/86360031-e27d-466f-9140-e22f21e27936/vpnprofile/5992aa3b-f613-459f-8f30-49731e34a35f/vpnclientconfiguration.zip?sv=2018-03-28&sr=b&sig=00000000-0000-0000-0000-000000000000&fileExtension=.zip\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bd34ef5-898a-494e-b96e-8ae844c82c7d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eec3ed5c-8bae-4d46-a247-0b9841b937f0?api-version=2021-08-01 cache-control: - no-cache content-length: - - '353' + - '278' content-type: - application/json; charset=utf-8 date: - - Sat, 18 Sep 2021 07:52:17 GMT + - Wed, 11 May 2022 05:39:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4bd34ef5-898a-494e-b96e-8ae844c82c7d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/eec3ed5c-8bae-4d46-a247-0b9841b937f0?api-version=2021-08-01 pragma: - no-cache server: @@ -2270,7 +2493,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b0ad6eee-b366-4cc5-b815-be82c0e4d85c + - c2acd487-5149-417b-8e28-8d77c149208e status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vhub_route_table_scenario.py b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vhub_route_table_scenario.py index 181e9e54f63..114164cd52a 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vhub_route_table_scenario.py +++ b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vhub_route_table_scenario.py @@ -4,6 +4,7 @@ # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) +from azure.cli.testsdk.scenario_tests import AllowLargeResponse class AzureVWanRouteTableScenario(ScenarioTest): @@ -50,6 +51,7 @@ def test_azure_vwan_route_table(self, resource_group): self.cmd('network vhub route-table delete -n {routetable} -g {rg} --vhub-name {vhub}') + @AllowLargeResponse(size_kb=10240) @ResourceGroupPreparer(name_prefix='cli_test_azure_vwan_route_table_v3', location='eastus') def test_azure_vwan_route_table_v3(self, resource_group): self.kwargs.update({ 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 5660518c3f3..182d9f0c9d4 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 @@ -5,10 +5,8 @@ import os import time -from unittest.case import skip from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, VirtualNetworkPreparer, record_only) -from azure.cli.testsdk.checkers import StringContainCheck from azure.core.exceptions import HttpResponseError from .credential_replacer import VpnClientGeneratedURLReplacer @@ -26,9 +24,21 @@ def test_azure_vwan_vhub_basic_scenario(self, 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.0.0.0/24 -l SouthCentralUS --sku Standard') - - self.cmd('network vhub update -g {rg} -n {vhub} --sku Basic') + self.cmd( + 'network vhub create -g {rg} -n {vhub} --vwan {vwan} --address-prefix 10.0.0.0/24 -l SouthCentralUS ' + '--sku Standard --hub-routing-preference ExpressRoute', + checks=[ + self.check('sku', 'Standard'), + self.check('hubRoutingPreference', 'ExpressRoute') + ] + ) + self.cmd( + 'network vhub update -g {rg} -n {vhub} --sku Basic --hub-routing-preference VpnGateway', + checks=[ + self.check('sku', 'Basic'), + self.check('hubRoutingPreference', 'VpnGateway') + ] + ) self.cmd('network vwan update -g {rg} -n {vwan} --type Basic') @ResourceGroupPreparer(name_prefix='cli_test_azure_vwan_route') @@ -186,7 +196,7 @@ def test_azure_vpn_server_config_multi_auth(self, resource_group): '--aad-audience {aad_audience} ' '--aad-issuer {aad_issuer} ' '--aad-tenant {aad_tenant} ' - '--auth-types Radius AAD Certificate', + '--auth-types Radius AAD Certificate --protocols OpenVPN', checks=[ self.check('name', '{vserverconfig}'), self.exists('vpnClientRootCertificates[0].publicCertData'), @@ -206,7 +216,7 @@ def test_azure_vpn_server_config_multi_auth(self, resource_group): '--aad-audience {aad_audience} ' '--aad-issuer {aad_issuer} ' '--aad-tenant {aad_tenant} ' - '--auth-types Radius AAD Certificate', + '--auth-types Radius AAD Certificate --protocols OpenVPN', checks=[ self.check('name', '{vserverconfig1}'), self.check('length(vpnClientRootCertificates)', 1), @@ -306,7 +316,7 @@ def test_azure_vwan_vpn_gateway_connection(self): self.cmd('network vpn-gateway create -g {rg} --vhub {vhub} --name {vpngateway}', checks=[]) - self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.1.110') + self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.2.110 --address-prefixes 10.0.2.0/24') self.cmd('network vpn-gateway connection create ' '-g {rg} ' @@ -396,7 +406,7 @@ def test_azure_vwan_vpn_gateway_connection_vpn_site_link(self): checks=[]) # Test vpn site with links - self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.1.110') + self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.2.110 --address-prefixes 10.0.2.0/24') with self.assertRaisesRegexp(HttpResponseError, 'MissingDefaultLinkForVpnSiteDuringMigrationToLinkFormat'): self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.1.111 --asn 1234 --bgp-peering-address 192.168.0.0') # Test ipsec policy @@ -414,9 +424,9 @@ def test_azure_vwan_vpn_gateway_connection_vpn_site_link(self): self.cmd('network vpn-gateway connection delete -g {rg} -n {connection} --gateway-name {vpngateway}') self.cmd('network vpn-site delete -g {rg} -n {vpn_site}') - self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.1.110 --with-link') - self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.1.111 --asn 1234 --bgp-peering-address 192.168.1.0') - self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_2_name} --ip-address 10.0.1.112 --asn 1234 --bgp-peering-address 192.168.2.0') + self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.4.110 --with-link --address-prefixes 10.0.4.0/24') + self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.4.111 --asn 1234 --bgp-peering-address 192.168.1.0') + self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_2_name} --ip-address 10.0.4.112 --asn 1234 --bgp-peering-address 192.168.2.0') self.cmd('network vpn-site link list -g {rg} --site-name {vpn_site}') self.cmd('network vpn-site link remove -g {rg} --site-name {vpn_site} --index 2') @@ -450,8 +460,8 @@ def test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn(self): self.cmd('network vpn-gateway create -g {rg} --vhub {vhub} --name {vpngateway}', checks=[]) - self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.1.110 --with-link') - self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.1.111 --asn 1234 --bgp-peering-address 192.168.1.0') + self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.2.110 --with-link --address-prefixes 10.0.2.0/24') + self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.2.111 --asn 1234 --bgp-peering-address 192.168.1.0') # Test vpn gateway connection with links self.cmd('network vpn-gateway connection create ' @@ -514,8 +524,8 @@ def test_azure_vwan_vpn_site_link_conn_ipsec_policy(self): self.cmd('network vpn-gateway create -g {rg} --vhub {vhub} --name {vpngateway}', checks=[]) - self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.1.110 --with-link') - self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.1.111 --asn 1234 --bgp-peering-address 192.168.1.0') + self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.2.110 --with-link --address-prefixes 10.0.2.0/24') + self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.2.111 --asn 1234 --bgp-peering-address 192.168.1.0') # Test vpn gateway connection with links self.cmd('network vpn-gateway connection create ' diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/__init__.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/__init__.py new file mode 100644 index 00000000000..202b38f8e29 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/__init__.py @@ -0,0 +1,16 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._network_management_client import NetworkManagementClient +__all__ = ['NetworkManagementClient'] + +try: + from ._patch import patch_sdk # type: ignore + patch_sdk() +except ImportError: + pass diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_configuration.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_configuration.py new file mode 100644 index 00000000000..ec5135c0a7d --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_configuration.py @@ -0,0 +1,71 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +from typing import TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy + +from ._version import VERSION + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any + + from azure.core.credentials import TokenCredential + +class NetworkManagementClientConfiguration(Configuration): + """Configuration for NetworkManagementClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + """ + + def __init__( + self, + credential, # type: "TokenCredential" + subscription_id, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + super(NetworkManagementClientConfiguration, self).__init__(**kwargs) + + self.credential = credential + self.subscription_id = subscription_id + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'azure-mgmt-network/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs # type: Any + ): + # type: (...) -> None + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_network_management_client.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_network_management_client.py new file mode 100644 index 00000000000..058d9a177a6 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_network_management_client.py @@ -0,0 +1,8826 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from typing import TYPE_CHECKING + +from msrest import Deserializer, Serializer + +from azure.mgmt.core import ARMPipelineClient +from azure.profiles import KnownProfiles, ProfileDefinition +from azure.profiles.multiapiclient import MultiApiClientMixin + +from ._configuration import NetworkManagementClientConfiguration +from ._operations_mixin import NetworkManagementClientOperationsMixin + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Optional + + from azure.core.credentials import TokenCredential + +class _SDKClient(object): + def __init__(self, *args, **kwargs): + """This is a fake class to support current implemetation of MultiApiClientMixin." + Will be removed in final version of multiapi azure-core based client + """ + pass + +class NetworkManagementClient(NetworkManagementClientOperationsMixin, MultiApiClientMixin, _SDKClient): + """Network Client. + + This ready contains multiple API versions, to help you deal with all of the Azure clouds + (Azure Stack, Azure Government, Azure China, etc.). + By default, it uses the latest API version available on public Azure. + For production, you should stick to a particular api-version and/or profile. + The profile sets a mapping between an operation group and its API version. + The api-version parameter sets the default API version if the operation + group is not described in the profile. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + :param api_version: API version to use if no profile is provided, or if missing in profile. + :type api_version: str + :param base_url: Service URL + :type base_url: str + :param profile: A profile definition, from KnownProfiles to dict. + :type profile: azure.profiles.KnownProfiles + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + """ + + DEFAULT_API_VERSION = '2021-08-01' + _PROFILE_TAG = "azure.mgmt.network.NetworkManagementClient" + LATEST_PROFILE = ProfileDefinition({ + _PROFILE_TAG: { + None: DEFAULT_API_VERSION, + 'active_connectivity_configurations': '2021-02-01-preview', + 'active_security_admin_rules': '2021-02-01-preview', + 'active_security_user_rules': '2021-02-01-preview', + 'admin_rule_collections': '2021-02-01-preview', + 'admin_rules': '2021-02-01-preview', + 'connectivity_configurations': '2021-02-01-preview', + 'effective_connectivity_configurations': '2021-02-01-preview', + 'effective_virtual_networks': '2021-02-01-preview', + 'firewall_policy_rule_groups': '2020-04-01', + 'interface_endpoints': '2019-02-01', + 'network_groups': '2021-02-01-preview', + 'network_manager_commits': '2021-02-01-preview', + 'network_manager_deployment_status': '2021-02-01-preview', + 'network_manager_effective_security_admin_rules': '2021-02-01-preview', + 'network_managers': '2021-02-01-preview', + 'network_security_perimeters': '2021-02-01-preview', + 'nsp_access_rules': '2021-02-01-preview', + 'nsp_associations': '2021-02-01-preview', + 'nsp_profiles': '2021-02-01-preview', + 'p2_svpn_server_configurations': '2019-07-01', + 'perimeter_associable_resource_types': '2021-02-01-preview', + 'security_admin_configurations': '2021-02-01-preview', + 'security_user_configurations': '2021-02-01-preview', + 'user_rule_collections': '2021-02-01-preview', + 'user_rules': '2021-02-01-preview', + }}, + _PROFILE_TAG + " latest" + ) + + def __init__( + self, + credential, # type: "TokenCredential" + subscription_id, # type: str + api_version=None, # type: Optional[str] + base_url="https://management.azure.com", # type: str + profile=KnownProfiles.default, # type: KnownProfiles + **kwargs # type: Any + ): + self._config = NetworkManagementClientConfiguration(credential, subscription_id, **kwargs) + self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs) + super(NetworkManagementClient, self).__init__( + api_version=api_version, + profile=profile + ) + + @classmethod + def _models_dict(cls, api_version): + return {k: v for k, v in cls.models(api_version).__dict__.items() if isinstance(v, type)} + + @classmethod + def models(cls, api_version=DEFAULT_API_VERSION): + """Module depends on the API version: + + * 2015-06-15: :mod:`v2015_06_15.models` + * 2016-09-01: :mod:`v2016_09_01.models` + * 2016-12-01: :mod:`v2016_12_01.models` + * 2017-03-01: :mod:`v2017_03_01.models` + * 2017-06-01: :mod:`v2017_06_01.models` + * 2017-10-01: :mod:`v2017_10_01.models` + * 2018-01-01: :mod:`v2018_01_01.models` + * 2018-02-01: :mod:`v2018_02_01.models` + * 2018-04-01: :mod:`v2018_04_01.models` + * 2018-06-01: :mod:`v2018_06_01.models` + * 2018-07-01: :mod:`v2018_07_01.models` + * 2018-08-01: :mod:`v2018_08_01.models` + * 2018-10-01: :mod:`v2018_10_01.models` + * 2018-11-01: :mod:`v2018_11_01.models` + * 2018-12-01: :mod:`v2018_12_01.models` + * 2019-02-01: :mod:`v2019_02_01.models` + * 2019-04-01: :mod:`v2019_04_01.models` + * 2019-06-01: :mod:`v2019_06_01.models` + * 2019-07-01: :mod:`v2019_07_01.models` + * 2019-08-01: :mod:`v2019_08_01.models` + * 2019-09-01: :mod:`v2019_09_01.models` + * 2019-11-01: :mod:`v2019_11_01.models` + * 2019-12-01: :mod:`v2019_12_01.models` + * 2020-03-01: :mod:`v2020_03_01.models` + * 2020-04-01: :mod:`v2020_04_01.models` + * 2020-05-01: :mod:`v2020_05_01.models` + * 2020-06-01: :mod:`v2020_06_01.models` + * 2020-07-01: :mod:`v2020_07_01.models` + * 2020-08-01: :mod:`v2020_08_01.models` + * 2020-11-01: :mod:`v2020_11_01.models` + * 2021-02-01: :mod:`v2021_02_01.models` + * 2021-02-01-preview: :mod:`v2021_02_01_preview.models` + * 2021-05-01: :mod:`v2021_05_01.models` + * 2021-08-01: :mod:`v2021_08_01.models` + """ + if api_version == '2015-06-15': + from .v2015_06_15 import models + return models + elif api_version == '2016-09-01': + from .v2016_09_01 import models + return models + elif api_version == '2016-12-01': + from .v2016_12_01 import models + return models + elif api_version == '2017-03-01': + from .v2017_03_01 import models + return models + elif api_version == '2017-06-01': + from .v2017_06_01 import models + return models + elif api_version == '2017-10-01': + from .v2017_10_01 import models + return models + elif api_version == '2018-01-01': + from .v2018_01_01 import models + return models + elif api_version == '2018-02-01': + from .v2018_02_01 import models + return models + elif api_version == '2018-04-01': + from .v2018_04_01 import models + return models + elif api_version == '2018-06-01': + from .v2018_06_01 import models + return models + elif api_version == '2018-07-01': + from .v2018_07_01 import models + return models + elif api_version == '2018-08-01': + from .v2018_08_01 import models + return models + elif api_version == '2018-10-01': + from .v2018_10_01 import models + return models + elif api_version == '2018-11-01': + from .v2018_11_01 import models + return models + elif api_version == '2018-12-01': + from .v2018_12_01 import models + return models + elif api_version == '2019-02-01': + from .v2019_02_01 import models + return models + elif api_version == '2019-04-01': + from .v2019_04_01 import models + return models + elif api_version == '2019-06-01': + from .v2019_06_01 import models + return models + elif api_version == '2019-07-01': + from .v2019_07_01 import models + return models + elif api_version == '2019-08-01': + from .v2019_08_01 import models + return models + elif api_version == '2019-09-01': + from .v2019_09_01 import models + return models + elif api_version == '2019-11-01': + from .v2019_11_01 import models + return models + elif api_version == '2019-12-01': + from .v2019_12_01 import models + return models + elif api_version == '2020-03-01': + from .v2020_03_01 import models + return models + elif api_version == '2020-04-01': + from .v2020_04_01 import models + return models + elif api_version == '2020-05-01': + from .v2020_05_01 import models + return models + elif api_version == '2020-06-01': + from .v2020_06_01 import models + return models + elif api_version == '2020-07-01': + from .v2020_07_01 import models + return models + elif api_version == '2020-08-01': + from .v2020_08_01 import models + return models + elif api_version == '2020-11-01': + from .v2020_11_01 import models + return models + elif api_version == '2021-02-01': + from .v2021_02_01 import models + return models + elif api_version == '2021-02-01-preview': + from .v2021_02_01_preview import models + return models + elif api_version == '2021-05-01': + from .v2021_05_01 import models + return models + elif api_version == '2021-08-01': + from .v2021_08_01 import models + return models + raise ValueError("API version {} is not available".format(api_version)) + + @property + def active_connectivity_configurations(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`ActiveConnectivityConfigurationsOperations` + """ + api_version = self._get_api_version('active_connectivity_configurations') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import ActiveConnectivityConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'active_connectivity_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def active_security_admin_rules(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`ActiveSecurityAdminRulesOperations` + """ + api_version = self._get_api_version('active_security_admin_rules') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import ActiveSecurityAdminRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'active_security_admin_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def active_security_user_rules(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`ActiveSecurityUserRulesOperations` + """ + api_version = self._get_api_version('active_security_user_rules') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import ActiveSecurityUserRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'active_security_user_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def admin_rule_collections(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`AdminRuleCollectionsOperations` + """ + api_version = self._get_api_version('admin_rule_collections') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import AdminRuleCollectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'admin_rule_collections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def admin_rules(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`AdminRulesOperations` + """ + api_version = self._get_api_version('admin_rules') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import AdminRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'admin_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def application_gateway_private_endpoint_connections(self): + """Instance depends on the API version: + + * 2020-05-01: :class:`ApplicationGatewayPrivateEndpointConnectionsOperations` + * 2020-06-01: :class:`ApplicationGatewayPrivateEndpointConnectionsOperations` + * 2020-07-01: :class:`ApplicationGatewayPrivateEndpointConnectionsOperations` + * 2020-08-01: :class:`ApplicationGatewayPrivateEndpointConnectionsOperations` + * 2020-11-01: :class:`ApplicationGatewayPrivateEndpointConnectionsOperations` + * 2021-02-01: :class:`ApplicationGatewayPrivateEndpointConnectionsOperations` + * 2021-05-01: :class:`ApplicationGatewayPrivateEndpointConnectionsOperations` + * 2021-08-01: :class:`ApplicationGatewayPrivateEndpointConnectionsOperations` + """ + api_version = self._get_api_version('application_gateway_private_endpoint_connections') + if api_version == '2020-05-01': + from .v2020_05_01.operations import ApplicationGatewayPrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ApplicationGatewayPrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ApplicationGatewayPrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ApplicationGatewayPrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ApplicationGatewayPrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ApplicationGatewayPrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ApplicationGatewayPrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ApplicationGatewayPrivateEndpointConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'application_gateway_private_endpoint_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def application_gateway_private_link_resources(self): + """Instance depends on the API version: + + * 2020-05-01: :class:`ApplicationGatewayPrivateLinkResourcesOperations` + * 2020-06-01: :class:`ApplicationGatewayPrivateLinkResourcesOperations` + * 2020-07-01: :class:`ApplicationGatewayPrivateLinkResourcesOperations` + * 2020-08-01: :class:`ApplicationGatewayPrivateLinkResourcesOperations` + * 2020-11-01: :class:`ApplicationGatewayPrivateLinkResourcesOperations` + * 2021-02-01: :class:`ApplicationGatewayPrivateLinkResourcesOperations` + * 2021-05-01: :class:`ApplicationGatewayPrivateLinkResourcesOperations` + * 2021-08-01: :class:`ApplicationGatewayPrivateLinkResourcesOperations` + """ + api_version = self._get_api_version('application_gateway_private_link_resources') + if api_version == '2020-05-01': + from .v2020_05_01.operations import ApplicationGatewayPrivateLinkResourcesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ApplicationGatewayPrivateLinkResourcesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ApplicationGatewayPrivateLinkResourcesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ApplicationGatewayPrivateLinkResourcesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ApplicationGatewayPrivateLinkResourcesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ApplicationGatewayPrivateLinkResourcesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ApplicationGatewayPrivateLinkResourcesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ApplicationGatewayPrivateLinkResourcesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'application_gateway_private_link_resources'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def application_gateways(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`ApplicationGatewaysOperations` + * 2016-09-01: :class:`ApplicationGatewaysOperations` + * 2016-12-01: :class:`ApplicationGatewaysOperations` + * 2017-03-01: :class:`ApplicationGatewaysOperations` + * 2017-06-01: :class:`ApplicationGatewaysOperations` + * 2017-10-01: :class:`ApplicationGatewaysOperations` + * 2018-01-01: :class:`ApplicationGatewaysOperations` + * 2018-02-01: :class:`ApplicationGatewaysOperations` + * 2018-04-01: :class:`ApplicationGatewaysOperations` + * 2018-06-01: :class:`ApplicationGatewaysOperations` + * 2018-07-01: :class:`ApplicationGatewaysOperations` + * 2018-08-01: :class:`ApplicationGatewaysOperations` + * 2018-10-01: :class:`ApplicationGatewaysOperations` + * 2018-11-01: :class:`ApplicationGatewaysOperations` + * 2018-12-01: :class:`ApplicationGatewaysOperations` + * 2019-02-01: :class:`ApplicationGatewaysOperations` + * 2019-04-01: :class:`ApplicationGatewaysOperations` + * 2019-06-01: :class:`ApplicationGatewaysOperations` + * 2019-07-01: :class:`ApplicationGatewaysOperations` + * 2019-08-01: :class:`ApplicationGatewaysOperations` + * 2019-09-01: :class:`ApplicationGatewaysOperations` + * 2019-11-01: :class:`ApplicationGatewaysOperations` + * 2019-12-01: :class:`ApplicationGatewaysOperations` + * 2020-03-01: :class:`ApplicationGatewaysOperations` + * 2020-04-01: :class:`ApplicationGatewaysOperations` + * 2020-05-01: :class:`ApplicationGatewaysOperations` + * 2020-06-01: :class:`ApplicationGatewaysOperations` + * 2020-07-01: :class:`ApplicationGatewaysOperations` + * 2020-08-01: :class:`ApplicationGatewaysOperations` + * 2020-11-01: :class:`ApplicationGatewaysOperations` + * 2021-02-01: :class:`ApplicationGatewaysOperations` + * 2021-05-01: :class:`ApplicationGatewaysOperations` + * 2021-08-01: :class:`ApplicationGatewaysOperations` + """ + api_version = self._get_api_version('application_gateways') + if api_version == '2015-06-15': + from .v2015_06_15.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ApplicationGatewaysOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ApplicationGatewaysOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'application_gateways'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def application_security_groups(self): + """Instance depends on the API version: + + * 2017-10-01: :class:`ApplicationSecurityGroupsOperations` + * 2018-01-01: :class:`ApplicationSecurityGroupsOperations` + * 2018-02-01: :class:`ApplicationSecurityGroupsOperations` + * 2018-04-01: :class:`ApplicationSecurityGroupsOperations` + * 2018-06-01: :class:`ApplicationSecurityGroupsOperations` + * 2018-07-01: :class:`ApplicationSecurityGroupsOperations` + * 2018-08-01: :class:`ApplicationSecurityGroupsOperations` + * 2018-10-01: :class:`ApplicationSecurityGroupsOperations` + * 2018-11-01: :class:`ApplicationSecurityGroupsOperations` + * 2018-12-01: :class:`ApplicationSecurityGroupsOperations` + * 2019-02-01: :class:`ApplicationSecurityGroupsOperations` + * 2019-04-01: :class:`ApplicationSecurityGroupsOperations` + * 2019-06-01: :class:`ApplicationSecurityGroupsOperations` + * 2019-07-01: :class:`ApplicationSecurityGroupsOperations` + * 2019-08-01: :class:`ApplicationSecurityGroupsOperations` + * 2019-09-01: :class:`ApplicationSecurityGroupsOperations` + * 2019-11-01: :class:`ApplicationSecurityGroupsOperations` + * 2019-12-01: :class:`ApplicationSecurityGroupsOperations` + * 2020-03-01: :class:`ApplicationSecurityGroupsOperations` + * 2020-04-01: :class:`ApplicationSecurityGroupsOperations` + * 2020-05-01: :class:`ApplicationSecurityGroupsOperations` + * 2020-06-01: :class:`ApplicationSecurityGroupsOperations` + * 2020-07-01: :class:`ApplicationSecurityGroupsOperations` + * 2020-08-01: :class:`ApplicationSecurityGroupsOperations` + * 2020-11-01: :class:`ApplicationSecurityGroupsOperations` + * 2021-02-01: :class:`ApplicationSecurityGroupsOperations` + * 2021-05-01: :class:`ApplicationSecurityGroupsOperations` + * 2021-08-01: :class:`ApplicationSecurityGroupsOperations` + """ + api_version = self._get_api_version('application_security_groups') + if api_version == '2017-10-01': + from .v2017_10_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ApplicationSecurityGroupsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ApplicationSecurityGroupsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'application_security_groups'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def available_delegations(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`AvailableDelegationsOperations` + * 2018-10-01: :class:`AvailableDelegationsOperations` + * 2018-11-01: :class:`AvailableDelegationsOperations` + * 2018-12-01: :class:`AvailableDelegationsOperations` + * 2019-02-01: :class:`AvailableDelegationsOperations` + * 2019-04-01: :class:`AvailableDelegationsOperations` + * 2019-06-01: :class:`AvailableDelegationsOperations` + * 2019-07-01: :class:`AvailableDelegationsOperations` + * 2019-08-01: :class:`AvailableDelegationsOperations` + * 2019-09-01: :class:`AvailableDelegationsOperations` + * 2019-11-01: :class:`AvailableDelegationsOperations` + * 2019-12-01: :class:`AvailableDelegationsOperations` + * 2020-03-01: :class:`AvailableDelegationsOperations` + * 2020-04-01: :class:`AvailableDelegationsOperations` + * 2020-05-01: :class:`AvailableDelegationsOperations` + * 2020-06-01: :class:`AvailableDelegationsOperations` + * 2020-07-01: :class:`AvailableDelegationsOperations` + * 2020-08-01: :class:`AvailableDelegationsOperations` + * 2020-11-01: :class:`AvailableDelegationsOperations` + * 2021-02-01: :class:`AvailableDelegationsOperations` + * 2021-05-01: :class:`AvailableDelegationsOperations` + * 2021-08-01: :class:`AvailableDelegationsOperations` + """ + api_version = self._get_api_version('available_delegations') + if api_version == '2018-08-01': + from .v2018_08_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import AvailableDelegationsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import AvailableDelegationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'available_delegations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def available_endpoint_services(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`AvailableEndpointServicesOperations` + * 2017-10-01: :class:`AvailableEndpointServicesOperations` + * 2018-01-01: :class:`AvailableEndpointServicesOperations` + * 2018-02-01: :class:`AvailableEndpointServicesOperations` + * 2018-04-01: :class:`AvailableEndpointServicesOperations` + * 2018-06-01: :class:`AvailableEndpointServicesOperations` + * 2018-07-01: :class:`AvailableEndpointServicesOperations` + * 2018-08-01: :class:`AvailableEndpointServicesOperations` + * 2018-10-01: :class:`AvailableEndpointServicesOperations` + * 2018-11-01: :class:`AvailableEndpointServicesOperations` + * 2018-12-01: :class:`AvailableEndpointServicesOperations` + * 2019-02-01: :class:`AvailableEndpointServicesOperations` + * 2019-04-01: :class:`AvailableEndpointServicesOperations` + * 2019-06-01: :class:`AvailableEndpointServicesOperations` + * 2019-07-01: :class:`AvailableEndpointServicesOperations` + * 2019-08-01: :class:`AvailableEndpointServicesOperations` + * 2019-09-01: :class:`AvailableEndpointServicesOperations` + * 2019-11-01: :class:`AvailableEndpointServicesOperations` + * 2019-12-01: :class:`AvailableEndpointServicesOperations` + * 2020-03-01: :class:`AvailableEndpointServicesOperations` + * 2020-04-01: :class:`AvailableEndpointServicesOperations` + * 2020-05-01: :class:`AvailableEndpointServicesOperations` + * 2020-06-01: :class:`AvailableEndpointServicesOperations` + * 2020-07-01: :class:`AvailableEndpointServicesOperations` + * 2020-08-01: :class:`AvailableEndpointServicesOperations` + * 2020-11-01: :class:`AvailableEndpointServicesOperations` + * 2021-02-01: :class:`AvailableEndpointServicesOperations` + * 2021-05-01: :class:`AvailableEndpointServicesOperations` + * 2021-08-01: :class:`AvailableEndpointServicesOperations` + """ + api_version = self._get_api_version('available_endpoint_services') + if api_version == '2017-06-01': + from .v2017_06_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import AvailableEndpointServicesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import AvailableEndpointServicesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'available_endpoint_services'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def available_private_endpoint_types(self): + """Instance depends on the API version: + + * 2019-04-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2019-06-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2019-07-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2019-08-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2019-09-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2019-11-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2019-12-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2020-03-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2020-04-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2020-05-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2020-06-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2020-07-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2020-08-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2020-11-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2021-02-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2021-05-01: :class:`AvailablePrivateEndpointTypesOperations` + * 2021-08-01: :class:`AvailablePrivateEndpointTypesOperations` + """ + api_version = self._get_api_version('available_private_endpoint_types') + if api_version == '2019-04-01': + from .v2019_04_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import AvailablePrivateEndpointTypesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'available_private_endpoint_types'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def available_resource_group_delegations(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2018-10-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2018-11-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2018-12-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2019-02-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2019-04-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2019-06-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2019-07-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2019-08-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2019-09-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2019-11-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2019-12-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2020-03-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2020-04-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2020-05-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2020-06-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2020-07-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2020-08-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2020-11-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2021-02-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2021-05-01: :class:`AvailableResourceGroupDelegationsOperations` + * 2021-08-01: :class:`AvailableResourceGroupDelegationsOperations` + """ + api_version = self._get_api_version('available_resource_group_delegations') + if api_version == '2018-08-01': + from .v2018_08_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import AvailableResourceGroupDelegationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'available_resource_group_delegations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def available_service_aliases(self): + """Instance depends on the API version: + + * 2019-08-01: :class:`AvailableServiceAliasesOperations` + * 2019-09-01: :class:`AvailableServiceAliasesOperations` + * 2019-11-01: :class:`AvailableServiceAliasesOperations` + * 2019-12-01: :class:`AvailableServiceAliasesOperations` + * 2020-03-01: :class:`AvailableServiceAliasesOperations` + * 2020-04-01: :class:`AvailableServiceAliasesOperations` + * 2020-05-01: :class:`AvailableServiceAliasesOperations` + * 2020-06-01: :class:`AvailableServiceAliasesOperations` + * 2020-07-01: :class:`AvailableServiceAliasesOperations` + * 2020-08-01: :class:`AvailableServiceAliasesOperations` + * 2020-11-01: :class:`AvailableServiceAliasesOperations` + * 2021-02-01: :class:`AvailableServiceAliasesOperations` + * 2021-05-01: :class:`AvailableServiceAliasesOperations` + * 2021-08-01: :class:`AvailableServiceAliasesOperations` + """ + api_version = self._get_api_version('available_service_aliases') + if api_version == '2019-08-01': + from .v2019_08_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import AvailableServiceAliasesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import AvailableServiceAliasesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'available_service_aliases'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def azure_firewall_fqdn_tags(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`AzureFirewallFqdnTagsOperations` + * 2018-10-01: :class:`AzureFirewallFqdnTagsOperations` + * 2018-11-01: :class:`AzureFirewallFqdnTagsOperations` + * 2018-12-01: :class:`AzureFirewallFqdnTagsOperations` + * 2019-02-01: :class:`AzureFirewallFqdnTagsOperations` + * 2019-04-01: :class:`AzureFirewallFqdnTagsOperations` + * 2019-06-01: :class:`AzureFirewallFqdnTagsOperations` + * 2019-07-01: :class:`AzureFirewallFqdnTagsOperations` + * 2019-08-01: :class:`AzureFirewallFqdnTagsOperations` + * 2019-09-01: :class:`AzureFirewallFqdnTagsOperations` + * 2019-11-01: :class:`AzureFirewallFqdnTagsOperations` + * 2019-12-01: :class:`AzureFirewallFqdnTagsOperations` + * 2020-03-01: :class:`AzureFirewallFqdnTagsOperations` + * 2020-04-01: :class:`AzureFirewallFqdnTagsOperations` + * 2020-05-01: :class:`AzureFirewallFqdnTagsOperations` + * 2020-06-01: :class:`AzureFirewallFqdnTagsOperations` + * 2020-07-01: :class:`AzureFirewallFqdnTagsOperations` + * 2020-08-01: :class:`AzureFirewallFqdnTagsOperations` + * 2020-11-01: :class:`AzureFirewallFqdnTagsOperations` + * 2021-02-01: :class:`AzureFirewallFqdnTagsOperations` + * 2021-05-01: :class:`AzureFirewallFqdnTagsOperations` + * 2021-08-01: :class:`AzureFirewallFqdnTagsOperations` + """ + api_version = self._get_api_version('azure_firewall_fqdn_tags') + if api_version == '2018-08-01': + from .v2018_08_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import AzureFirewallFqdnTagsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'azure_firewall_fqdn_tags'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def azure_firewalls(self): + """Instance depends on the API version: + + * 2018-04-01: :class:`AzureFirewallsOperations` + * 2018-06-01: :class:`AzureFirewallsOperations` + * 2018-07-01: :class:`AzureFirewallsOperations` + * 2018-08-01: :class:`AzureFirewallsOperations` + * 2018-10-01: :class:`AzureFirewallsOperations` + * 2018-11-01: :class:`AzureFirewallsOperations` + * 2018-12-01: :class:`AzureFirewallsOperations` + * 2019-02-01: :class:`AzureFirewallsOperations` + * 2019-04-01: :class:`AzureFirewallsOperations` + * 2019-06-01: :class:`AzureFirewallsOperations` + * 2019-07-01: :class:`AzureFirewallsOperations` + * 2019-08-01: :class:`AzureFirewallsOperations` + * 2019-09-01: :class:`AzureFirewallsOperations` + * 2019-11-01: :class:`AzureFirewallsOperations` + * 2019-12-01: :class:`AzureFirewallsOperations` + * 2020-03-01: :class:`AzureFirewallsOperations` + * 2020-04-01: :class:`AzureFirewallsOperations` + * 2020-05-01: :class:`AzureFirewallsOperations` + * 2020-06-01: :class:`AzureFirewallsOperations` + * 2020-07-01: :class:`AzureFirewallsOperations` + * 2020-08-01: :class:`AzureFirewallsOperations` + * 2020-11-01: :class:`AzureFirewallsOperations` + * 2021-02-01: :class:`AzureFirewallsOperations` + * 2021-05-01: :class:`AzureFirewallsOperations` + * 2021-08-01: :class:`AzureFirewallsOperations` + """ + api_version = self._get_api_version('azure_firewalls') + if api_version == '2018-04-01': + from .v2018_04_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import AzureFirewallsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import AzureFirewallsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'azure_firewalls'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def bastion_hosts(self): + """Instance depends on the API version: + + * 2019-04-01: :class:`BastionHostsOperations` + * 2019-06-01: :class:`BastionHostsOperations` + * 2019-07-01: :class:`BastionHostsOperations` + * 2019-08-01: :class:`BastionHostsOperations` + * 2019-09-01: :class:`BastionHostsOperations` + * 2019-11-01: :class:`BastionHostsOperations` + * 2019-12-01: :class:`BastionHostsOperations` + * 2020-03-01: :class:`BastionHostsOperations` + * 2020-04-01: :class:`BastionHostsOperations` + * 2020-05-01: :class:`BastionHostsOperations` + * 2020-06-01: :class:`BastionHostsOperations` + * 2020-07-01: :class:`BastionHostsOperations` + * 2020-08-01: :class:`BastionHostsOperations` + * 2020-11-01: :class:`BastionHostsOperations` + * 2021-02-01: :class:`BastionHostsOperations` + * 2021-05-01: :class:`BastionHostsOperations` + * 2021-08-01: :class:`BastionHostsOperations` + """ + api_version = self._get_api_version('bastion_hosts') + if api_version == '2019-04-01': + from .v2019_04_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import BastionHostsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import BastionHostsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'bastion_hosts'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def bgp_service_communities(self): + """Instance depends on the API version: + + * 2016-12-01: :class:`BgpServiceCommunitiesOperations` + * 2017-03-01: :class:`BgpServiceCommunitiesOperations` + * 2017-06-01: :class:`BgpServiceCommunitiesOperations` + * 2017-10-01: :class:`BgpServiceCommunitiesOperations` + * 2018-01-01: :class:`BgpServiceCommunitiesOperations` + * 2018-02-01: :class:`BgpServiceCommunitiesOperations` + * 2018-04-01: :class:`BgpServiceCommunitiesOperations` + * 2018-06-01: :class:`BgpServiceCommunitiesOperations` + * 2018-07-01: :class:`BgpServiceCommunitiesOperations` + * 2018-08-01: :class:`BgpServiceCommunitiesOperations` + * 2018-10-01: :class:`BgpServiceCommunitiesOperations` + * 2018-11-01: :class:`BgpServiceCommunitiesOperations` + * 2018-12-01: :class:`BgpServiceCommunitiesOperations` + * 2019-02-01: :class:`BgpServiceCommunitiesOperations` + * 2019-04-01: :class:`BgpServiceCommunitiesOperations` + * 2019-06-01: :class:`BgpServiceCommunitiesOperations` + * 2019-07-01: :class:`BgpServiceCommunitiesOperations` + * 2019-08-01: :class:`BgpServiceCommunitiesOperations` + * 2019-09-01: :class:`BgpServiceCommunitiesOperations` + * 2019-11-01: :class:`BgpServiceCommunitiesOperations` + * 2019-12-01: :class:`BgpServiceCommunitiesOperations` + * 2020-03-01: :class:`BgpServiceCommunitiesOperations` + * 2020-04-01: :class:`BgpServiceCommunitiesOperations` + * 2020-05-01: :class:`BgpServiceCommunitiesOperations` + * 2020-06-01: :class:`BgpServiceCommunitiesOperations` + * 2020-07-01: :class:`BgpServiceCommunitiesOperations` + * 2020-08-01: :class:`BgpServiceCommunitiesOperations` + * 2020-11-01: :class:`BgpServiceCommunitiesOperations` + * 2021-02-01: :class:`BgpServiceCommunitiesOperations` + * 2021-05-01: :class:`BgpServiceCommunitiesOperations` + * 2021-08-01: :class:`BgpServiceCommunitiesOperations` + """ + api_version = self._get_api_version('bgp_service_communities') + if api_version == '2016-12-01': + from .v2016_12_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import BgpServiceCommunitiesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import BgpServiceCommunitiesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'bgp_service_communities'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def configuration_policy_groups(self): + """Instance depends on the API version: + + * 2021-08-01: :class:`ConfigurationPolicyGroupsOperations` + """ + api_version = self._get_api_version('configuration_policy_groups') + if api_version == '2021-08-01': + from .v2021_08_01.operations import ConfigurationPolicyGroupsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'configuration_policy_groups'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def connection_monitors(self): + """Instance depends on the API version: + + * 2017-10-01: :class:`ConnectionMonitorsOperations` + * 2018-01-01: :class:`ConnectionMonitorsOperations` + * 2018-02-01: :class:`ConnectionMonitorsOperations` + * 2018-04-01: :class:`ConnectionMonitorsOperations` + * 2018-06-01: :class:`ConnectionMonitorsOperations` + * 2018-07-01: :class:`ConnectionMonitorsOperations` + * 2018-08-01: :class:`ConnectionMonitorsOperations` + * 2018-10-01: :class:`ConnectionMonitorsOperations` + * 2018-11-01: :class:`ConnectionMonitorsOperations` + * 2018-12-01: :class:`ConnectionMonitorsOperations` + * 2019-02-01: :class:`ConnectionMonitorsOperations` + * 2019-04-01: :class:`ConnectionMonitorsOperations` + * 2019-06-01: :class:`ConnectionMonitorsOperations` + * 2019-07-01: :class:`ConnectionMonitorsOperations` + * 2019-08-01: :class:`ConnectionMonitorsOperations` + * 2019-09-01: :class:`ConnectionMonitorsOperations` + * 2019-11-01: :class:`ConnectionMonitorsOperations` + * 2019-12-01: :class:`ConnectionMonitorsOperations` + * 2020-03-01: :class:`ConnectionMonitorsOperations` + * 2020-04-01: :class:`ConnectionMonitorsOperations` + * 2020-05-01: :class:`ConnectionMonitorsOperations` + * 2020-06-01: :class:`ConnectionMonitorsOperations` + * 2020-07-01: :class:`ConnectionMonitorsOperations` + * 2020-08-01: :class:`ConnectionMonitorsOperations` + * 2020-11-01: :class:`ConnectionMonitorsOperations` + * 2021-02-01: :class:`ConnectionMonitorsOperations` + * 2021-05-01: :class:`ConnectionMonitorsOperations` + * 2021-08-01: :class:`ConnectionMonitorsOperations` + """ + api_version = self._get_api_version('connection_monitors') + if api_version == '2017-10-01': + from .v2017_10_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ConnectionMonitorsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ConnectionMonitorsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'connection_monitors'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def connectivity_configurations(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`ConnectivityConfigurationsOperations` + """ + api_version = self._get_api_version('connectivity_configurations') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import ConnectivityConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'connectivity_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def custom_ip_prefixes(self): + """Instance depends on the API version: + + * 2020-06-01: :class:`CustomIPPrefixesOperations` + * 2020-07-01: :class:`CustomIPPrefixesOperations` + * 2020-08-01: :class:`CustomIPPrefixesOperations` + * 2020-11-01: :class:`CustomIPPrefixesOperations` + * 2021-02-01: :class:`CustomIPPrefixesOperations` + * 2021-05-01: :class:`CustomIPPrefixesOperations` + * 2021-08-01: :class:`CustomIPPrefixesOperations` + """ + api_version = self._get_api_version('custom_ip_prefixes') + if api_version == '2020-06-01': + from .v2020_06_01.operations import CustomIPPrefixesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import CustomIPPrefixesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import CustomIPPrefixesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import CustomIPPrefixesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import CustomIPPrefixesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import CustomIPPrefixesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import CustomIPPrefixesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'custom_ip_prefixes'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def ddos_custom_policies(self): + """Instance depends on the API version: + + * 2018-11-01: :class:`DdosCustomPoliciesOperations` + * 2018-12-01: :class:`DdosCustomPoliciesOperations` + * 2019-02-01: :class:`DdosCustomPoliciesOperations` + * 2019-04-01: :class:`DdosCustomPoliciesOperations` + * 2019-06-01: :class:`DdosCustomPoliciesOperations` + * 2019-07-01: :class:`DdosCustomPoliciesOperations` + * 2019-08-01: :class:`DdosCustomPoliciesOperations` + * 2019-09-01: :class:`DdosCustomPoliciesOperations` + * 2019-11-01: :class:`DdosCustomPoliciesOperations` + * 2019-12-01: :class:`DdosCustomPoliciesOperations` + * 2020-03-01: :class:`DdosCustomPoliciesOperations` + * 2020-04-01: :class:`DdosCustomPoliciesOperations` + * 2020-05-01: :class:`DdosCustomPoliciesOperations` + * 2020-06-01: :class:`DdosCustomPoliciesOperations` + * 2020-07-01: :class:`DdosCustomPoliciesOperations` + * 2020-08-01: :class:`DdosCustomPoliciesOperations` + * 2020-11-01: :class:`DdosCustomPoliciesOperations` + * 2021-02-01: :class:`DdosCustomPoliciesOperations` + * 2021-05-01: :class:`DdosCustomPoliciesOperations` + * 2021-08-01: :class:`DdosCustomPoliciesOperations` + """ + api_version = self._get_api_version('ddos_custom_policies') + if api_version == '2018-11-01': + from .v2018_11_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import DdosCustomPoliciesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import DdosCustomPoliciesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'ddos_custom_policies'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def ddos_protection_plans(self): + """Instance depends on the API version: + + * 2018-02-01: :class:`DdosProtectionPlansOperations` + * 2018-04-01: :class:`DdosProtectionPlansOperations` + * 2018-06-01: :class:`DdosProtectionPlansOperations` + * 2018-07-01: :class:`DdosProtectionPlansOperations` + * 2018-08-01: :class:`DdosProtectionPlansOperations` + * 2018-10-01: :class:`DdosProtectionPlansOperations` + * 2018-11-01: :class:`DdosProtectionPlansOperations` + * 2018-12-01: :class:`DdosProtectionPlansOperations` + * 2019-02-01: :class:`DdosProtectionPlansOperations` + * 2019-04-01: :class:`DdosProtectionPlansOperations` + * 2019-06-01: :class:`DdosProtectionPlansOperations` + * 2019-07-01: :class:`DdosProtectionPlansOperations` + * 2019-08-01: :class:`DdosProtectionPlansOperations` + * 2019-09-01: :class:`DdosProtectionPlansOperations` + * 2019-11-01: :class:`DdosProtectionPlansOperations` + * 2019-12-01: :class:`DdosProtectionPlansOperations` + * 2020-03-01: :class:`DdosProtectionPlansOperations` + * 2020-04-01: :class:`DdosProtectionPlansOperations` + * 2020-05-01: :class:`DdosProtectionPlansOperations` + * 2020-06-01: :class:`DdosProtectionPlansOperations` + * 2020-07-01: :class:`DdosProtectionPlansOperations` + * 2020-08-01: :class:`DdosProtectionPlansOperations` + * 2020-11-01: :class:`DdosProtectionPlansOperations` + * 2021-02-01: :class:`DdosProtectionPlansOperations` + * 2021-05-01: :class:`DdosProtectionPlansOperations` + * 2021-08-01: :class:`DdosProtectionPlansOperations` + """ + api_version = self._get_api_version('ddos_protection_plans') + if api_version == '2018-02-01': + from .v2018_02_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import DdosProtectionPlansOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import DdosProtectionPlansOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'ddos_protection_plans'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def default_security_rules(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`DefaultSecurityRulesOperations` + * 2017-10-01: :class:`DefaultSecurityRulesOperations` + * 2018-01-01: :class:`DefaultSecurityRulesOperations` + * 2018-02-01: :class:`DefaultSecurityRulesOperations` + * 2018-04-01: :class:`DefaultSecurityRulesOperations` + * 2018-06-01: :class:`DefaultSecurityRulesOperations` + * 2018-07-01: :class:`DefaultSecurityRulesOperations` + * 2018-08-01: :class:`DefaultSecurityRulesOperations` + * 2018-10-01: :class:`DefaultSecurityRulesOperations` + * 2018-11-01: :class:`DefaultSecurityRulesOperations` + * 2018-12-01: :class:`DefaultSecurityRulesOperations` + * 2019-02-01: :class:`DefaultSecurityRulesOperations` + * 2019-04-01: :class:`DefaultSecurityRulesOperations` + * 2019-06-01: :class:`DefaultSecurityRulesOperations` + * 2019-07-01: :class:`DefaultSecurityRulesOperations` + * 2019-08-01: :class:`DefaultSecurityRulesOperations` + * 2019-09-01: :class:`DefaultSecurityRulesOperations` + * 2019-11-01: :class:`DefaultSecurityRulesOperations` + * 2019-12-01: :class:`DefaultSecurityRulesOperations` + * 2020-03-01: :class:`DefaultSecurityRulesOperations` + * 2020-04-01: :class:`DefaultSecurityRulesOperations` + * 2020-05-01: :class:`DefaultSecurityRulesOperations` + * 2020-06-01: :class:`DefaultSecurityRulesOperations` + * 2020-07-01: :class:`DefaultSecurityRulesOperations` + * 2020-08-01: :class:`DefaultSecurityRulesOperations` + * 2020-11-01: :class:`DefaultSecurityRulesOperations` + * 2021-02-01: :class:`DefaultSecurityRulesOperations` + * 2021-05-01: :class:`DefaultSecurityRulesOperations` + * 2021-08-01: :class:`DefaultSecurityRulesOperations` + """ + api_version = self._get_api_version('default_security_rules') + if api_version == '2017-06-01': + from .v2017_06_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import DefaultSecurityRulesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import DefaultSecurityRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'default_security_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def dscp_configuration(self): + """Instance depends on the API version: + + * 2020-06-01: :class:`DscpConfigurationOperations` + * 2020-07-01: :class:`DscpConfigurationOperations` + * 2020-08-01: :class:`DscpConfigurationOperations` + * 2020-11-01: :class:`DscpConfigurationOperations` + * 2021-02-01: :class:`DscpConfigurationOperations` + * 2021-05-01: :class:`DscpConfigurationOperations` + * 2021-08-01: :class:`DscpConfigurationOperations` + """ + api_version = self._get_api_version('dscp_configuration') + if api_version == '2020-06-01': + from .v2020_06_01.operations import DscpConfigurationOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import DscpConfigurationOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import DscpConfigurationOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import DscpConfigurationOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import DscpConfigurationOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import DscpConfigurationOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import DscpConfigurationOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'dscp_configuration'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def effective_connectivity_configurations(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`EffectiveConnectivityConfigurationsOperations` + """ + api_version = self._get_api_version('effective_connectivity_configurations') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import EffectiveConnectivityConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'effective_connectivity_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def effective_virtual_networks(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`EffectiveVirtualNetworksOperations` + """ + api_version = self._get_api_version('effective_virtual_networks') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import EffectiveVirtualNetworksOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'effective_virtual_networks'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_circuit_authorizations(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2016-09-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2016-12-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2017-03-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2017-06-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2017-10-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2018-01-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2018-02-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2018-04-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2018-06-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2018-07-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2018-08-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2018-10-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2018-11-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2018-12-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2019-02-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2019-04-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2019-06-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2019-07-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2019-08-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2019-09-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2019-11-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2019-12-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2020-03-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2020-04-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2020-05-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2020-06-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2020-07-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2020-08-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2020-11-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2021-02-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2021-05-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + * 2021-08-01: :class:`ExpressRouteCircuitAuthorizationsOperations` + """ + api_version = self._get_api_version('express_route_circuit_authorizations') + if api_version == '2015-06-15': + from .v2015_06_15.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteCircuitAuthorizationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_circuit_authorizations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_circuit_connections(self): + """Instance depends on the API version: + + * 2018-02-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2018-04-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2018-06-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2018-07-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2018-08-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2018-10-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2018-11-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2018-12-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2019-02-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2019-04-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2019-06-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2019-07-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2019-08-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2019-09-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2019-11-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2019-12-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2020-03-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2020-04-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2020-05-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2020-06-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2020-07-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2020-08-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2020-11-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2021-02-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2021-05-01: :class:`ExpressRouteCircuitConnectionsOperations` + * 2021-08-01: :class:`ExpressRouteCircuitConnectionsOperations` + """ + api_version = self._get_api_version('express_route_circuit_connections') + if api_version == '2018-02-01': + from .v2018_02_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteCircuitConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_circuit_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_circuit_peerings(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`ExpressRouteCircuitPeeringsOperations` + * 2016-09-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2016-12-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2017-03-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2017-06-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2017-10-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2018-01-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2018-02-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2018-04-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2018-06-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2018-07-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2018-08-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2018-10-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2018-11-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2018-12-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2019-02-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2019-04-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2019-06-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2019-07-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2019-08-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2019-09-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2019-11-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2019-12-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2020-03-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2020-04-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2020-05-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2020-06-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2020-07-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2020-08-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2020-11-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2021-02-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2021-05-01: :class:`ExpressRouteCircuitPeeringsOperations` + * 2021-08-01: :class:`ExpressRouteCircuitPeeringsOperations` + """ + api_version = self._get_api_version('express_route_circuit_peerings') + if api_version == '2015-06-15': + from .v2015_06_15.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteCircuitPeeringsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_circuit_peerings'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_circuits(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`ExpressRouteCircuitsOperations` + * 2016-09-01: :class:`ExpressRouteCircuitsOperations` + * 2016-12-01: :class:`ExpressRouteCircuitsOperations` + * 2017-03-01: :class:`ExpressRouteCircuitsOperations` + * 2017-06-01: :class:`ExpressRouteCircuitsOperations` + * 2017-10-01: :class:`ExpressRouteCircuitsOperations` + * 2018-01-01: :class:`ExpressRouteCircuitsOperations` + * 2018-02-01: :class:`ExpressRouteCircuitsOperations` + * 2018-04-01: :class:`ExpressRouteCircuitsOperations` + * 2018-06-01: :class:`ExpressRouteCircuitsOperations` + * 2018-07-01: :class:`ExpressRouteCircuitsOperations` + * 2018-08-01: :class:`ExpressRouteCircuitsOperations` + * 2018-10-01: :class:`ExpressRouteCircuitsOperations` + * 2018-11-01: :class:`ExpressRouteCircuitsOperations` + * 2018-12-01: :class:`ExpressRouteCircuitsOperations` + * 2019-02-01: :class:`ExpressRouteCircuitsOperations` + * 2019-04-01: :class:`ExpressRouteCircuitsOperations` + * 2019-06-01: :class:`ExpressRouteCircuitsOperations` + * 2019-07-01: :class:`ExpressRouteCircuitsOperations` + * 2019-08-01: :class:`ExpressRouteCircuitsOperations` + * 2019-09-01: :class:`ExpressRouteCircuitsOperations` + * 2019-11-01: :class:`ExpressRouteCircuitsOperations` + * 2019-12-01: :class:`ExpressRouteCircuitsOperations` + * 2020-03-01: :class:`ExpressRouteCircuitsOperations` + * 2020-04-01: :class:`ExpressRouteCircuitsOperations` + * 2020-05-01: :class:`ExpressRouteCircuitsOperations` + * 2020-06-01: :class:`ExpressRouteCircuitsOperations` + * 2020-07-01: :class:`ExpressRouteCircuitsOperations` + * 2020-08-01: :class:`ExpressRouteCircuitsOperations` + * 2020-11-01: :class:`ExpressRouteCircuitsOperations` + * 2021-02-01: :class:`ExpressRouteCircuitsOperations` + * 2021-05-01: :class:`ExpressRouteCircuitsOperations` + * 2021-08-01: :class:`ExpressRouteCircuitsOperations` + """ + api_version = self._get_api_version('express_route_circuits') + if api_version == '2015-06-15': + from .v2015_06_15.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteCircuitsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteCircuitsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_circuits'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_connections(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`ExpressRouteConnectionsOperations` + * 2018-10-01: :class:`ExpressRouteConnectionsOperations` + * 2018-11-01: :class:`ExpressRouteConnectionsOperations` + * 2018-12-01: :class:`ExpressRouteConnectionsOperations` + * 2019-02-01: :class:`ExpressRouteConnectionsOperations` + * 2019-04-01: :class:`ExpressRouteConnectionsOperations` + * 2019-06-01: :class:`ExpressRouteConnectionsOperations` + * 2019-07-01: :class:`ExpressRouteConnectionsOperations` + * 2019-08-01: :class:`ExpressRouteConnectionsOperations` + * 2019-09-01: :class:`ExpressRouteConnectionsOperations` + * 2019-11-01: :class:`ExpressRouteConnectionsOperations` + * 2019-12-01: :class:`ExpressRouteConnectionsOperations` + * 2020-03-01: :class:`ExpressRouteConnectionsOperations` + * 2020-04-01: :class:`ExpressRouteConnectionsOperations` + * 2020-05-01: :class:`ExpressRouteConnectionsOperations` + * 2020-06-01: :class:`ExpressRouteConnectionsOperations` + * 2020-07-01: :class:`ExpressRouteConnectionsOperations` + * 2020-08-01: :class:`ExpressRouteConnectionsOperations` + * 2020-11-01: :class:`ExpressRouteConnectionsOperations` + * 2021-02-01: :class:`ExpressRouteConnectionsOperations` + * 2021-05-01: :class:`ExpressRouteConnectionsOperations` + * 2021-08-01: :class:`ExpressRouteConnectionsOperations` + """ + api_version = self._get_api_version('express_route_connections') + if api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_cross_connection_peerings(self): + """Instance depends on the API version: + + * 2018-02-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2018-04-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2018-06-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2018-07-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2018-08-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2018-10-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2018-11-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2018-12-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2019-02-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2019-04-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2019-06-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2019-07-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2019-08-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2019-09-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2019-11-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2019-12-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2020-03-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2020-04-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2020-05-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2020-06-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2020-07-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2020-08-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2020-11-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2021-02-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2021-05-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + * 2021-08-01: :class:`ExpressRouteCrossConnectionPeeringsOperations` + """ + api_version = self._get_api_version('express_route_cross_connection_peerings') + if api_version == '2018-02-01': + from .v2018_02_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteCrossConnectionPeeringsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_cross_connection_peerings'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_cross_connections(self): + """Instance depends on the API version: + + * 2018-02-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2018-04-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2018-06-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2018-07-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2018-08-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2018-10-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2018-11-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2018-12-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2019-02-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2019-04-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2019-06-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2019-07-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2019-08-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2019-09-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2019-11-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2019-12-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2020-03-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2020-04-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2020-05-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2020-06-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2020-07-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2020-08-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2020-11-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2021-02-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2021-05-01: :class:`ExpressRouteCrossConnectionsOperations` + * 2021-08-01: :class:`ExpressRouteCrossConnectionsOperations` + """ + api_version = self._get_api_version('express_route_cross_connections') + if api_version == '2018-02-01': + from .v2018_02_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteCrossConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_cross_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_gateways(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`ExpressRouteGatewaysOperations` + * 2018-10-01: :class:`ExpressRouteGatewaysOperations` + * 2018-11-01: :class:`ExpressRouteGatewaysOperations` + * 2018-12-01: :class:`ExpressRouteGatewaysOperations` + * 2019-02-01: :class:`ExpressRouteGatewaysOperations` + * 2019-04-01: :class:`ExpressRouteGatewaysOperations` + * 2019-06-01: :class:`ExpressRouteGatewaysOperations` + * 2019-07-01: :class:`ExpressRouteGatewaysOperations` + * 2019-08-01: :class:`ExpressRouteGatewaysOperations` + * 2019-09-01: :class:`ExpressRouteGatewaysOperations` + * 2019-11-01: :class:`ExpressRouteGatewaysOperations` + * 2019-12-01: :class:`ExpressRouteGatewaysOperations` + * 2020-03-01: :class:`ExpressRouteGatewaysOperations` + * 2020-04-01: :class:`ExpressRouteGatewaysOperations` + * 2020-05-01: :class:`ExpressRouteGatewaysOperations` + * 2020-06-01: :class:`ExpressRouteGatewaysOperations` + * 2020-07-01: :class:`ExpressRouteGatewaysOperations` + * 2020-08-01: :class:`ExpressRouteGatewaysOperations` + * 2020-11-01: :class:`ExpressRouteGatewaysOperations` + * 2021-02-01: :class:`ExpressRouteGatewaysOperations` + * 2021-05-01: :class:`ExpressRouteGatewaysOperations` + * 2021-08-01: :class:`ExpressRouteGatewaysOperations` + """ + api_version = self._get_api_version('express_route_gateways') + if api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteGatewaysOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteGatewaysOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_gateways'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_links(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`ExpressRouteLinksOperations` + * 2018-10-01: :class:`ExpressRouteLinksOperations` + * 2018-11-01: :class:`ExpressRouteLinksOperations` + * 2018-12-01: :class:`ExpressRouteLinksOperations` + * 2019-02-01: :class:`ExpressRouteLinksOperations` + * 2019-04-01: :class:`ExpressRouteLinksOperations` + * 2019-06-01: :class:`ExpressRouteLinksOperations` + * 2019-07-01: :class:`ExpressRouteLinksOperations` + * 2019-08-01: :class:`ExpressRouteLinksOperations` + * 2019-09-01: :class:`ExpressRouteLinksOperations` + * 2019-11-01: :class:`ExpressRouteLinksOperations` + * 2019-12-01: :class:`ExpressRouteLinksOperations` + * 2020-03-01: :class:`ExpressRouteLinksOperations` + * 2020-04-01: :class:`ExpressRouteLinksOperations` + * 2020-05-01: :class:`ExpressRouteLinksOperations` + * 2020-06-01: :class:`ExpressRouteLinksOperations` + * 2020-07-01: :class:`ExpressRouteLinksOperations` + * 2020-08-01: :class:`ExpressRouteLinksOperations` + * 2020-11-01: :class:`ExpressRouteLinksOperations` + * 2021-02-01: :class:`ExpressRouteLinksOperations` + * 2021-05-01: :class:`ExpressRouteLinksOperations` + * 2021-08-01: :class:`ExpressRouteLinksOperations` + """ + api_version = self._get_api_version('express_route_links') + if api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteLinksOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteLinksOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_links'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_port_authorizations(self): + """Instance depends on the API version: + + * 2021-08-01: :class:`ExpressRoutePortAuthorizationsOperations` + """ + api_version = self._get_api_version('express_route_port_authorizations') + if api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRoutePortAuthorizationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_port_authorizations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_ports(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`ExpressRoutePortsOperations` + * 2018-10-01: :class:`ExpressRoutePortsOperations` + * 2018-11-01: :class:`ExpressRoutePortsOperations` + * 2018-12-01: :class:`ExpressRoutePortsOperations` + * 2019-02-01: :class:`ExpressRoutePortsOperations` + * 2019-04-01: :class:`ExpressRoutePortsOperations` + * 2019-06-01: :class:`ExpressRoutePortsOperations` + * 2019-07-01: :class:`ExpressRoutePortsOperations` + * 2019-08-01: :class:`ExpressRoutePortsOperations` + * 2019-09-01: :class:`ExpressRoutePortsOperations` + * 2019-11-01: :class:`ExpressRoutePortsOperations` + * 2019-12-01: :class:`ExpressRoutePortsOperations` + * 2020-03-01: :class:`ExpressRoutePortsOperations` + * 2020-04-01: :class:`ExpressRoutePortsOperations` + * 2020-05-01: :class:`ExpressRoutePortsOperations` + * 2020-06-01: :class:`ExpressRoutePortsOperations` + * 2020-07-01: :class:`ExpressRoutePortsOperations` + * 2020-08-01: :class:`ExpressRoutePortsOperations` + * 2020-11-01: :class:`ExpressRoutePortsOperations` + * 2021-02-01: :class:`ExpressRoutePortsOperations` + * 2021-05-01: :class:`ExpressRoutePortsOperations` + * 2021-08-01: :class:`ExpressRoutePortsOperations` + """ + api_version = self._get_api_version('express_route_ports') + if api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRoutePortsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRoutePortsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_ports'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_ports_locations(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`ExpressRoutePortsLocationsOperations` + * 2018-10-01: :class:`ExpressRoutePortsLocationsOperations` + * 2018-11-01: :class:`ExpressRoutePortsLocationsOperations` + * 2018-12-01: :class:`ExpressRoutePortsLocationsOperations` + * 2019-02-01: :class:`ExpressRoutePortsLocationsOperations` + * 2019-04-01: :class:`ExpressRoutePortsLocationsOperations` + * 2019-06-01: :class:`ExpressRoutePortsLocationsOperations` + * 2019-07-01: :class:`ExpressRoutePortsLocationsOperations` + * 2019-08-01: :class:`ExpressRoutePortsLocationsOperations` + * 2019-09-01: :class:`ExpressRoutePortsLocationsOperations` + * 2019-11-01: :class:`ExpressRoutePortsLocationsOperations` + * 2019-12-01: :class:`ExpressRoutePortsLocationsOperations` + * 2020-03-01: :class:`ExpressRoutePortsLocationsOperations` + * 2020-04-01: :class:`ExpressRoutePortsLocationsOperations` + * 2020-05-01: :class:`ExpressRoutePortsLocationsOperations` + * 2020-06-01: :class:`ExpressRoutePortsLocationsOperations` + * 2020-07-01: :class:`ExpressRoutePortsLocationsOperations` + * 2020-08-01: :class:`ExpressRoutePortsLocationsOperations` + * 2020-11-01: :class:`ExpressRoutePortsLocationsOperations` + * 2021-02-01: :class:`ExpressRoutePortsLocationsOperations` + * 2021-05-01: :class:`ExpressRoutePortsLocationsOperations` + * 2021-08-01: :class:`ExpressRoutePortsLocationsOperations` + """ + api_version = self._get_api_version('express_route_ports_locations') + if api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRoutePortsLocationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_ports_locations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def express_route_service_providers(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`ExpressRouteServiceProvidersOperations` + * 2016-09-01: :class:`ExpressRouteServiceProvidersOperations` + * 2016-12-01: :class:`ExpressRouteServiceProvidersOperations` + * 2017-03-01: :class:`ExpressRouteServiceProvidersOperations` + * 2017-06-01: :class:`ExpressRouteServiceProvidersOperations` + * 2017-10-01: :class:`ExpressRouteServiceProvidersOperations` + * 2018-01-01: :class:`ExpressRouteServiceProvidersOperations` + * 2018-02-01: :class:`ExpressRouteServiceProvidersOperations` + * 2018-04-01: :class:`ExpressRouteServiceProvidersOperations` + * 2018-06-01: :class:`ExpressRouteServiceProvidersOperations` + * 2018-07-01: :class:`ExpressRouteServiceProvidersOperations` + * 2018-08-01: :class:`ExpressRouteServiceProvidersOperations` + * 2018-10-01: :class:`ExpressRouteServiceProvidersOperations` + * 2018-11-01: :class:`ExpressRouteServiceProvidersOperations` + * 2018-12-01: :class:`ExpressRouteServiceProvidersOperations` + * 2019-02-01: :class:`ExpressRouteServiceProvidersOperations` + * 2019-04-01: :class:`ExpressRouteServiceProvidersOperations` + * 2019-06-01: :class:`ExpressRouteServiceProvidersOperations` + * 2019-07-01: :class:`ExpressRouteServiceProvidersOperations` + * 2019-08-01: :class:`ExpressRouteServiceProvidersOperations` + * 2019-09-01: :class:`ExpressRouteServiceProvidersOperations` + * 2019-11-01: :class:`ExpressRouteServiceProvidersOperations` + * 2019-12-01: :class:`ExpressRouteServiceProvidersOperations` + * 2020-03-01: :class:`ExpressRouteServiceProvidersOperations` + * 2020-04-01: :class:`ExpressRouteServiceProvidersOperations` + * 2020-05-01: :class:`ExpressRouteServiceProvidersOperations` + * 2020-06-01: :class:`ExpressRouteServiceProvidersOperations` + * 2020-07-01: :class:`ExpressRouteServiceProvidersOperations` + * 2020-08-01: :class:`ExpressRouteServiceProvidersOperations` + * 2020-11-01: :class:`ExpressRouteServiceProvidersOperations` + * 2021-02-01: :class:`ExpressRouteServiceProvidersOperations` + * 2021-05-01: :class:`ExpressRouteServiceProvidersOperations` + * 2021-08-01: :class:`ExpressRouteServiceProvidersOperations` + """ + api_version = self._get_api_version('express_route_service_providers') + if api_version == '2015-06-15': + from .v2015_06_15.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ExpressRouteServiceProvidersOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'express_route_service_providers'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def firewall_policies(self): + """Instance depends on the API version: + + * 2019-06-01: :class:`FirewallPoliciesOperations` + * 2019-07-01: :class:`FirewallPoliciesOperations` + * 2019-08-01: :class:`FirewallPoliciesOperations` + * 2019-09-01: :class:`FirewallPoliciesOperations` + * 2019-11-01: :class:`FirewallPoliciesOperations` + * 2019-12-01: :class:`FirewallPoliciesOperations` + * 2020-03-01: :class:`FirewallPoliciesOperations` + * 2020-04-01: :class:`FirewallPoliciesOperations` + * 2020-05-01: :class:`FirewallPoliciesOperations` + * 2020-06-01: :class:`FirewallPoliciesOperations` + * 2020-07-01: :class:`FirewallPoliciesOperations` + * 2020-08-01: :class:`FirewallPoliciesOperations` + * 2020-11-01: :class:`FirewallPoliciesOperations` + * 2021-02-01: :class:`FirewallPoliciesOperations` + * 2021-05-01: :class:`FirewallPoliciesOperations` + * 2021-08-01: :class:`FirewallPoliciesOperations` + """ + api_version = self._get_api_version('firewall_policies') + if api_version == '2019-06-01': + from .v2019_06_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import FirewallPoliciesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import FirewallPoliciesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'firewall_policies'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def firewall_policy_idps_signatures(self): + """Instance depends on the API version: + + * 2021-05-01: :class:`FirewallPolicyIdpsSignaturesOperations` + * 2021-08-01: :class:`FirewallPolicyIdpsSignaturesOperations` + """ + api_version = self._get_api_version('firewall_policy_idps_signatures') + if api_version == '2021-05-01': + from .v2021_05_01.operations import FirewallPolicyIdpsSignaturesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import FirewallPolicyIdpsSignaturesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'firewall_policy_idps_signatures'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def firewall_policy_idps_signatures_filter_values(self): + """Instance depends on the API version: + + * 2021-05-01: :class:`FirewallPolicyIdpsSignaturesFilterValuesOperations` + * 2021-08-01: :class:`FirewallPolicyIdpsSignaturesFilterValuesOperations` + """ + api_version = self._get_api_version('firewall_policy_idps_signatures_filter_values') + if api_version == '2021-05-01': + from .v2021_05_01.operations import FirewallPolicyIdpsSignaturesFilterValuesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import FirewallPolicyIdpsSignaturesFilterValuesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'firewall_policy_idps_signatures_filter_values'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def firewall_policy_idps_signatures_overrides(self): + """Instance depends on the API version: + + * 2021-05-01: :class:`FirewallPolicyIdpsSignaturesOverridesOperations` + * 2021-08-01: :class:`FirewallPolicyIdpsSignaturesOverridesOperations` + """ + api_version = self._get_api_version('firewall_policy_idps_signatures_overrides') + if api_version == '2021-05-01': + from .v2021_05_01.operations import FirewallPolicyIdpsSignaturesOverridesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import FirewallPolicyIdpsSignaturesOverridesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'firewall_policy_idps_signatures_overrides'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def firewall_policy_rule_collection_groups(self): + """Instance depends on the API version: + + * 2020-05-01: :class:`FirewallPolicyRuleCollectionGroupsOperations` + * 2020-06-01: :class:`FirewallPolicyRuleCollectionGroupsOperations` + * 2020-07-01: :class:`FirewallPolicyRuleCollectionGroupsOperations` + * 2020-08-01: :class:`FirewallPolicyRuleCollectionGroupsOperations` + * 2020-11-01: :class:`FirewallPolicyRuleCollectionGroupsOperations` + * 2021-02-01: :class:`FirewallPolicyRuleCollectionGroupsOperations` + * 2021-05-01: :class:`FirewallPolicyRuleCollectionGroupsOperations` + * 2021-08-01: :class:`FirewallPolicyRuleCollectionGroupsOperations` + """ + api_version = self._get_api_version('firewall_policy_rule_collection_groups') + if api_version == '2020-05-01': + from .v2020_05_01.operations import FirewallPolicyRuleCollectionGroupsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import FirewallPolicyRuleCollectionGroupsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import FirewallPolicyRuleCollectionGroupsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import FirewallPolicyRuleCollectionGroupsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import FirewallPolicyRuleCollectionGroupsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import FirewallPolicyRuleCollectionGroupsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import FirewallPolicyRuleCollectionGroupsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import FirewallPolicyRuleCollectionGroupsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'firewall_policy_rule_collection_groups'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def firewall_policy_rule_groups(self): + """Instance depends on the API version: + + * 2019-06-01: :class:`FirewallPolicyRuleGroupsOperations` + * 2019-07-01: :class:`FirewallPolicyRuleGroupsOperations` + * 2019-08-01: :class:`FirewallPolicyRuleGroupsOperations` + * 2019-09-01: :class:`FirewallPolicyRuleGroupsOperations` + * 2019-11-01: :class:`FirewallPolicyRuleGroupsOperations` + * 2019-12-01: :class:`FirewallPolicyRuleGroupsOperations` + * 2020-03-01: :class:`FirewallPolicyRuleGroupsOperations` + * 2020-04-01: :class:`FirewallPolicyRuleGroupsOperations` + """ + api_version = self._get_api_version('firewall_policy_rule_groups') + if api_version == '2019-06-01': + from .v2019_06_01.operations import FirewallPolicyRuleGroupsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import FirewallPolicyRuleGroupsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import FirewallPolicyRuleGroupsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import FirewallPolicyRuleGroupsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import FirewallPolicyRuleGroupsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import FirewallPolicyRuleGroupsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import FirewallPolicyRuleGroupsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import FirewallPolicyRuleGroupsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'firewall_policy_rule_groups'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def flow_logs(self): + """Instance depends on the API version: + + * 2019-11-01: :class:`FlowLogsOperations` + * 2019-12-01: :class:`FlowLogsOperations` + * 2020-03-01: :class:`FlowLogsOperations` + * 2020-04-01: :class:`FlowLogsOperations` + * 2020-05-01: :class:`FlowLogsOperations` + * 2020-06-01: :class:`FlowLogsOperations` + * 2020-07-01: :class:`FlowLogsOperations` + * 2020-08-01: :class:`FlowLogsOperations` + * 2020-11-01: :class:`FlowLogsOperations` + * 2021-02-01: :class:`FlowLogsOperations` + * 2021-05-01: :class:`FlowLogsOperations` + * 2021-08-01: :class:`FlowLogsOperations` + """ + api_version = self._get_api_version('flow_logs') + if api_version == '2019-11-01': + from .v2019_11_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import FlowLogsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import FlowLogsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'flow_logs'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def hub_route_tables(self): + """Instance depends on the API version: + + * 2020-04-01: :class:`HubRouteTablesOperations` + * 2020-05-01: :class:`HubRouteTablesOperations` + * 2020-06-01: :class:`HubRouteTablesOperations` + * 2020-07-01: :class:`HubRouteTablesOperations` + * 2020-08-01: :class:`HubRouteTablesOperations` + * 2020-11-01: :class:`HubRouteTablesOperations` + * 2021-02-01: :class:`HubRouteTablesOperations` + * 2021-05-01: :class:`HubRouteTablesOperations` + * 2021-08-01: :class:`HubRouteTablesOperations` + """ + api_version = self._get_api_version('hub_route_tables') + if api_version == '2020-04-01': + from .v2020_04_01.operations import HubRouteTablesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import HubRouteTablesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import HubRouteTablesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import HubRouteTablesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import HubRouteTablesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import HubRouteTablesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import HubRouteTablesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import HubRouteTablesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import HubRouteTablesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'hub_route_tables'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def hub_virtual_network_connections(self): + """Instance depends on the API version: + + * 2018-04-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2018-06-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2018-07-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2018-08-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2018-10-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2018-11-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2018-12-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2019-02-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2019-04-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2019-06-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2019-07-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2019-08-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2019-09-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2019-11-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2019-12-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2020-03-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2020-04-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2020-05-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2020-06-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2020-07-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2020-08-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2020-11-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2021-02-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2021-05-01: :class:`HubVirtualNetworkConnectionsOperations` + * 2021-08-01: :class:`HubVirtualNetworkConnectionsOperations` + """ + api_version = self._get_api_version('hub_virtual_network_connections') + if api_version == '2018-04-01': + from .v2018_04_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import HubVirtualNetworkConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'hub_virtual_network_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def inbound_nat_rules(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`InboundNatRulesOperations` + * 2017-10-01: :class:`InboundNatRulesOperations` + * 2018-01-01: :class:`InboundNatRulesOperations` + * 2018-02-01: :class:`InboundNatRulesOperations` + * 2018-04-01: :class:`InboundNatRulesOperations` + * 2018-06-01: :class:`InboundNatRulesOperations` + * 2018-07-01: :class:`InboundNatRulesOperations` + * 2018-08-01: :class:`InboundNatRulesOperations` + * 2018-10-01: :class:`InboundNatRulesOperations` + * 2018-11-01: :class:`InboundNatRulesOperations` + * 2018-12-01: :class:`InboundNatRulesOperations` + * 2019-02-01: :class:`InboundNatRulesOperations` + * 2019-04-01: :class:`InboundNatRulesOperations` + * 2019-06-01: :class:`InboundNatRulesOperations` + * 2019-07-01: :class:`InboundNatRulesOperations` + * 2019-08-01: :class:`InboundNatRulesOperations` + * 2019-09-01: :class:`InboundNatRulesOperations` + * 2019-11-01: :class:`InboundNatRulesOperations` + * 2019-12-01: :class:`InboundNatRulesOperations` + * 2020-03-01: :class:`InboundNatRulesOperations` + * 2020-04-01: :class:`InboundNatRulesOperations` + * 2020-05-01: :class:`InboundNatRulesOperations` + * 2020-06-01: :class:`InboundNatRulesOperations` + * 2020-07-01: :class:`InboundNatRulesOperations` + * 2020-08-01: :class:`InboundNatRulesOperations` + * 2020-11-01: :class:`InboundNatRulesOperations` + * 2021-02-01: :class:`InboundNatRulesOperations` + * 2021-05-01: :class:`InboundNatRulesOperations` + * 2021-08-01: :class:`InboundNatRulesOperations` + """ + api_version = self._get_api_version('inbound_nat_rules') + if api_version == '2017-06-01': + from .v2017_06_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import InboundNatRulesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import InboundNatRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'inbound_nat_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def inbound_security_rule(self): + """Instance depends on the API version: + + * 2020-06-01: :class:`InboundSecurityRuleOperations` + * 2020-07-01: :class:`InboundSecurityRuleOperations` + * 2020-08-01: :class:`InboundSecurityRuleOperations` + * 2020-11-01: :class:`InboundSecurityRuleOperations` + * 2021-02-01: :class:`InboundSecurityRuleOperations` + * 2021-05-01: :class:`InboundSecurityRuleOperations` + * 2021-08-01: :class:`InboundSecurityRuleOperations` + """ + api_version = self._get_api_version('inbound_security_rule') + if api_version == '2020-06-01': + from .v2020_06_01.operations import InboundSecurityRuleOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import InboundSecurityRuleOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import InboundSecurityRuleOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import InboundSecurityRuleOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import InboundSecurityRuleOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import InboundSecurityRuleOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import InboundSecurityRuleOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'inbound_security_rule'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def interface_endpoints(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`InterfaceEndpointsOperations` + * 2018-10-01: :class:`InterfaceEndpointsOperations` + * 2018-11-01: :class:`InterfaceEndpointsOperations` + * 2018-12-01: :class:`InterfaceEndpointsOperations` + * 2019-02-01: :class:`InterfaceEndpointsOperations` + """ + api_version = self._get_api_version('interface_endpoints') + if api_version == '2018-08-01': + from .v2018_08_01.operations import InterfaceEndpointsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import InterfaceEndpointsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import InterfaceEndpointsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import InterfaceEndpointsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import InterfaceEndpointsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'interface_endpoints'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def ip_allocations(self): + """Instance depends on the API version: + + * 2020-03-01: :class:`IpAllocationsOperations` + * 2020-04-01: :class:`IpAllocationsOperations` + * 2020-05-01: :class:`IpAllocationsOperations` + * 2020-06-01: :class:`IpAllocationsOperations` + * 2020-07-01: :class:`IpAllocationsOperations` + * 2020-08-01: :class:`IpAllocationsOperations` + * 2020-11-01: :class:`IpAllocationsOperations` + * 2021-02-01: :class:`IpAllocationsOperations` + * 2021-05-01: :class:`IpAllocationsOperations` + * 2021-08-01: :class:`IpAllocationsOperations` + """ + api_version = self._get_api_version('ip_allocations') + if api_version == '2020-03-01': + from .v2020_03_01.operations import IpAllocationsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import IpAllocationsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import IpAllocationsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import IpAllocationsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import IpAllocationsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import IpAllocationsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import IpAllocationsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import IpAllocationsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import IpAllocationsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import IpAllocationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'ip_allocations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def ip_groups(self): + """Instance depends on the API version: + + * 2019-09-01: :class:`IpGroupsOperations` + * 2019-11-01: :class:`IpGroupsOperations` + * 2019-12-01: :class:`IpGroupsOperations` + * 2020-03-01: :class:`IpGroupsOperations` + * 2020-04-01: :class:`IpGroupsOperations` + * 2020-05-01: :class:`IpGroupsOperations` + * 2020-06-01: :class:`IpGroupsOperations` + * 2020-07-01: :class:`IpGroupsOperations` + * 2020-08-01: :class:`IpGroupsOperations` + * 2020-11-01: :class:`IpGroupsOperations` + * 2021-02-01: :class:`IpGroupsOperations` + * 2021-05-01: :class:`IpGroupsOperations` + * 2021-08-01: :class:`IpGroupsOperations` + """ + api_version = self._get_api_version('ip_groups') + if api_version == '2019-09-01': + from .v2019_09_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import IpGroupsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import IpGroupsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'ip_groups'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def load_balancer_backend_address_pools(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2017-10-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2018-01-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2018-02-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2018-04-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2018-06-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2018-07-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2018-08-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2018-10-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2018-11-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2018-12-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2019-02-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2019-04-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2019-06-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2019-07-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2019-08-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2019-09-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2019-11-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2019-12-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2020-03-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2020-04-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2020-05-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2020-06-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2020-07-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2020-08-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2020-11-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2021-02-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2021-05-01: :class:`LoadBalancerBackendAddressPoolsOperations` + * 2021-08-01: :class:`LoadBalancerBackendAddressPoolsOperations` + """ + api_version = self._get_api_version('load_balancer_backend_address_pools') + if api_version == '2017-06-01': + from .v2017_06_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import LoadBalancerBackendAddressPoolsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'load_balancer_backend_address_pools'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def load_balancer_frontend_ip_configurations(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2017-10-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2018-01-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2018-02-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2018-04-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2018-06-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2018-07-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2018-08-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2018-10-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2018-11-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2018-12-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2019-02-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2019-04-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2019-06-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2019-07-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2019-08-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2019-09-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2019-11-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2019-12-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2020-03-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2020-04-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2020-05-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2020-06-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2020-07-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2020-08-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2020-11-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2021-02-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2021-05-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + * 2021-08-01: :class:`LoadBalancerFrontendIPConfigurationsOperations` + """ + api_version = self._get_api_version('load_balancer_frontend_ip_configurations') + if api_version == '2017-06-01': + from .v2017_06_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import LoadBalancerFrontendIPConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'load_balancer_frontend_ip_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def load_balancer_load_balancing_rules(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2017-10-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2018-01-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2018-02-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2018-04-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2018-06-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2018-07-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2018-08-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2018-10-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2018-11-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2018-12-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2019-02-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2019-04-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2019-06-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2019-07-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2019-08-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2019-09-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2019-11-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2019-12-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2020-03-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2020-04-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2020-05-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2020-06-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2020-07-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2020-08-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2020-11-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2021-02-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2021-05-01: :class:`LoadBalancerLoadBalancingRulesOperations` + * 2021-08-01: :class:`LoadBalancerLoadBalancingRulesOperations` + """ + api_version = self._get_api_version('load_balancer_load_balancing_rules') + if api_version == '2017-06-01': + from .v2017_06_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import LoadBalancerLoadBalancingRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'load_balancer_load_balancing_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def load_balancer_network_interfaces(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2017-10-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2018-01-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2018-02-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2018-04-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2018-06-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2018-07-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2018-08-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2018-10-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2018-11-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2018-12-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2019-02-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2019-04-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2019-06-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2019-07-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2019-08-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2019-09-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2019-11-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2019-12-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2020-03-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2020-04-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2020-05-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2020-06-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2020-07-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2020-08-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2020-11-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2021-02-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2021-05-01: :class:`LoadBalancerNetworkInterfacesOperations` + * 2021-08-01: :class:`LoadBalancerNetworkInterfacesOperations` + """ + api_version = self._get_api_version('load_balancer_network_interfaces') + if api_version == '2017-06-01': + from .v2017_06_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import LoadBalancerNetworkInterfacesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'load_balancer_network_interfaces'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def load_balancer_outbound_rules(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`LoadBalancerOutboundRulesOperations` + * 2018-10-01: :class:`LoadBalancerOutboundRulesOperations` + * 2018-11-01: :class:`LoadBalancerOutboundRulesOperations` + * 2018-12-01: :class:`LoadBalancerOutboundRulesOperations` + * 2019-02-01: :class:`LoadBalancerOutboundRulesOperations` + * 2019-04-01: :class:`LoadBalancerOutboundRulesOperations` + * 2019-06-01: :class:`LoadBalancerOutboundRulesOperations` + * 2019-07-01: :class:`LoadBalancerOutboundRulesOperations` + * 2019-08-01: :class:`LoadBalancerOutboundRulesOperations` + * 2019-09-01: :class:`LoadBalancerOutboundRulesOperations` + * 2019-11-01: :class:`LoadBalancerOutboundRulesOperations` + * 2019-12-01: :class:`LoadBalancerOutboundRulesOperations` + * 2020-03-01: :class:`LoadBalancerOutboundRulesOperations` + * 2020-04-01: :class:`LoadBalancerOutboundRulesOperations` + * 2020-05-01: :class:`LoadBalancerOutboundRulesOperations` + * 2020-06-01: :class:`LoadBalancerOutboundRulesOperations` + * 2020-07-01: :class:`LoadBalancerOutboundRulesOperations` + * 2020-08-01: :class:`LoadBalancerOutboundRulesOperations` + * 2020-11-01: :class:`LoadBalancerOutboundRulesOperations` + * 2021-02-01: :class:`LoadBalancerOutboundRulesOperations` + * 2021-05-01: :class:`LoadBalancerOutboundRulesOperations` + * 2021-08-01: :class:`LoadBalancerOutboundRulesOperations` + """ + api_version = self._get_api_version('load_balancer_outbound_rules') + if api_version == '2018-08-01': + from .v2018_08_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import LoadBalancerOutboundRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'load_balancer_outbound_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def load_balancer_probes(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`LoadBalancerProbesOperations` + * 2017-10-01: :class:`LoadBalancerProbesOperations` + * 2018-01-01: :class:`LoadBalancerProbesOperations` + * 2018-02-01: :class:`LoadBalancerProbesOperations` + * 2018-04-01: :class:`LoadBalancerProbesOperations` + * 2018-06-01: :class:`LoadBalancerProbesOperations` + * 2018-07-01: :class:`LoadBalancerProbesOperations` + * 2018-08-01: :class:`LoadBalancerProbesOperations` + * 2018-10-01: :class:`LoadBalancerProbesOperations` + * 2018-11-01: :class:`LoadBalancerProbesOperations` + * 2018-12-01: :class:`LoadBalancerProbesOperations` + * 2019-02-01: :class:`LoadBalancerProbesOperations` + * 2019-04-01: :class:`LoadBalancerProbesOperations` + * 2019-06-01: :class:`LoadBalancerProbesOperations` + * 2019-07-01: :class:`LoadBalancerProbesOperations` + * 2019-08-01: :class:`LoadBalancerProbesOperations` + * 2019-09-01: :class:`LoadBalancerProbesOperations` + * 2019-11-01: :class:`LoadBalancerProbesOperations` + * 2019-12-01: :class:`LoadBalancerProbesOperations` + * 2020-03-01: :class:`LoadBalancerProbesOperations` + * 2020-04-01: :class:`LoadBalancerProbesOperations` + * 2020-05-01: :class:`LoadBalancerProbesOperations` + * 2020-06-01: :class:`LoadBalancerProbesOperations` + * 2020-07-01: :class:`LoadBalancerProbesOperations` + * 2020-08-01: :class:`LoadBalancerProbesOperations` + * 2020-11-01: :class:`LoadBalancerProbesOperations` + * 2021-02-01: :class:`LoadBalancerProbesOperations` + * 2021-05-01: :class:`LoadBalancerProbesOperations` + * 2021-08-01: :class:`LoadBalancerProbesOperations` + """ + api_version = self._get_api_version('load_balancer_probes') + if api_version == '2017-06-01': + from .v2017_06_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import LoadBalancerProbesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import LoadBalancerProbesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'load_balancer_probes'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def load_balancers(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`LoadBalancersOperations` + * 2016-09-01: :class:`LoadBalancersOperations` + * 2016-12-01: :class:`LoadBalancersOperations` + * 2017-03-01: :class:`LoadBalancersOperations` + * 2017-06-01: :class:`LoadBalancersOperations` + * 2017-10-01: :class:`LoadBalancersOperations` + * 2018-01-01: :class:`LoadBalancersOperations` + * 2018-02-01: :class:`LoadBalancersOperations` + * 2018-04-01: :class:`LoadBalancersOperations` + * 2018-06-01: :class:`LoadBalancersOperations` + * 2018-07-01: :class:`LoadBalancersOperations` + * 2018-08-01: :class:`LoadBalancersOperations` + * 2018-10-01: :class:`LoadBalancersOperations` + * 2018-11-01: :class:`LoadBalancersOperations` + * 2018-12-01: :class:`LoadBalancersOperations` + * 2019-02-01: :class:`LoadBalancersOperations` + * 2019-04-01: :class:`LoadBalancersOperations` + * 2019-06-01: :class:`LoadBalancersOperations` + * 2019-07-01: :class:`LoadBalancersOperations` + * 2019-08-01: :class:`LoadBalancersOperations` + * 2019-09-01: :class:`LoadBalancersOperations` + * 2019-11-01: :class:`LoadBalancersOperations` + * 2019-12-01: :class:`LoadBalancersOperations` + * 2020-03-01: :class:`LoadBalancersOperations` + * 2020-04-01: :class:`LoadBalancersOperations` + * 2020-05-01: :class:`LoadBalancersOperations` + * 2020-06-01: :class:`LoadBalancersOperations` + * 2020-07-01: :class:`LoadBalancersOperations` + * 2020-08-01: :class:`LoadBalancersOperations` + * 2020-11-01: :class:`LoadBalancersOperations` + * 2021-02-01: :class:`LoadBalancersOperations` + * 2021-05-01: :class:`LoadBalancersOperations` + * 2021-08-01: :class:`LoadBalancersOperations` + """ + api_version = self._get_api_version('load_balancers') + if api_version == '2015-06-15': + from .v2015_06_15.operations import LoadBalancersOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import LoadBalancersOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import LoadBalancersOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'load_balancers'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def local_network_gateways(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`LocalNetworkGatewaysOperations` + * 2016-09-01: :class:`LocalNetworkGatewaysOperations` + * 2016-12-01: :class:`LocalNetworkGatewaysOperations` + * 2017-03-01: :class:`LocalNetworkGatewaysOperations` + * 2017-06-01: :class:`LocalNetworkGatewaysOperations` + * 2017-10-01: :class:`LocalNetworkGatewaysOperations` + * 2018-01-01: :class:`LocalNetworkGatewaysOperations` + * 2018-02-01: :class:`LocalNetworkGatewaysOperations` + * 2018-04-01: :class:`LocalNetworkGatewaysOperations` + * 2018-06-01: :class:`LocalNetworkGatewaysOperations` + * 2018-07-01: :class:`LocalNetworkGatewaysOperations` + * 2018-08-01: :class:`LocalNetworkGatewaysOperations` + * 2018-10-01: :class:`LocalNetworkGatewaysOperations` + * 2018-11-01: :class:`LocalNetworkGatewaysOperations` + * 2018-12-01: :class:`LocalNetworkGatewaysOperations` + * 2019-02-01: :class:`LocalNetworkGatewaysOperations` + * 2019-04-01: :class:`LocalNetworkGatewaysOperations` + * 2019-06-01: :class:`LocalNetworkGatewaysOperations` + * 2019-07-01: :class:`LocalNetworkGatewaysOperations` + * 2019-08-01: :class:`LocalNetworkGatewaysOperations` + * 2019-09-01: :class:`LocalNetworkGatewaysOperations` + * 2019-11-01: :class:`LocalNetworkGatewaysOperations` + * 2019-12-01: :class:`LocalNetworkGatewaysOperations` + * 2020-03-01: :class:`LocalNetworkGatewaysOperations` + * 2020-04-01: :class:`LocalNetworkGatewaysOperations` + * 2020-05-01: :class:`LocalNetworkGatewaysOperations` + * 2020-06-01: :class:`LocalNetworkGatewaysOperations` + * 2020-07-01: :class:`LocalNetworkGatewaysOperations` + * 2020-08-01: :class:`LocalNetworkGatewaysOperations` + * 2020-11-01: :class:`LocalNetworkGatewaysOperations` + * 2021-02-01: :class:`LocalNetworkGatewaysOperations` + * 2021-05-01: :class:`LocalNetworkGatewaysOperations` + * 2021-08-01: :class:`LocalNetworkGatewaysOperations` + """ + api_version = self._get_api_version('local_network_gateways') + if api_version == '2015-06-15': + from .v2015_06_15.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import LocalNetworkGatewaysOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import LocalNetworkGatewaysOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'local_network_gateways'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def nat_gateways(self): + """Instance depends on the API version: + + * 2019-02-01: :class:`NatGatewaysOperations` + * 2019-04-01: :class:`NatGatewaysOperations` + * 2019-06-01: :class:`NatGatewaysOperations` + * 2019-07-01: :class:`NatGatewaysOperations` + * 2019-08-01: :class:`NatGatewaysOperations` + * 2019-09-01: :class:`NatGatewaysOperations` + * 2019-11-01: :class:`NatGatewaysOperations` + * 2019-12-01: :class:`NatGatewaysOperations` + * 2020-03-01: :class:`NatGatewaysOperations` + * 2020-04-01: :class:`NatGatewaysOperations` + * 2020-05-01: :class:`NatGatewaysOperations` + * 2020-06-01: :class:`NatGatewaysOperations` + * 2020-07-01: :class:`NatGatewaysOperations` + * 2020-08-01: :class:`NatGatewaysOperations` + * 2020-11-01: :class:`NatGatewaysOperations` + * 2021-02-01: :class:`NatGatewaysOperations` + * 2021-05-01: :class:`NatGatewaysOperations` + * 2021-08-01: :class:`NatGatewaysOperations` + """ + api_version = self._get_api_version('nat_gateways') + if api_version == '2019-02-01': + from .v2019_02_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NatGatewaysOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NatGatewaysOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'nat_gateways'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def nat_rules(self): + """Instance depends on the API version: + + * 2020-08-01: :class:`NatRulesOperations` + * 2020-11-01: :class:`NatRulesOperations` + * 2021-02-01: :class:`NatRulesOperations` + * 2021-05-01: :class:`NatRulesOperations` + * 2021-08-01: :class:`NatRulesOperations` + """ + api_version = self._get_api_version('nat_rules') + if api_version == '2020-08-01': + from .v2020_08_01.operations import NatRulesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NatRulesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NatRulesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NatRulesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NatRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'nat_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_groups(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`NetworkGroupsOperations` + """ + api_version = self._get_api_version('network_groups') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import NetworkGroupsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_groups'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_interface_ip_configurations(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2017-10-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2018-01-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2018-02-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2018-04-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2018-06-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2018-07-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2018-08-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2018-10-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2018-11-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2018-12-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2019-02-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2019-04-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2019-06-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2019-07-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2019-08-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2019-09-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2019-11-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2019-12-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2020-03-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2020-04-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2020-05-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2020-06-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2020-07-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2020-08-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2020-11-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2021-02-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2021-05-01: :class:`NetworkInterfaceIPConfigurationsOperations` + * 2021-08-01: :class:`NetworkInterfaceIPConfigurationsOperations` + """ + api_version = self._get_api_version('network_interface_ip_configurations') + if api_version == '2017-06-01': + from .v2017_06_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkInterfaceIPConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_interface_ip_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_interface_load_balancers(self): + """Instance depends on the API version: + + * 2017-06-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2017-10-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2018-01-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2018-02-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2018-04-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2018-06-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2018-07-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2018-08-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2018-10-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2018-11-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2018-12-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2019-02-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2019-04-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2019-06-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2019-07-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2019-08-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2019-09-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2019-11-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2019-12-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2020-03-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2020-04-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2020-05-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2020-06-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2020-07-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2020-08-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2020-11-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2021-02-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2021-05-01: :class:`NetworkInterfaceLoadBalancersOperations` + * 2021-08-01: :class:`NetworkInterfaceLoadBalancersOperations` + """ + api_version = self._get_api_version('network_interface_load_balancers') + if api_version == '2017-06-01': + from .v2017_06_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkInterfaceLoadBalancersOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_interface_load_balancers'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_interface_tap_configurations(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2018-10-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2018-11-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2018-12-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2019-02-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2019-04-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2019-06-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2019-07-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2019-08-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2019-09-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2019-11-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2019-12-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2020-03-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2020-04-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2020-05-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2020-06-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2020-07-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2020-08-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2020-11-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2021-02-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2021-05-01: :class:`NetworkInterfaceTapConfigurationsOperations` + * 2021-08-01: :class:`NetworkInterfaceTapConfigurationsOperations` + """ + api_version = self._get_api_version('network_interface_tap_configurations') + if api_version == '2018-08-01': + from .v2018_08_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkInterfaceTapConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_interface_tap_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_interfaces(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`NetworkInterfacesOperations` + * 2016-09-01: :class:`NetworkInterfacesOperations` + * 2016-12-01: :class:`NetworkInterfacesOperations` + * 2017-03-01: :class:`NetworkInterfacesOperations` + * 2017-06-01: :class:`NetworkInterfacesOperations` + * 2017-10-01: :class:`NetworkInterfacesOperations` + * 2018-01-01: :class:`NetworkInterfacesOperations` + * 2018-02-01: :class:`NetworkInterfacesOperations` + * 2018-04-01: :class:`NetworkInterfacesOperations` + * 2018-06-01: :class:`NetworkInterfacesOperations` + * 2018-07-01: :class:`NetworkInterfacesOperations` + * 2018-08-01: :class:`NetworkInterfacesOperations` + * 2018-10-01: :class:`NetworkInterfacesOperations` + * 2018-11-01: :class:`NetworkInterfacesOperations` + * 2018-12-01: :class:`NetworkInterfacesOperations` + * 2019-02-01: :class:`NetworkInterfacesOperations` + * 2019-04-01: :class:`NetworkInterfacesOperations` + * 2019-06-01: :class:`NetworkInterfacesOperations` + * 2019-07-01: :class:`NetworkInterfacesOperations` + * 2019-08-01: :class:`NetworkInterfacesOperations` + * 2019-09-01: :class:`NetworkInterfacesOperations` + * 2019-11-01: :class:`NetworkInterfacesOperations` + * 2019-12-01: :class:`NetworkInterfacesOperations` + * 2020-03-01: :class:`NetworkInterfacesOperations` + * 2020-04-01: :class:`NetworkInterfacesOperations` + * 2020-05-01: :class:`NetworkInterfacesOperations` + * 2020-06-01: :class:`NetworkInterfacesOperations` + * 2020-07-01: :class:`NetworkInterfacesOperations` + * 2020-08-01: :class:`NetworkInterfacesOperations` + * 2020-11-01: :class:`NetworkInterfacesOperations` + * 2021-02-01: :class:`NetworkInterfacesOperations` + * 2021-05-01: :class:`NetworkInterfacesOperations` + * 2021-08-01: :class:`NetworkInterfacesOperations` + """ + api_version = self._get_api_version('network_interfaces') + if api_version == '2015-06-15': + from .v2015_06_15.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkInterfacesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkInterfacesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_interfaces'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_manager_commits(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`NetworkManagerCommitsOperations` + """ + api_version = self._get_api_version('network_manager_commits') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import NetworkManagerCommitsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_manager_commits'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_manager_deployment_status(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`NetworkManagerDeploymentStatusOperations` + """ + api_version = self._get_api_version('network_manager_deployment_status') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import NetworkManagerDeploymentStatusOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_manager_deployment_status'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_manager_effective_security_admin_rules(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`NetworkManagerEffectiveSecurityAdminRulesOperations` + """ + api_version = self._get_api_version('network_manager_effective_security_admin_rules') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import NetworkManagerEffectiveSecurityAdminRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_manager_effective_security_admin_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_managers(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`NetworkManagersOperations` + """ + api_version = self._get_api_version('network_managers') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import NetworkManagersOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_managers'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_profiles(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`NetworkProfilesOperations` + * 2018-10-01: :class:`NetworkProfilesOperations` + * 2018-11-01: :class:`NetworkProfilesOperations` + * 2018-12-01: :class:`NetworkProfilesOperations` + * 2019-02-01: :class:`NetworkProfilesOperations` + * 2019-04-01: :class:`NetworkProfilesOperations` + * 2019-06-01: :class:`NetworkProfilesOperations` + * 2019-07-01: :class:`NetworkProfilesOperations` + * 2019-08-01: :class:`NetworkProfilesOperations` + * 2019-09-01: :class:`NetworkProfilesOperations` + * 2019-11-01: :class:`NetworkProfilesOperations` + * 2019-12-01: :class:`NetworkProfilesOperations` + * 2020-03-01: :class:`NetworkProfilesOperations` + * 2020-04-01: :class:`NetworkProfilesOperations` + * 2020-05-01: :class:`NetworkProfilesOperations` + * 2020-06-01: :class:`NetworkProfilesOperations` + * 2020-07-01: :class:`NetworkProfilesOperations` + * 2020-08-01: :class:`NetworkProfilesOperations` + * 2020-11-01: :class:`NetworkProfilesOperations` + * 2021-02-01: :class:`NetworkProfilesOperations` + * 2021-05-01: :class:`NetworkProfilesOperations` + * 2021-08-01: :class:`NetworkProfilesOperations` + """ + api_version = self._get_api_version('network_profiles') + if api_version == '2018-08-01': + from .v2018_08_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkProfilesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkProfilesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_profiles'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_security_groups(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`NetworkSecurityGroupsOperations` + * 2016-09-01: :class:`NetworkSecurityGroupsOperations` + * 2016-12-01: :class:`NetworkSecurityGroupsOperations` + * 2017-03-01: :class:`NetworkSecurityGroupsOperations` + * 2017-06-01: :class:`NetworkSecurityGroupsOperations` + * 2017-10-01: :class:`NetworkSecurityGroupsOperations` + * 2018-01-01: :class:`NetworkSecurityGroupsOperations` + * 2018-02-01: :class:`NetworkSecurityGroupsOperations` + * 2018-04-01: :class:`NetworkSecurityGroupsOperations` + * 2018-06-01: :class:`NetworkSecurityGroupsOperations` + * 2018-07-01: :class:`NetworkSecurityGroupsOperations` + * 2018-08-01: :class:`NetworkSecurityGroupsOperations` + * 2018-10-01: :class:`NetworkSecurityGroupsOperations` + * 2018-11-01: :class:`NetworkSecurityGroupsOperations` + * 2018-12-01: :class:`NetworkSecurityGroupsOperations` + * 2019-02-01: :class:`NetworkSecurityGroupsOperations` + * 2019-04-01: :class:`NetworkSecurityGroupsOperations` + * 2019-06-01: :class:`NetworkSecurityGroupsOperations` + * 2019-07-01: :class:`NetworkSecurityGroupsOperations` + * 2019-08-01: :class:`NetworkSecurityGroupsOperations` + * 2019-09-01: :class:`NetworkSecurityGroupsOperations` + * 2019-11-01: :class:`NetworkSecurityGroupsOperations` + * 2019-12-01: :class:`NetworkSecurityGroupsOperations` + * 2020-03-01: :class:`NetworkSecurityGroupsOperations` + * 2020-04-01: :class:`NetworkSecurityGroupsOperations` + * 2020-05-01: :class:`NetworkSecurityGroupsOperations` + * 2020-06-01: :class:`NetworkSecurityGroupsOperations` + * 2020-07-01: :class:`NetworkSecurityGroupsOperations` + * 2020-08-01: :class:`NetworkSecurityGroupsOperations` + * 2020-11-01: :class:`NetworkSecurityGroupsOperations` + * 2021-02-01: :class:`NetworkSecurityGroupsOperations` + * 2021-05-01: :class:`NetworkSecurityGroupsOperations` + * 2021-08-01: :class:`NetworkSecurityGroupsOperations` + """ + api_version = self._get_api_version('network_security_groups') + if api_version == '2015-06-15': + from .v2015_06_15.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkSecurityGroupsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkSecurityGroupsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_security_groups'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_security_perimeters(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`NetworkSecurityPerimetersOperations` + """ + api_version = self._get_api_version('network_security_perimeters') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import NetworkSecurityPerimetersOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_security_perimeters'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_virtual_appliances(self): + """Instance depends on the API version: + + * 2019-12-01: :class:`NetworkVirtualAppliancesOperations` + * 2020-03-01: :class:`NetworkVirtualAppliancesOperations` + * 2020-04-01: :class:`NetworkVirtualAppliancesOperations` + * 2020-05-01: :class:`NetworkVirtualAppliancesOperations` + * 2020-06-01: :class:`NetworkVirtualAppliancesOperations` + * 2020-07-01: :class:`NetworkVirtualAppliancesOperations` + * 2020-08-01: :class:`NetworkVirtualAppliancesOperations` + * 2020-11-01: :class:`NetworkVirtualAppliancesOperations` + * 2021-02-01: :class:`NetworkVirtualAppliancesOperations` + * 2021-05-01: :class:`NetworkVirtualAppliancesOperations` + * 2021-08-01: :class:`NetworkVirtualAppliancesOperations` + """ + api_version = self._get_api_version('network_virtual_appliances') + if api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkVirtualAppliancesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkVirtualAppliancesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_virtual_appliances'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def network_watchers(self): + """Instance depends on the API version: + + * 2016-09-01: :class:`NetworkWatchersOperations` + * 2016-12-01: :class:`NetworkWatchersOperations` + * 2017-03-01: :class:`NetworkWatchersOperations` + * 2017-06-01: :class:`NetworkWatchersOperations` + * 2017-10-01: :class:`NetworkWatchersOperations` + * 2018-01-01: :class:`NetworkWatchersOperations` + * 2018-02-01: :class:`NetworkWatchersOperations` + * 2018-04-01: :class:`NetworkWatchersOperations` + * 2018-06-01: :class:`NetworkWatchersOperations` + * 2018-07-01: :class:`NetworkWatchersOperations` + * 2018-08-01: :class:`NetworkWatchersOperations` + * 2018-10-01: :class:`NetworkWatchersOperations` + * 2018-11-01: :class:`NetworkWatchersOperations` + * 2018-12-01: :class:`NetworkWatchersOperations` + * 2019-02-01: :class:`NetworkWatchersOperations` + * 2019-04-01: :class:`NetworkWatchersOperations` + * 2019-06-01: :class:`NetworkWatchersOperations` + * 2019-07-01: :class:`NetworkWatchersOperations` + * 2019-08-01: :class:`NetworkWatchersOperations` + * 2019-09-01: :class:`NetworkWatchersOperations` + * 2019-11-01: :class:`NetworkWatchersOperations` + * 2019-12-01: :class:`NetworkWatchersOperations` + * 2020-03-01: :class:`NetworkWatchersOperations` + * 2020-04-01: :class:`NetworkWatchersOperations` + * 2020-05-01: :class:`NetworkWatchersOperations` + * 2020-06-01: :class:`NetworkWatchersOperations` + * 2020-07-01: :class:`NetworkWatchersOperations` + * 2020-08-01: :class:`NetworkWatchersOperations` + * 2020-11-01: :class:`NetworkWatchersOperations` + * 2021-02-01: :class:`NetworkWatchersOperations` + * 2021-05-01: :class:`NetworkWatchersOperations` + * 2021-08-01: :class:`NetworkWatchersOperations` + """ + api_version = self._get_api_version('network_watchers') + if api_version == '2016-09-01': + from .v2016_09_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkWatchersOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkWatchersOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'network_watchers'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def nsp_access_rules(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`NspAccessRulesOperations` + """ + api_version = self._get_api_version('nsp_access_rules') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import NspAccessRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'nsp_access_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def nsp_associations(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`NspAssociationsOperations` + """ + api_version = self._get_api_version('nsp_associations') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import NspAssociationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'nsp_associations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def nsp_profiles(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`NspProfilesOperations` + """ + api_version = self._get_api_version('nsp_profiles') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import NspProfilesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'nsp_profiles'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def operations(self): + """Instance depends on the API version: + + * 2017-10-01: :class:`Operations` + * 2018-01-01: :class:`Operations` + * 2018-02-01: :class:`Operations` + * 2018-04-01: :class:`Operations` + * 2018-06-01: :class:`Operations` + * 2018-07-01: :class:`Operations` + * 2018-08-01: :class:`Operations` + * 2018-10-01: :class:`Operations` + * 2018-11-01: :class:`Operations` + * 2018-12-01: :class:`Operations` + * 2019-02-01: :class:`Operations` + * 2019-04-01: :class:`Operations` + * 2019-06-01: :class:`Operations` + * 2019-07-01: :class:`Operations` + * 2019-08-01: :class:`Operations` + * 2019-09-01: :class:`Operations` + * 2019-11-01: :class:`Operations` + * 2019-12-01: :class:`Operations` + * 2020-03-01: :class:`Operations` + * 2020-04-01: :class:`Operations` + * 2020-05-01: :class:`Operations` + * 2020-06-01: :class:`Operations` + * 2020-07-01: :class:`Operations` + * 2020-08-01: :class:`Operations` + * 2020-11-01: :class:`Operations` + * 2021-02-01: :class:`Operations` + * 2021-05-01: :class:`Operations` + * 2021-08-01: :class:`Operations` + """ + api_version = self._get_api_version('operations') + if api_version == '2017-10-01': + from .v2017_10_01.operations import Operations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import Operations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import Operations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import Operations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import Operations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import Operations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import Operations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import Operations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import Operations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import Operations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import Operations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import Operations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import Operations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import Operations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import Operations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import Operations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import Operations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import Operations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import Operations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import Operations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import Operations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import Operations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import Operations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import Operations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import Operations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import Operations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import Operations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import Operations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'operations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def p2_svpn_gateways(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`P2SVpnGatewaysOperations` + * 2018-10-01: :class:`P2SVpnGatewaysOperations` + * 2018-11-01: :class:`P2SVpnGatewaysOperations` + * 2018-12-01: :class:`P2SVpnGatewaysOperations` + * 2019-02-01: :class:`P2SVpnGatewaysOperations` + * 2019-04-01: :class:`P2SVpnGatewaysOperations` + * 2019-06-01: :class:`P2SVpnGatewaysOperations` + * 2019-07-01: :class:`P2SVpnGatewaysOperations` + * 2019-08-01: :class:`P2SVpnGatewaysOperations` + * 2019-09-01: :class:`P2SVpnGatewaysOperations` + * 2019-11-01: :class:`P2SVpnGatewaysOperations` + * 2019-12-01: :class:`P2SVpnGatewaysOperations` + * 2020-03-01: :class:`P2SVpnGatewaysOperations` + * 2020-04-01: :class:`P2SVpnGatewaysOperations` + * 2020-05-01: :class:`P2SVpnGatewaysOperations` + * 2020-06-01: :class:`P2SVpnGatewaysOperations` + * 2020-07-01: :class:`P2SVpnGatewaysOperations` + * 2020-08-01: :class:`P2SVpnGatewaysOperations` + * 2020-11-01: :class:`P2SVpnGatewaysOperations` + * 2021-02-01: :class:`P2SVpnGatewaysOperations` + * 2021-05-01: :class:`P2SVpnGatewaysOperations` + * 2021-08-01: :class:`P2SVpnGatewaysOperations` + """ + api_version = self._get_api_version('p2_svpn_gateways') + if api_version == '2018-08-01': + from .v2018_08_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import P2SVpnGatewaysOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import P2SVpnGatewaysOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'p2_svpn_gateways'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def p2_svpn_server_configurations(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`P2SVpnServerConfigurationsOperations` + * 2018-10-01: :class:`P2SVpnServerConfigurationsOperations` + * 2018-11-01: :class:`P2SVpnServerConfigurationsOperations` + * 2018-12-01: :class:`P2SVpnServerConfigurationsOperations` + * 2019-02-01: :class:`P2SVpnServerConfigurationsOperations` + * 2019-04-01: :class:`P2SVpnServerConfigurationsOperations` + * 2019-06-01: :class:`P2SVpnServerConfigurationsOperations` + * 2019-07-01: :class:`P2SVpnServerConfigurationsOperations` + """ + api_version = self._get_api_version('p2_svpn_server_configurations') + if api_version == '2018-08-01': + from .v2018_08_01.operations import P2SVpnServerConfigurationsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import P2SVpnServerConfigurationsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import P2SVpnServerConfigurationsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import P2SVpnServerConfigurationsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import P2SVpnServerConfigurationsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import P2SVpnServerConfigurationsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import P2SVpnServerConfigurationsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import P2SVpnServerConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'p2_svpn_server_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def packet_captures(self): + """Instance depends on the API version: + + * 2016-09-01: :class:`PacketCapturesOperations` + * 2016-12-01: :class:`PacketCapturesOperations` + * 2017-03-01: :class:`PacketCapturesOperations` + * 2017-06-01: :class:`PacketCapturesOperations` + * 2017-10-01: :class:`PacketCapturesOperations` + * 2018-01-01: :class:`PacketCapturesOperations` + * 2018-02-01: :class:`PacketCapturesOperations` + * 2018-04-01: :class:`PacketCapturesOperations` + * 2018-06-01: :class:`PacketCapturesOperations` + * 2018-07-01: :class:`PacketCapturesOperations` + * 2018-08-01: :class:`PacketCapturesOperations` + * 2018-10-01: :class:`PacketCapturesOperations` + * 2018-11-01: :class:`PacketCapturesOperations` + * 2018-12-01: :class:`PacketCapturesOperations` + * 2019-02-01: :class:`PacketCapturesOperations` + * 2019-04-01: :class:`PacketCapturesOperations` + * 2019-06-01: :class:`PacketCapturesOperations` + * 2019-07-01: :class:`PacketCapturesOperations` + * 2019-08-01: :class:`PacketCapturesOperations` + * 2019-09-01: :class:`PacketCapturesOperations` + * 2019-11-01: :class:`PacketCapturesOperations` + * 2019-12-01: :class:`PacketCapturesOperations` + * 2020-03-01: :class:`PacketCapturesOperations` + * 2020-04-01: :class:`PacketCapturesOperations` + * 2020-05-01: :class:`PacketCapturesOperations` + * 2020-06-01: :class:`PacketCapturesOperations` + * 2020-07-01: :class:`PacketCapturesOperations` + * 2020-08-01: :class:`PacketCapturesOperations` + * 2020-11-01: :class:`PacketCapturesOperations` + * 2021-02-01: :class:`PacketCapturesOperations` + * 2021-05-01: :class:`PacketCapturesOperations` + * 2021-08-01: :class:`PacketCapturesOperations` + """ + api_version = self._get_api_version('packet_captures') + if api_version == '2016-09-01': + from .v2016_09_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import PacketCapturesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import PacketCapturesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'packet_captures'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def peer_express_route_circuit_connections(self): + """Instance depends on the API version: + + * 2018-12-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2019-02-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2019-04-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2019-06-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2019-07-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2019-08-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2019-09-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2019-11-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2019-12-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2020-03-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2020-04-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2020-05-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2020-06-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2020-07-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2020-08-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2020-11-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2021-02-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2021-05-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + * 2021-08-01: :class:`PeerExpressRouteCircuitConnectionsOperations` + """ + api_version = self._get_api_version('peer_express_route_circuit_connections') + if api_version == '2018-12-01': + from .v2018_12_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import PeerExpressRouteCircuitConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'peer_express_route_circuit_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def perimeter_associable_resource_types(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`PerimeterAssociableResourceTypesOperations` + """ + api_version = self._get_api_version('perimeter_associable_resource_types') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import PerimeterAssociableResourceTypesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'perimeter_associable_resource_types'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def private_dns_zone_groups(self): + """Instance depends on the API version: + + * 2020-03-01: :class:`PrivateDnsZoneGroupsOperations` + * 2020-04-01: :class:`PrivateDnsZoneGroupsOperations` + * 2020-05-01: :class:`PrivateDnsZoneGroupsOperations` + * 2020-06-01: :class:`PrivateDnsZoneGroupsOperations` + * 2020-07-01: :class:`PrivateDnsZoneGroupsOperations` + * 2020-08-01: :class:`PrivateDnsZoneGroupsOperations` + * 2020-11-01: :class:`PrivateDnsZoneGroupsOperations` + * 2021-02-01: :class:`PrivateDnsZoneGroupsOperations` + * 2021-05-01: :class:`PrivateDnsZoneGroupsOperations` + * 2021-08-01: :class:`PrivateDnsZoneGroupsOperations` + """ + api_version = self._get_api_version('private_dns_zone_groups') + if api_version == '2020-03-01': + from .v2020_03_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import PrivateDnsZoneGroupsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'private_dns_zone_groups'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def private_endpoints(self): + """Instance depends on the API version: + + * 2019-04-01: :class:`PrivateEndpointsOperations` + * 2019-06-01: :class:`PrivateEndpointsOperations` + * 2019-07-01: :class:`PrivateEndpointsOperations` + * 2019-08-01: :class:`PrivateEndpointsOperations` + * 2019-09-01: :class:`PrivateEndpointsOperations` + * 2019-11-01: :class:`PrivateEndpointsOperations` + * 2019-12-01: :class:`PrivateEndpointsOperations` + * 2020-03-01: :class:`PrivateEndpointsOperations` + * 2020-04-01: :class:`PrivateEndpointsOperations` + * 2020-05-01: :class:`PrivateEndpointsOperations` + * 2020-06-01: :class:`PrivateEndpointsOperations` + * 2020-07-01: :class:`PrivateEndpointsOperations` + * 2020-08-01: :class:`PrivateEndpointsOperations` + * 2020-11-01: :class:`PrivateEndpointsOperations` + * 2021-02-01: :class:`PrivateEndpointsOperations` + * 2021-05-01: :class:`PrivateEndpointsOperations` + * 2021-08-01: :class:`PrivateEndpointsOperations` + """ + api_version = self._get_api_version('private_endpoints') + if api_version == '2019-04-01': + from .v2019_04_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import PrivateEndpointsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import PrivateEndpointsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'private_endpoints'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def private_link_services(self): + """Instance depends on the API version: + + * 2019-04-01: :class:`PrivateLinkServicesOperations` + * 2019-06-01: :class:`PrivateLinkServicesOperations` + * 2019-07-01: :class:`PrivateLinkServicesOperations` + * 2019-08-01: :class:`PrivateLinkServicesOperations` + * 2019-09-01: :class:`PrivateLinkServicesOperations` + * 2019-11-01: :class:`PrivateLinkServicesOperations` + * 2019-12-01: :class:`PrivateLinkServicesOperations` + * 2020-03-01: :class:`PrivateLinkServicesOperations` + * 2020-04-01: :class:`PrivateLinkServicesOperations` + * 2020-05-01: :class:`PrivateLinkServicesOperations` + * 2020-06-01: :class:`PrivateLinkServicesOperations` + * 2020-07-01: :class:`PrivateLinkServicesOperations` + * 2020-08-01: :class:`PrivateLinkServicesOperations` + * 2020-11-01: :class:`PrivateLinkServicesOperations` + * 2021-02-01: :class:`PrivateLinkServicesOperations` + * 2021-05-01: :class:`PrivateLinkServicesOperations` + * 2021-08-01: :class:`PrivateLinkServicesOperations` + """ + api_version = self._get_api_version('private_link_services') + if api_version == '2019-04-01': + from .v2019_04_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import PrivateLinkServicesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import PrivateLinkServicesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'private_link_services'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def public_ip_addresses(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`PublicIPAddressesOperations` + * 2016-09-01: :class:`PublicIPAddressesOperations` + * 2016-12-01: :class:`PublicIPAddressesOperations` + * 2017-03-01: :class:`PublicIPAddressesOperations` + * 2017-06-01: :class:`PublicIPAddressesOperations` + * 2017-10-01: :class:`PublicIPAddressesOperations` + * 2018-01-01: :class:`PublicIPAddressesOperations` + * 2018-02-01: :class:`PublicIPAddressesOperations` + * 2018-04-01: :class:`PublicIPAddressesOperations` + * 2018-06-01: :class:`PublicIPAddressesOperations` + * 2018-07-01: :class:`PublicIPAddressesOperations` + * 2018-08-01: :class:`PublicIPAddressesOperations` + * 2018-10-01: :class:`PublicIPAddressesOperations` + * 2018-11-01: :class:`PublicIPAddressesOperations` + * 2018-12-01: :class:`PublicIPAddressesOperations` + * 2019-02-01: :class:`PublicIPAddressesOperations` + * 2019-04-01: :class:`PublicIPAddressesOperations` + * 2019-06-01: :class:`PublicIPAddressesOperations` + * 2019-07-01: :class:`PublicIPAddressesOperations` + * 2019-08-01: :class:`PublicIPAddressesOperations` + * 2019-09-01: :class:`PublicIPAddressesOperations` + * 2019-11-01: :class:`PublicIPAddressesOperations` + * 2019-12-01: :class:`PublicIPAddressesOperations` + * 2020-03-01: :class:`PublicIPAddressesOperations` + * 2020-04-01: :class:`PublicIPAddressesOperations` + * 2020-05-01: :class:`PublicIPAddressesOperations` + * 2020-06-01: :class:`PublicIPAddressesOperations` + * 2020-07-01: :class:`PublicIPAddressesOperations` + * 2020-08-01: :class:`PublicIPAddressesOperations` + * 2020-11-01: :class:`PublicIPAddressesOperations` + * 2021-02-01: :class:`PublicIPAddressesOperations` + * 2021-05-01: :class:`PublicIPAddressesOperations` + * 2021-08-01: :class:`PublicIPAddressesOperations` + """ + api_version = self._get_api_version('public_ip_addresses') + if api_version == '2015-06-15': + from .v2015_06_15.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import PublicIPAddressesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import PublicIPAddressesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'public_ip_addresses'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def public_ip_prefixes(self): + """Instance depends on the API version: + + * 2018-07-01: :class:`PublicIPPrefixesOperations` + * 2018-08-01: :class:`PublicIPPrefixesOperations` + * 2018-10-01: :class:`PublicIPPrefixesOperations` + * 2018-11-01: :class:`PublicIPPrefixesOperations` + * 2018-12-01: :class:`PublicIPPrefixesOperations` + * 2019-02-01: :class:`PublicIPPrefixesOperations` + * 2019-04-01: :class:`PublicIPPrefixesOperations` + * 2019-06-01: :class:`PublicIPPrefixesOperations` + * 2019-07-01: :class:`PublicIPPrefixesOperations` + * 2019-08-01: :class:`PublicIPPrefixesOperations` + * 2019-09-01: :class:`PublicIPPrefixesOperations` + * 2019-11-01: :class:`PublicIPPrefixesOperations` + * 2019-12-01: :class:`PublicIPPrefixesOperations` + * 2020-03-01: :class:`PublicIPPrefixesOperations` + * 2020-04-01: :class:`PublicIPPrefixesOperations` + * 2020-05-01: :class:`PublicIPPrefixesOperations` + * 2020-06-01: :class:`PublicIPPrefixesOperations` + * 2020-07-01: :class:`PublicIPPrefixesOperations` + * 2020-08-01: :class:`PublicIPPrefixesOperations` + * 2020-11-01: :class:`PublicIPPrefixesOperations` + * 2021-02-01: :class:`PublicIPPrefixesOperations` + * 2021-05-01: :class:`PublicIPPrefixesOperations` + * 2021-08-01: :class:`PublicIPPrefixesOperations` + """ + api_version = self._get_api_version('public_ip_prefixes') + if api_version == '2018-07-01': + from .v2018_07_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import PublicIPPrefixesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import PublicIPPrefixesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'public_ip_prefixes'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def resource_navigation_links(self): + """Instance depends on the API version: + + * 2019-02-01: :class:`ResourceNavigationLinksOperations` + * 2019-04-01: :class:`ResourceNavigationLinksOperations` + * 2019-06-01: :class:`ResourceNavigationLinksOperations` + * 2019-07-01: :class:`ResourceNavigationLinksOperations` + * 2019-08-01: :class:`ResourceNavigationLinksOperations` + * 2019-09-01: :class:`ResourceNavigationLinksOperations` + * 2019-11-01: :class:`ResourceNavigationLinksOperations` + * 2019-12-01: :class:`ResourceNavigationLinksOperations` + * 2020-03-01: :class:`ResourceNavigationLinksOperations` + * 2020-04-01: :class:`ResourceNavigationLinksOperations` + * 2020-05-01: :class:`ResourceNavigationLinksOperations` + * 2020-06-01: :class:`ResourceNavigationLinksOperations` + * 2020-07-01: :class:`ResourceNavigationLinksOperations` + * 2020-08-01: :class:`ResourceNavigationLinksOperations` + * 2020-11-01: :class:`ResourceNavigationLinksOperations` + * 2021-02-01: :class:`ResourceNavigationLinksOperations` + * 2021-05-01: :class:`ResourceNavigationLinksOperations` + * 2021-08-01: :class:`ResourceNavigationLinksOperations` + """ + api_version = self._get_api_version('resource_navigation_links') + if api_version == '2019-02-01': + from .v2019_02_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ResourceNavigationLinksOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ResourceNavigationLinksOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'resource_navigation_links'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def route_filter_rules(self): + """Instance depends on the API version: + + * 2016-12-01: :class:`RouteFilterRulesOperations` + * 2017-03-01: :class:`RouteFilterRulesOperations` + * 2017-06-01: :class:`RouteFilterRulesOperations` + * 2017-10-01: :class:`RouteFilterRulesOperations` + * 2018-01-01: :class:`RouteFilterRulesOperations` + * 2018-02-01: :class:`RouteFilterRulesOperations` + * 2018-04-01: :class:`RouteFilterRulesOperations` + * 2018-06-01: :class:`RouteFilterRulesOperations` + * 2018-07-01: :class:`RouteFilterRulesOperations` + * 2018-08-01: :class:`RouteFilterRulesOperations` + * 2018-10-01: :class:`RouteFilterRulesOperations` + * 2018-11-01: :class:`RouteFilterRulesOperations` + * 2018-12-01: :class:`RouteFilterRulesOperations` + * 2019-02-01: :class:`RouteFilterRulesOperations` + * 2019-04-01: :class:`RouteFilterRulesOperations` + * 2019-06-01: :class:`RouteFilterRulesOperations` + * 2019-07-01: :class:`RouteFilterRulesOperations` + * 2019-08-01: :class:`RouteFilterRulesOperations` + * 2019-09-01: :class:`RouteFilterRulesOperations` + * 2019-11-01: :class:`RouteFilterRulesOperations` + * 2019-12-01: :class:`RouteFilterRulesOperations` + * 2020-03-01: :class:`RouteFilterRulesOperations` + * 2020-04-01: :class:`RouteFilterRulesOperations` + * 2020-05-01: :class:`RouteFilterRulesOperations` + * 2020-06-01: :class:`RouteFilterRulesOperations` + * 2020-07-01: :class:`RouteFilterRulesOperations` + * 2020-08-01: :class:`RouteFilterRulesOperations` + * 2020-11-01: :class:`RouteFilterRulesOperations` + * 2021-02-01: :class:`RouteFilterRulesOperations` + * 2021-05-01: :class:`RouteFilterRulesOperations` + * 2021-08-01: :class:`RouteFilterRulesOperations` + """ + api_version = self._get_api_version('route_filter_rules') + if api_version == '2016-12-01': + from .v2016_12_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import RouteFilterRulesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import RouteFilterRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'route_filter_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def route_filters(self): + """Instance depends on the API version: + + * 2016-12-01: :class:`RouteFiltersOperations` + * 2017-03-01: :class:`RouteFiltersOperations` + * 2017-06-01: :class:`RouteFiltersOperations` + * 2017-10-01: :class:`RouteFiltersOperations` + * 2018-01-01: :class:`RouteFiltersOperations` + * 2018-02-01: :class:`RouteFiltersOperations` + * 2018-04-01: :class:`RouteFiltersOperations` + * 2018-06-01: :class:`RouteFiltersOperations` + * 2018-07-01: :class:`RouteFiltersOperations` + * 2018-08-01: :class:`RouteFiltersOperations` + * 2018-10-01: :class:`RouteFiltersOperations` + * 2018-11-01: :class:`RouteFiltersOperations` + * 2018-12-01: :class:`RouteFiltersOperations` + * 2019-02-01: :class:`RouteFiltersOperations` + * 2019-04-01: :class:`RouteFiltersOperations` + * 2019-06-01: :class:`RouteFiltersOperations` + * 2019-07-01: :class:`RouteFiltersOperations` + * 2019-08-01: :class:`RouteFiltersOperations` + * 2019-09-01: :class:`RouteFiltersOperations` + * 2019-11-01: :class:`RouteFiltersOperations` + * 2019-12-01: :class:`RouteFiltersOperations` + * 2020-03-01: :class:`RouteFiltersOperations` + * 2020-04-01: :class:`RouteFiltersOperations` + * 2020-05-01: :class:`RouteFiltersOperations` + * 2020-06-01: :class:`RouteFiltersOperations` + * 2020-07-01: :class:`RouteFiltersOperations` + * 2020-08-01: :class:`RouteFiltersOperations` + * 2020-11-01: :class:`RouteFiltersOperations` + * 2021-02-01: :class:`RouteFiltersOperations` + * 2021-05-01: :class:`RouteFiltersOperations` + * 2021-08-01: :class:`RouteFiltersOperations` + """ + api_version = self._get_api_version('route_filters') + if api_version == '2016-12-01': + from .v2016_12_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import RouteFiltersOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import RouteFiltersOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'route_filters'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def route_tables(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`RouteTablesOperations` + * 2016-09-01: :class:`RouteTablesOperations` + * 2016-12-01: :class:`RouteTablesOperations` + * 2017-03-01: :class:`RouteTablesOperations` + * 2017-06-01: :class:`RouteTablesOperations` + * 2017-10-01: :class:`RouteTablesOperations` + * 2018-01-01: :class:`RouteTablesOperations` + * 2018-02-01: :class:`RouteTablesOperations` + * 2018-04-01: :class:`RouteTablesOperations` + * 2018-06-01: :class:`RouteTablesOperations` + * 2018-07-01: :class:`RouteTablesOperations` + * 2018-08-01: :class:`RouteTablesOperations` + * 2018-10-01: :class:`RouteTablesOperations` + * 2018-11-01: :class:`RouteTablesOperations` + * 2018-12-01: :class:`RouteTablesOperations` + * 2019-02-01: :class:`RouteTablesOperations` + * 2019-04-01: :class:`RouteTablesOperations` + * 2019-06-01: :class:`RouteTablesOperations` + * 2019-07-01: :class:`RouteTablesOperations` + * 2019-08-01: :class:`RouteTablesOperations` + * 2019-09-01: :class:`RouteTablesOperations` + * 2019-11-01: :class:`RouteTablesOperations` + * 2019-12-01: :class:`RouteTablesOperations` + * 2020-03-01: :class:`RouteTablesOperations` + * 2020-04-01: :class:`RouteTablesOperations` + * 2020-05-01: :class:`RouteTablesOperations` + * 2020-06-01: :class:`RouteTablesOperations` + * 2020-07-01: :class:`RouteTablesOperations` + * 2020-08-01: :class:`RouteTablesOperations` + * 2020-11-01: :class:`RouteTablesOperations` + * 2021-02-01: :class:`RouteTablesOperations` + * 2021-05-01: :class:`RouteTablesOperations` + * 2021-08-01: :class:`RouteTablesOperations` + """ + api_version = self._get_api_version('route_tables') + if api_version == '2015-06-15': + from .v2015_06_15.operations import RouteTablesOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import RouteTablesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import RouteTablesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'route_tables'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def routes(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`RoutesOperations` + * 2016-09-01: :class:`RoutesOperations` + * 2016-12-01: :class:`RoutesOperations` + * 2017-03-01: :class:`RoutesOperations` + * 2017-06-01: :class:`RoutesOperations` + * 2017-10-01: :class:`RoutesOperations` + * 2018-01-01: :class:`RoutesOperations` + * 2018-02-01: :class:`RoutesOperations` + * 2018-04-01: :class:`RoutesOperations` + * 2018-06-01: :class:`RoutesOperations` + * 2018-07-01: :class:`RoutesOperations` + * 2018-08-01: :class:`RoutesOperations` + * 2018-10-01: :class:`RoutesOperations` + * 2018-11-01: :class:`RoutesOperations` + * 2018-12-01: :class:`RoutesOperations` + * 2019-02-01: :class:`RoutesOperations` + * 2019-04-01: :class:`RoutesOperations` + * 2019-06-01: :class:`RoutesOperations` + * 2019-07-01: :class:`RoutesOperations` + * 2019-08-01: :class:`RoutesOperations` + * 2019-09-01: :class:`RoutesOperations` + * 2019-11-01: :class:`RoutesOperations` + * 2019-12-01: :class:`RoutesOperations` + * 2020-03-01: :class:`RoutesOperations` + * 2020-04-01: :class:`RoutesOperations` + * 2020-05-01: :class:`RoutesOperations` + * 2020-06-01: :class:`RoutesOperations` + * 2020-07-01: :class:`RoutesOperations` + * 2020-08-01: :class:`RoutesOperations` + * 2020-11-01: :class:`RoutesOperations` + * 2021-02-01: :class:`RoutesOperations` + * 2021-05-01: :class:`RoutesOperations` + * 2021-08-01: :class:`RoutesOperations` + """ + api_version = self._get_api_version('routes') + if api_version == '2015-06-15': + from .v2015_06_15.operations import RoutesOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import RoutesOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import RoutesOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import RoutesOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import RoutesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import RoutesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import RoutesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import RoutesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import RoutesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import RoutesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import RoutesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import RoutesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import RoutesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import RoutesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import RoutesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import RoutesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import RoutesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import RoutesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import RoutesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import RoutesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import RoutesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import RoutesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import RoutesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import RoutesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import RoutesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import RoutesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import RoutesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import RoutesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import RoutesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import RoutesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import RoutesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import RoutesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import RoutesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'routes'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def routing_intent(self): + """Instance depends on the API version: + + * 2021-05-01: :class:`RoutingIntentOperations` + * 2021-08-01: :class:`RoutingIntentOperations` + """ + api_version = self._get_api_version('routing_intent') + if api_version == '2021-05-01': + from .v2021_05_01.operations import RoutingIntentOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import RoutingIntentOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'routing_intent'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def security_admin_configurations(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`SecurityAdminConfigurationsOperations` + """ + api_version = self._get_api_version('security_admin_configurations') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import SecurityAdminConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'security_admin_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def security_partner_providers(self): + """Instance depends on the API version: + + * 2020-03-01: :class:`SecurityPartnerProvidersOperations` + * 2020-04-01: :class:`SecurityPartnerProvidersOperations` + * 2020-05-01: :class:`SecurityPartnerProvidersOperations` + * 2020-06-01: :class:`SecurityPartnerProvidersOperations` + * 2020-07-01: :class:`SecurityPartnerProvidersOperations` + * 2020-08-01: :class:`SecurityPartnerProvidersOperations` + * 2020-11-01: :class:`SecurityPartnerProvidersOperations` + * 2021-02-01: :class:`SecurityPartnerProvidersOperations` + * 2021-05-01: :class:`SecurityPartnerProvidersOperations` + * 2021-08-01: :class:`SecurityPartnerProvidersOperations` + """ + api_version = self._get_api_version('security_partner_providers') + if api_version == '2020-03-01': + from .v2020_03_01.operations import SecurityPartnerProvidersOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import SecurityPartnerProvidersOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import SecurityPartnerProvidersOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import SecurityPartnerProvidersOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import SecurityPartnerProvidersOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import SecurityPartnerProvidersOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import SecurityPartnerProvidersOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import SecurityPartnerProvidersOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import SecurityPartnerProvidersOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import SecurityPartnerProvidersOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'security_partner_providers'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def security_rules(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`SecurityRulesOperations` + * 2016-09-01: :class:`SecurityRulesOperations` + * 2016-12-01: :class:`SecurityRulesOperations` + * 2017-03-01: :class:`SecurityRulesOperations` + * 2017-06-01: :class:`SecurityRulesOperations` + * 2017-10-01: :class:`SecurityRulesOperations` + * 2018-01-01: :class:`SecurityRulesOperations` + * 2018-02-01: :class:`SecurityRulesOperations` + * 2018-04-01: :class:`SecurityRulesOperations` + * 2018-06-01: :class:`SecurityRulesOperations` + * 2018-07-01: :class:`SecurityRulesOperations` + * 2018-08-01: :class:`SecurityRulesOperations` + * 2018-10-01: :class:`SecurityRulesOperations` + * 2018-11-01: :class:`SecurityRulesOperations` + * 2018-12-01: :class:`SecurityRulesOperations` + * 2019-02-01: :class:`SecurityRulesOperations` + * 2019-04-01: :class:`SecurityRulesOperations` + * 2019-06-01: :class:`SecurityRulesOperations` + * 2019-07-01: :class:`SecurityRulesOperations` + * 2019-08-01: :class:`SecurityRulesOperations` + * 2019-09-01: :class:`SecurityRulesOperations` + * 2019-11-01: :class:`SecurityRulesOperations` + * 2019-12-01: :class:`SecurityRulesOperations` + * 2020-03-01: :class:`SecurityRulesOperations` + * 2020-04-01: :class:`SecurityRulesOperations` + * 2020-05-01: :class:`SecurityRulesOperations` + * 2020-06-01: :class:`SecurityRulesOperations` + * 2020-07-01: :class:`SecurityRulesOperations` + * 2020-08-01: :class:`SecurityRulesOperations` + * 2020-11-01: :class:`SecurityRulesOperations` + * 2021-02-01: :class:`SecurityRulesOperations` + * 2021-05-01: :class:`SecurityRulesOperations` + * 2021-08-01: :class:`SecurityRulesOperations` + """ + api_version = self._get_api_version('security_rules') + if api_version == '2015-06-15': + from .v2015_06_15.operations import SecurityRulesOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import SecurityRulesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import SecurityRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'security_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def security_user_configurations(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`SecurityUserConfigurationsOperations` + """ + api_version = self._get_api_version('security_user_configurations') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import SecurityUserConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'security_user_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def service_association_links(self): + """Instance depends on the API version: + + * 2019-02-01: :class:`ServiceAssociationLinksOperations` + * 2019-04-01: :class:`ServiceAssociationLinksOperations` + * 2019-06-01: :class:`ServiceAssociationLinksOperations` + * 2019-07-01: :class:`ServiceAssociationLinksOperations` + * 2019-08-01: :class:`ServiceAssociationLinksOperations` + * 2019-09-01: :class:`ServiceAssociationLinksOperations` + * 2019-11-01: :class:`ServiceAssociationLinksOperations` + * 2019-12-01: :class:`ServiceAssociationLinksOperations` + * 2020-03-01: :class:`ServiceAssociationLinksOperations` + * 2020-04-01: :class:`ServiceAssociationLinksOperations` + * 2020-05-01: :class:`ServiceAssociationLinksOperations` + * 2020-06-01: :class:`ServiceAssociationLinksOperations` + * 2020-07-01: :class:`ServiceAssociationLinksOperations` + * 2020-08-01: :class:`ServiceAssociationLinksOperations` + * 2020-11-01: :class:`ServiceAssociationLinksOperations` + * 2021-02-01: :class:`ServiceAssociationLinksOperations` + * 2021-05-01: :class:`ServiceAssociationLinksOperations` + * 2021-08-01: :class:`ServiceAssociationLinksOperations` + """ + api_version = self._get_api_version('service_association_links') + if api_version == '2019-02-01': + from .v2019_02_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ServiceAssociationLinksOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ServiceAssociationLinksOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'service_association_links'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def service_endpoint_policies(self): + """Instance depends on the API version: + + * 2018-07-01: :class:`ServiceEndpointPoliciesOperations` + * 2018-08-01: :class:`ServiceEndpointPoliciesOperations` + * 2018-10-01: :class:`ServiceEndpointPoliciesOperations` + * 2018-11-01: :class:`ServiceEndpointPoliciesOperations` + * 2018-12-01: :class:`ServiceEndpointPoliciesOperations` + * 2019-02-01: :class:`ServiceEndpointPoliciesOperations` + * 2019-04-01: :class:`ServiceEndpointPoliciesOperations` + * 2019-06-01: :class:`ServiceEndpointPoliciesOperations` + * 2019-07-01: :class:`ServiceEndpointPoliciesOperations` + * 2019-08-01: :class:`ServiceEndpointPoliciesOperations` + * 2019-09-01: :class:`ServiceEndpointPoliciesOperations` + * 2019-11-01: :class:`ServiceEndpointPoliciesOperations` + * 2019-12-01: :class:`ServiceEndpointPoliciesOperations` + * 2020-03-01: :class:`ServiceEndpointPoliciesOperations` + * 2020-04-01: :class:`ServiceEndpointPoliciesOperations` + * 2020-05-01: :class:`ServiceEndpointPoliciesOperations` + * 2020-06-01: :class:`ServiceEndpointPoliciesOperations` + * 2020-07-01: :class:`ServiceEndpointPoliciesOperations` + * 2020-08-01: :class:`ServiceEndpointPoliciesOperations` + * 2020-11-01: :class:`ServiceEndpointPoliciesOperations` + * 2021-02-01: :class:`ServiceEndpointPoliciesOperations` + * 2021-05-01: :class:`ServiceEndpointPoliciesOperations` + * 2021-08-01: :class:`ServiceEndpointPoliciesOperations` + """ + api_version = self._get_api_version('service_endpoint_policies') + if api_version == '2018-07-01': + from .v2018_07_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ServiceEndpointPoliciesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ServiceEndpointPoliciesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'service_endpoint_policies'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def service_endpoint_policy_definitions(self): + """Instance depends on the API version: + + * 2018-07-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2018-08-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2018-10-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2018-11-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2018-12-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2019-02-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2019-04-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2019-06-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2019-07-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2019-08-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2019-09-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2019-11-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2019-12-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2020-03-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2020-04-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2020-05-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2020-06-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2020-07-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2020-08-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2020-11-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2021-02-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2021-05-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + * 2021-08-01: :class:`ServiceEndpointPolicyDefinitionsOperations` + """ + api_version = self._get_api_version('service_endpoint_policy_definitions') + if api_version == '2018-07-01': + from .v2018_07_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ServiceEndpointPolicyDefinitionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'service_endpoint_policy_definitions'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def service_tag_information(self): + """Instance depends on the API version: + + * 2021-05-01: :class:`ServiceTagInformationOperations` + * 2021-08-01: :class:`ServiceTagInformationOperations` + """ + api_version = self._get_api_version('service_tag_information') + if api_version == '2021-05-01': + from .v2021_05_01.operations import ServiceTagInformationOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ServiceTagInformationOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'service_tag_information'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def service_tags(self): + """Instance depends on the API version: + + * 2019-04-01: :class:`ServiceTagsOperations` + * 2019-06-01: :class:`ServiceTagsOperations` + * 2019-07-01: :class:`ServiceTagsOperations` + * 2019-08-01: :class:`ServiceTagsOperations` + * 2019-09-01: :class:`ServiceTagsOperations` + * 2019-11-01: :class:`ServiceTagsOperations` + * 2019-12-01: :class:`ServiceTagsOperations` + * 2020-03-01: :class:`ServiceTagsOperations` + * 2020-04-01: :class:`ServiceTagsOperations` + * 2020-05-01: :class:`ServiceTagsOperations` + * 2020-06-01: :class:`ServiceTagsOperations` + * 2020-07-01: :class:`ServiceTagsOperations` + * 2020-08-01: :class:`ServiceTagsOperations` + * 2020-11-01: :class:`ServiceTagsOperations` + * 2021-02-01: :class:`ServiceTagsOperations` + * 2021-05-01: :class:`ServiceTagsOperations` + * 2021-08-01: :class:`ServiceTagsOperations` + """ + api_version = self._get_api_version('service_tags') + if api_version == '2019-04-01': + from .v2019_04_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import ServiceTagsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import ServiceTagsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'service_tags'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def subnets(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`SubnetsOperations` + * 2016-09-01: :class:`SubnetsOperations` + * 2016-12-01: :class:`SubnetsOperations` + * 2017-03-01: :class:`SubnetsOperations` + * 2017-06-01: :class:`SubnetsOperations` + * 2017-10-01: :class:`SubnetsOperations` + * 2018-01-01: :class:`SubnetsOperations` + * 2018-02-01: :class:`SubnetsOperations` + * 2018-04-01: :class:`SubnetsOperations` + * 2018-06-01: :class:`SubnetsOperations` + * 2018-07-01: :class:`SubnetsOperations` + * 2018-08-01: :class:`SubnetsOperations` + * 2018-10-01: :class:`SubnetsOperations` + * 2018-11-01: :class:`SubnetsOperations` + * 2018-12-01: :class:`SubnetsOperations` + * 2019-02-01: :class:`SubnetsOperations` + * 2019-04-01: :class:`SubnetsOperations` + * 2019-06-01: :class:`SubnetsOperations` + * 2019-07-01: :class:`SubnetsOperations` + * 2019-08-01: :class:`SubnetsOperations` + * 2019-09-01: :class:`SubnetsOperations` + * 2019-11-01: :class:`SubnetsOperations` + * 2019-12-01: :class:`SubnetsOperations` + * 2020-03-01: :class:`SubnetsOperations` + * 2020-04-01: :class:`SubnetsOperations` + * 2020-05-01: :class:`SubnetsOperations` + * 2020-06-01: :class:`SubnetsOperations` + * 2020-07-01: :class:`SubnetsOperations` + * 2020-08-01: :class:`SubnetsOperations` + * 2020-11-01: :class:`SubnetsOperations` + * 2021-02-01: :class:`SubnetsOperations` + * 2021-05-01: :class:`SubnetsOperations` + * 2021-08-01: :class:`SubnetsOperations` + """ + api_version = self._get_api_version('subnets') + if api_version == '2015-06-15': + from .v2015_06_15.operations import SubnetsOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import SubnetsOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import SubnetsOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import SubnetsOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import SubnetsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import SubnetsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import SubnetsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import SubnetsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import SubnetsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import SubnetsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import SubnetsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import SubnetsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import SubnetsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import SubnetsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import SubnetsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import SubnetsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import SubnetsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import SubnetsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import SubnetsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import SubnetsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import SubnetsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import SubnetsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import SubnetsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import SubnetsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import SubnetsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import SubnetsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import SubnetsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import SubnetsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import SubnetsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import SubnetsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import SubnetsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import SubnetsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import SubnetsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'subnets'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def usages(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`UsagesOperations` + * 2016-09-01: :class:`UsagesOperations` + * 2016-12-01: :class:`UsagesOperations` + * 2017-03-01: :class:`UsagesOperations` + * 2017-06-01: :class:`UsagesOperations` + * 2017-10-01: :class:`UsagesOperations` + * 2018-01-01: :class:`UsagesOperations` + * 2018-02-01: :class:`UsagesOperations` + * 2018-04-01: :class:`UsagesOperations` + * 2018-06-01: :class:`UsagesOperations` + * 2018-07-01: :class:`UsagesOperations` + * 2018-08-01: :class:`UsagesOperations` + * 2018-10-01: :class:`UsagesOperations` + * 2018-11-01: :class:`UsagesOperations` + * 2018-12-01: :class:`UsagesOperations` + * 2019-02-01: :class:`UsagesOperations` + * 2019-04-01: :class:`UsagesOperations` + * 2019-06-01: :class:`UsagesOperations` + * 2019-07-01: :class:`UsagesOperations` + * 2019-08-01: :class:`UsagesOperations` + * 2019-09-01: :class:`UsagesOperations` + * 2019-11-01: :class:`UsagesOperations` + * 2019-12-01: :class:`UsagesOperations` + * 2020-03-01: :class:`UsagesOperations` + * 2020-04-01: :class:`UsagesOperations` + * 2020-05-01: :class:`UsagesOperations` + * 2020-06-01: :class:`UsagesOperations` + * 2020-07-01: :class:`UsagesOperations` + * 2020-08-01: :class:`UsagesOperations` + * 2020-11-01: :class:`UsagesOperations` + * 2021-02-01: :class:`UsagesOperations` + * 2021-05-01: :class:`UsagesOperations` + * 2021-08-01: :class:`UsagesOperations` + """ + api_version = self._get_api_version('usages') + if api_version == '2015-06-15': + from .v2015_06_15.operations import UsagesOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import UsagesOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import UsagesOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import UsagesOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import UsagesOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import UsagesOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import UsagesOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import UsagesOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import UsagesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import UsagesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import UsagesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import UsagesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import UsagesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import UsagesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import UsagesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import UsagesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import UsagesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import UsagesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import UsagesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import UsagesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import UsagesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import UsagesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import UsagesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import UsagesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import UsagesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import UsagesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import UsagesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import UsagesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import UsagesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import UsagesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import UsagesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import UsagesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import UsagesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'usages'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def user_rule_collections(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`UserRuleCollectionsOperations` + """ + api_version = self._get_api_version('user_rule_collections') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import UserRuleCollectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'user_rule_collections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def user_rules(self): + """Instance depends on the API version: + + * 2021-02-01-preview: :class:`UserRulesOperations` + """ + api_version = self._get_api_version('user_rules') + if api_version == '2021-02-01-preview': + from .v2021_02_01_preview.operations import UserRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'user_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_appliance_sites(self): + """Instance depends on the API version: + + * 2020-05-01: :class:`VirtualApplianceSitesOperations` + * 2020-06-01: :class:`VirtualApplianceSitesOperations` + * 2020-07-01: :class:`VirtualApplianceSitesOperations` + * 2020-08-01: :class:`VirtualApplianceSitesOperations` + * 2020-11-01: :class:`VirtualApplianceSitesOperations` + * 2021-02-01: :class:`VirtualApplianceSitesOperations` + * 2021-05-01: :class:`VirtualApplianceSitesOperations` + * 2021-08-01: :class:`VirtualApplianceSitesOperations` + """ + api_version = self._get_api_version('virtual_appliance_sites') + if api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualApplianceSitesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualApplianceSitesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualApplianceSitesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualApplianceSitesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualApplianceSitesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualApplianceSitesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualApplianceSitesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualApplianceSitesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_appliance_sites'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_appliance_skus(self): + """Instance depends on the API version: + + * 2020-05-01: :class:`VirtualApplianceSkusOperations` + * 2020-06-01: :class:`VirtualApplianceSkusOperations` + * 2020-07-01: :class:`VirtualApplianceSkusOperations` + * 2020-08-01: :class:`VirtualApplianceSkusOperations` + * 2020-11-01: :class:`VirtualApplianceSkusOperations` + * 2021-02-01: :class:`VirtualApplianceSkusOperations` + * 2021-05-01: :class:`VirtualApplianceSkusOperations` + * 2021-08-01: :class:`VirtualApplianceSkusOperations` + """ + api_version = self._get_api_version('virtual_appliance_skus') + if api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualApplianceSkusOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualApplianceSkusOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualApplianceSkusOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualApplianceSkusOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualApplianceSkusOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualApplianceSkusOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualApplianceSkusOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualApplianceSkusOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_appliance_skus'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_hub_bgp_connection(self): + """Instance depends on the API version: + + * 2020-05-01: :class:`VirtualHubBgpConnectionOperations` + * 2020-06-01: :class:`VirtualHubBgpConnectionOperations` + * 2020-07-01: :class:`VirtualHubBgpConnectionOperations` + * 2020-08-01: :class:`VirtualHubBgpConnectionOperations` + * 2020-11-01: :class:`VirtualHubBgpConnectionOperations` + * 2021-02-01: :class:`VirtualHubBgpConnectionOperations` + * 2021-05-01: :class:`VirtualHubBgpConnectionOperations` + * 2021-08-01: :class:`VirtualHubBgpConnectionOperations` + """ + api_version = self._get_api_version('virtual_hub_bgp_connection') + if api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualHubBgpConnectionOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualHubBgpConnectionOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualHubBgpConnectionOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualHubBgpConnectionOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualHubBgpConnectionOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualHubBgpConnectionOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualHubBgpConnectionOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualHubBgpConnectionOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_hub_bgp_connection'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_hub_bgp_connections(self): + """Instance depends on the API version: + + * 2020-05-01: :class:`VirtualHubBgpConnectionsOperations` + * 2020-06-01: :class:`VirtualHubBgpConnectionsOperations` + * 2020-07-01: :class:`VirtualHubBgpConnectionsOperations` + * 2020-08-01: :class:`VirtualHubBgpConnectionsOperations` + * 2020-11-01: :class:`VirtualHubBgpConnectionsOperations` + * 2021-02-01: :class:`VirtualHubBgpConnectionsOperations` + * 2021-05-01: :class:`VirtualHubBgpConnectionsOperations` + * 2021-08-01: :class:`VirtualHubBgpConnectionsOperations` + """ + api_version = self._get_api_version('virtual_hub_bgp_connections') + if api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualHubBgpConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualHubBgpConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualHubBgpConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualHubBgpConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualHubBgpConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualHubBgpConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualHubBgpConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualHubBgpConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_hub_bgp_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_hub_ip_configuration(self): + """Instance depends on the API version: + + * 2020-05-01: :class:`VirtualHubIpConfigurationOperations` + * 2020-06-01: :class:`VirtualHubIpConfigurationOperations` + * 2020-07-01: :class:`VirtualHubIpConfigurationOperations` + * 2020-08-01: :class:`VirtualHubIpConfigurationOperations` + * 2020-11-01: :class:`VirtualHubIpConfigurationOperations` + * 2021-02-01: :class:`VirtualHubIpConfigurationOperations` + * 2021-05-01: :class:`VirtualHubIpConfigurationOperations` + * 2021-08-01: :class:`VirtualHubIpConfigurationOperations` + """ + api_version = self._get_api_version('virtual_hub_ip_configuration') + if api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualHubIpConfigurationOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualHubIpConfigurationOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualHubIpConfigurationOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualHubIpConfigurationOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualHubIpConfigurationOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualHubIpConfigurationOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualHubIpConfigurationOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualHubIpConfigurationOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_hub_ip_configuration'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_hub_route_table_v2_s(self): + """Instance depends on the API version: + + * 2019-09-01: :class:`VirtualHubRouteTableV2SOperations` + * 2019-11-01: :class:`VirtualHubRouteTableV2SOperations` + * 2019-12-01: :class:`VirtualHubRouteTableV2SOperations` + * 2020-03-01: :class:`VirtualHubRouteTableV2SOperations` + * 2020-04-01: :class:`VirtualHubRouteTableV2SOperations` + * 2020-05-01: :class:`VirtualHubRouteTableV2SOperations` + * 2020-06-01: :class:`VirtualHubRouteTableV2SOperations` + * 2020-07-01: :class:`VirtualHubRouteTableV2SOperations` + * 2020-08-01: :class:`VirtualHubRouteTableV2SOperations` + * 2020-11-01: :class:`VirtualHubRouteTableV2SOperations` + * 2021-02-01: :class:`VirtualHubRouteTableV2SOperations` + * 2021-05-01: :class:`VirtualHubRouteTableV2SOperations` + * 2021-08-01: :class:`VirtualHubRouteTableV2SOperations` + """ + api_version = self._get_api_version('virtual_hub_route_table_v2_s') + if api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualHubRouteTableV2SOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_hub_route_table_v2_s'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_hubs(self): + """Instance depends on the API version: + + * 2018-04-01: :class:`VirtualHubsOperations` + * 2018-06-01: :class:`VirtualHubsOperations` + * 2018-07-01: :class:`VirtualHubsOperations` + * 2018-08-01: :class:`VirtualHubsOperations` + * 2018-10-01: :class:`VirtualHubsOperations` + * 2018-11-01: :class:`VirtualHubsOperations` + * 2018-12-01: :class:`VirtualHubsOperations` + * 2019-02-01: :class:`VirtualHubsOperations` + * 2019-04-01: :class:`VirtualHubsOperations` + * 2019-06-01: :class:`VirtualHubsOperations` + * 2019-07-01: :class:`VirtualHubsOperations` + * 2019-08-01: :class:`VirtualHubsOperations` + * 2019-09-01: :class:`VirtualHubsOperations` + * 2019-11-01: :class:`VirtualHubsOperations` + * 2019-12-01: :class:`VirtualHubsOperations` + * 2020-03-01: :class:`VirtualHubsOperations` + * 2020-04-01: :class:`VirtualHubsOperations` + * 2020-05-01: :class:`VirtualHubsOperations` + * 2020-06-01: :class:`VirtualHubsOperations` + * 2020-07-01: :class:`VirtualHubsOperations` + * 2020-08-01: :class:`VirtualHubsOperations` + * 2020-11-01: :class:`VirtualHubsOperations` + * 2021-02-01: :class:`VirtualHubsOperations` + * 2021-05-01: :class:`VirtualHubsOperations` + * 2021-08-01: :class:`VirtualHubsOperations` + """ + api_version = self._get_api_version('virtual_hubs') + if api_version == '2018-04-01': + from .v2018_04_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualHubsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualHubsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_hubs'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_network_gateway_connections(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2016-09-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2016-12-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2017-03-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2017-06-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2017-10-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2018-01-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2018-02-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2018-04-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2018-06-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2018-07-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2018-08-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2018-10-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2018-11-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2018-12-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2019-02-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2019-04-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2019-06-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2019-07-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2019-08-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2019-09-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2019-11-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2019-12-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2020-03-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2020-04-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2020-05-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2020-06-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2020-07-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2020-08-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2020-11-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2021-02-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2021-05-01: :class:`VirtualNetworkGatewayConnectionsOperations` + * 2021-08-01: :class:`VirtualNetworkGatewayConnectionsOperations` + """ + api_version = self._get_api_version('virtual_network_gateway_connections') + if api_version == '2015-06-15': + from .v2015_06_15.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualNetworkGatewayConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_network_gateway_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_network_gateway_nat_rules(self): + """Instance depends on the API version: + + * 2021-02-01: :class:`VirtualNetworkGatewayNatRulesOperations` + * 2021-05-01: :class:`VirtualNetworkGatewayNatRulesOperations` + * 2021-08-01: :class:`VirtualNetworkGatewayNatRulesOperations` + """ + api_version = self._get_api_version('virtual_network_gateway_nat_rules') + if api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualNetworkGatewayNatRulesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualNetworkGatewayNatRulesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualNetworkGatewayNatRulesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_network_gateway_nat_rules'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_network_gateways(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`VirtualNetworkGatewaysOperations` + * 2016-09-01: :class:`VirtualNetworkGatewaysOperations` + * 2016-12-01: :class:`VirtualNetworkGatewaysOperations` + * 2017-03-01: :class:`VirtualNetworkGatewaysOperations` + * 2017-06-01: :class:`VirtualNetworkGatewaysOperations` + * 2017-10-01: :class:`VirtualNetworkGatewaysOperations` + * 2018-01-01: :class:`VirtualNetworkGatewaysOperations` + * 2018-02-01: :class:`VirtualNetworkGatewaysOperations` + * 2018-04-01: :class:`VirtualNetworkGatewaysOperations` + * 2018-06-01: :class:`VirtualNetworkGatewaysOperations` + * 2018-07-01: :class:`VirtualNetworkGatewaysOperations` + * 2018-08-01: :class:`VirtualNetworkGatewaysOperations` + * 2018-10-01: :class:`VirtualNetworkGatewaysOperations` + * 2018-11-01: :class:`VirtualNetworkGatewaysOperations` + * 2018-12-01: :class:`VirtualNetworkGatewaysOperations` + * 2019-02-01: :class:`VirtualNetworkGatewaysOperations` + * 2019-04-01: :class:`VirtualNetworkGatewaysOperations` + * 2019-06-01: :class:`VirtualNetworkGatewaysOperations` + * 2019-07-01: :class:`VirtualNetworkGatewaysOperations` + * 2019-08-01: :class:`VirtualNetworkGatewaysOperations` + * 2019-09-01: :class:`VirtualNetworkGatewaysOperations` + * 2019-11-01: :class:`VirtualNetworkGatewaysOperations` + * 2019-12-01: :class:`VirtualNetworkGatewaysOperations` + * 2020-03-01: :class:`VirtualNetworkGatewaysOperations` + * 2020-04-01: :class:`VirtualNetworkGatewaysOperations` + * 2020-05-01: :class:`VirtualNetworkGatewaysOperations` + * 2020-06-01: :class:`VirtualNetworkGatewaysOperations` + * 2020-07-01: :class:`VirtualNetworkGatewaysOperations` + * 2020-08-01: :class:`VirtualNetworkGatewaysOperations` + * 2020-11-01: :class:`VirtualNetworkGatewaysOperations` + * 2021-02-01: :class:`VirtualNetworkGatewaysOperations` + * 2021-05-01: :class:`VirtualNetworkGatewaysOperations` + * 2021-08-01: :class:`VirtualNetworkGatewaysOperations` + """ + api_version = self._get_api_version('virtual_network_gateways') + if api_version == '2015-06-15': + from .v2015_06_15.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualNetworkGatewaysOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualNetworkGatewaysOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_network_gateways'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_network_peerings(self): + """Instance depends on the API version: + + * 2016-09-01: :class:`VirtualNetworkPeeringsOperations` + * 2016-12-01: :class:`VirtualNetworkPeeringsOperations` + * 2017-03-01: :class:`VirtualNetworkPeeringsOperations` + * 2017-06-01: :class:`VirtualNetworkPeeringsOperations` + * 2017-10-01: :class:`VirtualNetworkPeeringsOperations` + * 2018-01-01: :class:`VirtualNetworkPeeringsOperations` + * 2018-02-01: :class:`VirtualNetworkPeeringsOperations` + * 2018-04-01: :class:`VirtualNetworkPeeringsOperations` + * 2018-06-01: :class:`VirtualNetworkPeeringsOperations` + * 2018-07-01: :class:`VirtualNetworkPeeringsOperations` + * 2018-08-01: :class:`VirtualNetworkPeeringsOperations` + * 2018-10-01: :class:`VirtualNetworkPeeringsOperations` + * 2018-11-01: :class:`VirtualNetworkPeeringsOperations` + * 2018-12-01: :class:`VirtualNetworkPeeringsOperations` + * 2019-02-01: :class:`VirtualNetworkPeeringsOperations` + * 2019-04-01: :class:`VirtualNetworkPeeringsOperations` + * 2019-06-01: :class:`VirtualNetworkPeeringsOperations` + * 2019-07-01: :class:`VirtualNetworkPeeringsOperations` + * 2019-08-01: :class:`VirtualNetworkPeeringsOperations` + * 2019-09-01: :class:`VirtualNetworkPeeringsOperations` + * 2019-11-01: :class:`VirtualNetworkPeeringsOperations` + * 2019-12-01: :class:`VirtualNetworkPeeringsOperations` + * 2020-03-01: :class:`VirtualNetworkPeeringsOperations` + * 2020-04-01: :class:`VirtualNetworkPeeringsOperations` + * 2020-05-01: :class:`VirtualNetworkPeeringsOperations` + * 2020-06-01: :class:`VirtualNetworkPeeringsOperations` + * 2020-07-01: :class:`VirtualNetworkPeeringsOperations` + * 2020-08-01: :class:`VirtualNetworkPeeringsOperations` + * 2020-11-01: :class:`VirtualNetworkPeeringsOperations` + * 2021-02-01: :class:`VirtualNetworkPeeringsOperations` + * 2021-05-01: :class:`VirtualNetworkPeeringsOperations` + * 2021-08-01: :class:`VirtualNetworkPeeringsOperations` + """ + api_version = self._get_api_version('virtual_network_peerings') + if api_version == '2016-09-01': + from .v2016_09_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualNetworkPeeringsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualNetworkPeeringsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_network_peerings'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_network_taps(self): + """Instance depends on the API version: + + * 2018-08-01: :class:`VirtualNetworkTapsOperations` + * 2018-10-01: :class:`VirtualNetworkTapsOperations` + * 2018-11-01: :class:`VirtualNetworkTapsOperations` + * 2018-12-01: :class:`VirtualNetworkTapsOperations` + * 2019-02-01: :class:`VirtualNetworkTapsOperations` + * 2019-04-01: :class:`VirtualNetworkTapsOperations` + * 2019-06-01: :class:`VirtualNetworkTapsOperations` + * 2019-07-01: :class:`VirtualNetworkTapsOperations` + * 2019-08-01: :class:`VirtualNetworkTapsOperations` + * 2019-09-01: :class:`VirtualNetworkTapsOperations` + * 2019-11-01: :class:`VirtualNetworkTapsOperations` + * 2019-12-01: :class:`VirtualNetworkTapsOperations` + * 2020-03-01: :class:`VirtualNetworkTapsOperations` + * 2020-04-01: :class:`VirtualNetworkTapsOperations` + * 2020-05-01: :class:`VirtualNetworkTapsOperations` + * 2020-06-01: :class:`VirtualNetworkTapsOperations` + * 2020-07-01: :class:`VirtualNetworkTapsOperations` + * 2020-08-01: :class:`VirtualNetworkTapsOperations` + * 2020-11-01: :class:`VirtualNetworkTapsOperations` + * 2021-02-01: :class:`VirtualNetworkTapsOperations` + * 2021-05-01: :class:`VirtualNetworkTapsOperations` + * 2021-08-01: :class:`VirtualNetworkTapsOperations` + """ + api_version = self._get_api_version('virtual_network_taps') + if api_version == '2018-08-01': + from .v2018_08_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualNetworkTapsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualNetworkTapsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_network_taps'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_networks(self): + """Instance depends on the API version: + + * 2015-06-15: :class:`VirtualNetworksOperations` + * 2016-09-01: :class:`VirtualNetworksOperations` + * 2016-12-01: :class:`VirtualNetworksOperations` + * 2017-03-01: :class:`VirtualNetworksOperations` + * 2017-06-01: :class:`VirtualNetworksOperations` + * 2017-10-01: :class:`VirtualNetworksOperations` + * 2018-01-01: :class:`VirtualNetworksOperations` + * 2018-02-01: :class:`VirtualNetworksOperations` + * 2018-04-01: :class:`VirtualNetworksOperations` + * 2018-06-01: :class:`VirtualNetworksOperations` + * 2018-07-01: :class:`VirtualNetworksOperations` + * 2018-08-01: :class:`VirtualNetworksOperations` + * 2018-10-01: :class:`VirtualNetworksOperations` + * 2018-11-01: :class:`VirtualNetworksOperations` + * 2018-12-01: :class:`VirtualNetworksOperations` + * 2019-02-01: :class:`VirtualNetworksOperations` + * 2019-04-01: :class:`VirtualNetworksOperations` + * 2019-06-01: :class:`VirtualNetworksOperations` + * 2019-07-01: :class:`VirtualNetworksOperations` + * 2019-08-01: :class:`VirtualNetworksOperations` + * 2019-09-01: :class:`VirtualNetworksOperations` + * 2019-11-01: :class:`VirtualNetworksOperations` + * 2019-12-01: :class:`VirtualNetworksOperations` + * 2020-03-01: :class:`VirtualNetworksOperations` + * 2020-04-01: :class:`VirtualNetworksOperations` + * 2020-05-01: :class:`VirtualNetworksOperations` + * 2020-06-01: :class:`VirtualNetworksOperations` + * 2020-07-01: :class:`VirtualNetworksOperations` + * 2020-08-01: :class:`VirtualNetworksOperations` + * 2020-11-01: :class:`VirtualNetworksOperations` + * 2021-02-01: :class:`VirtualNetworksOperations` + * 2021-05-01: :class:`VirtualNetworksOperations` + * 2021-08-01: :class:`VirtualNetworksOperations` + """ + api_version = self._get_api_version('virtual_networks') + if api_version == '2015-06-15': + from .v2015_06_15.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualNetworksOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualNetworksOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_networks'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_router_peerings(self): + """Instance depends on the API version: + + * 2019-07-01: :class:`VirtualRouterPeeringsOperations` + * 2019-08-01: :class:`VirtualRouterPeeringsOperations` + * 2019-09-01: :class:`VirtualRouterPeeringsOperations` + * 2019-11-01: :class:`VirtualRouterPeeringsOperations` + * 2019-12-01: :class:`VirtualRouterPeeringsOperations` + * 2020-03-01: :class:`VirtualRouterPeeringsOperations` + * 2020-04-01: :class:`VirtualRouterPeeringsOperations` + * 2020-05-01: :class:`VirtualRouterPeeringsOperations` + * 2020-06-01: :class:`VirtualRouterPeeringsOperations` + * 2020-07-01: :class:`VirtualRouterPeeringsOperations` + * 2020-08-01: :class:`VirtualRouterPeeringsOperations` + * 2020-11-01: :class:`VirtualRouterPeeringsOperations` + * 2021-02-01: :class:`VirtualRouterPeeringsOperations` + * 2021-05-01: :class:`VirtualRouterPeeringsOperations` + * 2021-08-01: :class:`VirtualRouterPeeringsOperations` + """ + api_version = self._get_api_version('virtual_router_peerings') + if api_version == '2019-07-01': + from .v2019_07_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualRouterPeeringsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualRouterPeeringsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_router_peerings'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_routers(self): + """Instance depends on the API version: + + * 2019-07-01: :class:`VirtualRoutersOperations` + * 2019-08-01: :class:`VirtualRoutersOperations` + * 2019-09-01: :class:`VirtualRoutersOperations` + * 2019-11-01: :class:`VirtualRoutersOperations` + * 2019-12-01: :class:`VirtualRoutersOperations` + * 2020-03-01: :class:`VirtualRoutersOperations` + * 2020-04-01: :class:`VirtualRoutersOperations` + * 2020-05-01: :class:`VirtualRoutersOperations` + * 2020-06-01: :class:`VirtualRoutersOperations` + * 2020-07-01: :class:`VirtualRoutersOperations` + * 2020-08-01: :class:`VirtualRoutersOperations` + * 2020-11-01: :class:`VirtualRoutersOperations` + * 2021-02-01: :class:`VirtualRoutersOperations` + * 2021-05-01: :class:`VirtualRoutersOperations` + * 2021-08-01: :class:`VirtualRoutersOperations` + """ + api_version = self._get_api_version('virtual_routers') + if api_version == '2019-07-01': + from .v2019_07_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualRoutersOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualRoutersOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_routers'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def virtual_wans(self): + """Instance depends on the API version: + + * 2018-04-01: :class:`VirtualWANsOperations` + * 2018-06-01: :class:`VirtualWANsOperations` + * 2018-07-01: :class:`VirtualWANsOperations` + * 2018-08-01: :class:`VirtualWansOperations` + * 2018-10-01: :class:`VirtualWansOperations` + * 2018-11-01: :class:`VirtualWansOperations` + * 2018-12-01: :class:`VirtualWansOperations` + * 2019-02-01: :class:`VirtualWansOperations` + * 2019-04-01: :class:`VirtualWansOperations` + * 2019-06-01: :class:`VirtualWansOperations` + * 2019-07-01: :class:`VirtualWansOperations` + * 2019-08-01: :class:`VirtualWansOperations` + * 2019-09-01: :class:`VirtualWansOperations` + * 2019-11-01: :class:`VirtualWansOperations` + * 2019-12-01: :class:`VirtualWansOperations` + * 2020-03-01: :class:`VirtualWansOperations` + * 2020-04-01: :class:`VirtualWansOperations` + * 2020-05-01: :class:`VirtualWansOperations` + * 2020-06-01: :class:`VirtualWansOperations` + * 2020-07-01: :class:`VirtualWansOperations` + * 2020-08-01: :class:`VirtualWansOperations` + * 2020-11-01: :class:`VirtualWansOperations` + * 2021-02-01: :class:`VirtualWansOperations` + * 2021-05-01: :class:`VirtualWansOperations` + * 2021-08-01: :class:`VirtualWansOperations` + """ + api_version = self._get_api_version('virtual_wans') + if api_version == '2018-04-01': + from .v2018_04_01.operations import VirtualWANsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VirtualWANsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VirtualWANsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VirtualWansOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VirtualWansOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'virtual_wans'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def vpn_connections(self): + """Instance depends on the API version: + + * 2018-04-01: :class:`VpnConnectionsOperations` + * 2018-06-01: :class:`VpnConnectionsOperations` + * 2018-07-01: :class:`VpnConnectionsOperations` + * 2018-08-01: :class:`VpnConnectionsOperations` + * 2018-10-01: :class:`VpnConnectionsOperations` + * 2018-11-01: :class:`VpnConnectionsOperations` + * 2018-12-01: :class:`VpnConnectionsOperations` + * 2019-02-01: :class:`VpnConnectionsOperations` + * 2019-04-01: :class:`VpnConnectionsOperations` + * 2019-06-01: :class:`VpnConnectionsOperations` + * 2019-07-01: :class:`VpnConnectionsOperations` + * 2019-08-01: :class:`VpnConnectionsOperations` + * 2019-09-01: :class:`VpnConnectionsOperations` + * 2019-11-01: :class:`VpnConnectionsOperations` + * 2019-12-01: :class:`VpnConnectionsOperations` + * 2020-03-01: :class:`VpnConnectionsOperations` + * 2020-04-01: :class:`VpnConnectionsOperations` + * 2020-05-01: :class:`VpnConnectionsOperations` + * 2020-06-01: :class:`VpnConnectionsOperations` + * 2020-07-01: :class:`VpnConnectionsOperations` + * 2020-08-01: :class:`VpnConnectionsOperations` + * 2020-11-01: :class:`VpnConnectionsOperations` + * 2021-02-01: :class:`VpnConnectionsOperations` + * 2021-05-01: :class:`VpnConnectionsOperations` + * 2021-08-01: :class:`VpnConnectionsOperations` + """ + api_version = self._get_api_version('vpn_connections') + if api_version == '2018-04-01': + from .v2018_04_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VpnConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VpnConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'vpn_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def vpn_gateways(self): + """Instance depends on the API version: + + * 2018-04-01: :class:`VpnGatewaysOperations` + * 2018-06-01: :class:`VpnGatewaysOperations` + * 2018-07-01: :class:`VpnGatewaysOperations` + * 2018-08-01: :class:`VpnGatewaysOperations` + * 2018-10-01: :class:`VpnGatewaysOperations` + * 2018-11-01: :class:`VpnGatewaysOperations` + * 2018-12-01: :class:`VpnGatewaysOperations` + * 2019-02-01: :class:`VpnGatewaysOperations` + * 2019-04-01: :class:`VpnGatewaysOperations` + * 2019-06-01: :class:`VpnGatewaysOperations` + * 2019-07-01: :class:`VpnGatewaysOperations` + * 2019-08-01: :class:`VpnGatewaysOperations` + * 2019-09-01: :class:`VpnGatewaysOperations` + * 2019-11-01: :class:`VpnGatewaysOperations` + * 2019-12-01: :class:`VpnGatewaysOperations` + * 2020-03-01: :class:`VpnGatewaysOperations` + * 2020-04-01: :class:`VpnGatewaysOperations` + * 2020-05-01: :class:`VpnGatewaysOperations` + * 2020-06-01: :class:`VpnGatewaysOperations` + * 2020-07-01: :class:`VpnGatewaysOperations` + * 2020-08-01: :class:`VpnGatewaysOperations` + * 2020-11-01: :class:`VpnGatewaysOperations` + * 2021-02-01: :class:`VpnGatewaysOperations` + * 2021-05-01: :class:`VpnGatewaysOperations` + * 2021-08-01: :class:`VpnGatewaysOperations` + """ + api_version = self._get_api_version('vpn_gateways') + if api_version == '2018-04-01': + from .v2018_04_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VpnGatewaysOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VpnGatewaysOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'vpn_gateways'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def vpn_link_connections(self): + """Instance depends on the API version: + + * 2019-06-01: :class:`VpnLinkConnectionsOperations` + * 2019-07-01: :class:`VpnLinkConnectionsOperations` + * 2019-08-01: :class:`VpnLinkConnectionsOperations` + * 2019-09-01: :class:`VpnLinkConnectionsOperations` + * 2019-11-01: :class:`VpnLinkConnectionsOperations` + * 2019-12-01: :class:`VpnLinkConnectionsOperations` + * 2020-03-01: :class:`VpnLinkConnectionsOperations` + * 2020-04-01: :class:`VpnLinkConnectionsOperations` + * 2020-05-01: :class:`VpnLinkConnectionsOperations` + * 2020-06-01: :class:`VpnLinkConnectionsOperations` + * 2020-07-01: :class:`VpnLinkConnectionsOperations` + * 2020-08-01: :class:`VpnLinkConnectionsOperations` + * 2020-11-01: :class:`VpnLinkConnectionsOperations` + * 2021-02-01: :class:`VpnLinkConnectionsOperations` + * 2021-05-01: :class:`VpnLinkConnectionsOperations` + * 2021-08-01: :class:`VpnLinkConnectionsOperations` + """ + api_version = self._get_api_version('vpn_link_connections') + if api_version == '2019-06-01': + from .v2019_06_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VpnLinkConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VpnLinkConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'vpn_link_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def vpn_server_configurations(self): + """Instance depends on the API version: + + * 2019-08-01: :class:`VpnServerConfigurationsOperations` + * 2019-09-01: :class:`VpnServerConfigurationsOperations` + * 2019-11-01: :class:`VpnServerConfigurationsOperations` + * 2019-12-01: :class:`VpnServerConfigurationsOperations` + * 2020-03-01: :class:`VpnServerConfigurationsOperations` + * 2020-04-01: :class:`VpnServerConfigurationsOperations` + * 2020-05-01: :class:`VpnServerConfigurationsOperations` + * 2020-06-01: :class:`VpnServerConfigurationsOperations` + * 2020-07-01: :class:`VpnServerConfigurationsOperations` + * 2020-08-01: :class:`VpnServerConfigurationsOperations` + * 2020-11-01: :class:`VpnServerConfigurationsOperations` + * 2021-02-01: :class:`VpnServerConfigurationsOperations` + * 2021-05-01: :class:`VpnServerConfigurationsOperations` + * 2021-08-01: :class:`VpnServerConfigurationsOperations` + """ + api_version = self._get_api_version('vpn_server_configurations') + if api_version == '2019-08-01': + from .v2019_08_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VpnServerConfigurationsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VpnServerConfigurationsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'vpn_server_configurations'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def vpn_server_configurations_associated_with_virtual_wan(self): + """Instance depends on the API version: + + * 2019-08-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2019-09-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2019-11-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2019-12-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2020-03-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2020-04-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2020-05-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2020-06-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2020-07-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2020-08-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2020-11-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2021-02-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2021-05-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + * 2021-08-01: :class:`VpnServerConfigurationsAssociatedWithVirtualWanOperations` + """ + api_version = self._get_api_version('vpn_server_configurations_associated_with_virtual_wan') + if api_version == '2019-08-01': + from .v2019_08_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'vpn_server_configurations_associated_with_virtual_wan'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def vpn_site_link_connections(self): + """Instance depends on the API version: + + * 2019-06-01: :class:`VpnSiteLinkConnectionsOperations` + * 2019-07-01: :class:`VpnSiteLinkConnectionsOperations` + * 2019-08-01: :class:`VpnSiteLinkConnectionsOperations` + * 2019-09-01: :class:`VpnSiteLinkConnectionsOperations` + * 2019-11-01: :class:`VpnSiteLinkConnectionsOperations` + * 2019-12-01: :class:`VpnSiteLinkConnectionsOperations` + * 2020-03-01: :class:`VpnSiteLinkConnectionsOperations` + * 2020-04-01: :class:`VpnSiteLinkConnectionsOperations` + * 2020-05-01: :class:`VpnSiteLinkConnectionsOperations` + * 2020-06-01: :class:`VpnSiteLinkConnectionsOperations` + * 2020-07-01: :class:`VpnSiteLinkConnectionsOperations` + * 2020-08-01: :class:`VpnSiteLinkConnectionsOperations` + * 2020-11-01: :class:`VpnSiteLinkConnectionsOperations` + * 2021-02-01: :class:`VpnSiteLinkConnectionsOperations` + * 2021-05-01: :class:`VpnSiteLinkConnectionsOperations` + * 2021-08-01: :class:`VpnSiteLinkConnectionsOperations` + """ + api_version = self._get_api_version('vpn_site_link_connections') + if api_version == '2019-06-01': + from .v2019_06_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VpnSiteLinkConnectionsOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'vpn_site_link_connections'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def vpn_site_links(self): + """Instance depends on the API version: + + * 2019-06-01: :class:`VpnSiteLinksOperations` + * 2019-07-01: :class:`VpnSiteLinksOperations` + * 2019-08-01: :class:`VpnSiteLinksOperations` + * 2019-09-01: :class:`VpnSiteLinksOperations` + * 2019-11-01: :class:`VpnSiteLinksOperations` + * 2019-12-01: :class:`VpnSiteLinksOperations` + * 2020-03-01: :class:`VpnSiteLinksOperations` + * 2020-04-01: :class:`VpnSiteLinksOperations` + * 2020-05-01: :class:`VpnSiteLinksOperations` + * 2020-06-01: :class:`VpnSiteLinksOperations` + * 2020-07-01: :class:`VpnSiteLinksOperations` + * 2020-08-01: :class:`VpnSiteLinksOperations` + * 2020-11-01: :class:`VpnSiteLinksOperations` + * 2021-02-01: :class:`VpnSiteLinksOperations` + * 2021-05-01: :class:`VpnSiteLinksOperations` + * 2021-08-01: :class:`VpnSiteLinksOperations` + """ + api_version = self._get_api_version('vpn_site_links') + if api_version == '2019-06-01': + from .v2019_06_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VpnSiteLinksOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VpnSiteLinksOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'vpn_site_links'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def vpn_sites(self): + """Instance depends on the API version: + + * 2018-04-01: :class:`VpnSitesOperations` + * 2018-06-01: :class:`VpnSitesOperations` + * 2018-07-01: :class:`VpnSitesOperations` + * 2018-08-01: :class:`VpnSitesOperations` + * 2018-10-01: :class:`VpnSitesOperations` + * 2018-11-01: :class:`VpnSitesOperations` + * 2018-12-01: :class:`VpnSitesOperations` + * 2019-02-01: :class:`VpnSitesOperations` + * 2019-04-01: :class:`VpnSitesOperations` + * 2019-06-01: :class:`VpnSitesOperations` + * 2019-07-01: :class:`VpnSitesOperations` + * 2019-08-01: :class:`VpnSitesOperations` + * 2019-09-01: :class:`VpnSitesOperations` + * 2019-11-01: :class:`VpnSitesOperations` + * 2019-12-01: :class:`VpnSitesOperations` + * 2020-03-01: :class:`VpnSitesOperations` + * 2020-04-01: :class:`VpnSitesOperations` + * 2020-05-01: :class:`VpnSitesOperations` + * 2020-06-01: :class:`VpnSitesOperations` + * 2020-07-01: :class:`VpnSitesOperations` + * 2020-08-01: :class:`VpnSitesOperations` + * 2020-11-01: :class:`VpnSitesOperations` + * 2021-02-01: :class:`VpnSitesOperations` + * 2021-05-01: :class:`VpnSitesOperations` + * 2021-08-01: :class:`VpnSitesOperations` + """ + api_version = self._get_api_version('vpn_sites') + if api_version == '2018-04-01': + from .v2018_04_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VpnSitesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VpnSitesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'vpn_sites'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def vpn_sites_configuration(self): + """Instance depends on the API version: + + * 2018-04-01: :class:`VpnSitesConfigurationOperations` + * 2018-06-01: :class:`VpnSitesConfigurationOperations` + * 2018-07-01: :class:`VpnSitesConfigurationOperations` + * 2018-08-01: :class:`VpnSitesConfigurationOperations` + * 2018-10-01: :class:`VpnSitesConfigurationOperations` + * 2018-11-01: :class:`VpnSitesConfigurationOperations` + * 2018-12-01: :class:`VpnSitesConfigurationOperations` + * 2019-02-01: :class:`VpnSitesConfigurationOperations` + * 2019-04-01: :class:`VpnSitesConfigurationOperations` + * 2019-06-01: :class:`VpnSitesConfigurationOperations` + * 2019-07-01: :class:`VpnSitesConfigurationOperations` + * 2019-08-01: :class:`VpnSitesConfigurationOperations` + * 2019-09-01: :class:`VpnSitesConfigurationOperations` + * 2019-11-01: :class:`VpnSitesConfigurationOperations` + * 2019-12-01: :class:`VpnSitesConfigurationOperations` + * 2020-03-01: :class:`VpnSitesConfigurationOperations` + * 2020-04-01: :class:`VpnSitesConfigurationOperations` + * 2020-05-01: :class:`VpnSitesConfigurationOperations` + * 2020-06-01: :class:`VpnSitesConfigurationOperations` + * 2020-07-01: :class:`VpnSitesConfigurationOperations` + * 2020-08-01: :class:`VpnSitesConfigurationOperations` + * 2020-11-01: :class:`VpnSitesConfigurationOperations` + * 2021-02-01: :class:`VpnSitesConfigurationOperations` + * 2021-05-01: :class:`VpnSitesConfigurationOperations` + * 2021-08-01: :class:`VpnSitesConfigurationOperations` + """ + api_version = self._get_api_version('vpn_sites_configuration') + if api_version == '2018-04-01': + from .v2018_04_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import VpnSitesConfigurationOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import VpnSitesConfigurationOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'vpn_sites_configuration'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def web_application_firewall_policies(self): + """Instance depends on the API version: + + * 2018-12-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2019-02-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2019-04-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2019-06-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2019-07-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2019-08-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2019-09-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2019-11-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2019-12-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2020-03-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2020-04-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2020-05-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2020-06-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2020-07-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2020-08-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2020-11-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2021-02-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2021-05-01: :class:`WebApplicationFirewallPoliciesOperations` + * 2021-08-01: :class:`WebApplicationFirewallPoliciesOperations` + """ + api_version = self._get_api_version('web_application_firewall_policies') + if api_version == '2018-12-01': + from .v2018_12_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import WebApplicationFirewallPoliciesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'web_application_firewall_policies'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def web_categories(self): + """Instance depends on the API version: + + * 2020-07-01: :class:`WebCategoriesOperations` + * 2020-08-01: :class:`WebCategoriesOperations` + * 2020-11-01: :class:`WebCategoriesOperations` + * 2021-02-01: :class:`WebCategoriesOperations` + * 2021-05-01: :class:`WebCategoriesOperations` + * 2021-08-01: :class:`WebCategoriesOperations` + """ + api_version = self._get_api_version('web_categories') + if api_version == '2020-07-01': + from .v2020_07_01.operations import WebCategoriesOperations as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import WebCategoriesOperations as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import WebCategoriesOperations as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import WebCategoriesOperations as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import WebCategoriesOperations as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import WebCategoriesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'web_categories'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + def close(self): + self._client.close() + def __enter__(self): + self._client.__enter__() + return self + def __exit__(self, *exc_details): + self._client.__exit__(*exc_details) diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_operations_mixin.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_operations_mixin.py new file mode 100644 index 00000000000..42895401832 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_operations_mixin.py @@ -0,0 +1,613 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +from msrest import Serializer, Deserializer +from typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + from azure.core.paging import ItemPaged + from azure.core.polling import LROPoller + + +class NetworkManagementClientOperationsMixin(object): + + def begin_delete_bastion_shareable_link( # pylint: disable=inconsistent-return-statements + self, + resource_group_name, # type: str + bastion_host_name, # type: str + bsl_request, # type: "_models.BastionShareableLinkListRequest" + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deletes the Bastion Shareable Links for all the VMs specified in the request. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param bsl_request: Post request for all the Bastion Shareable Link endpoints. + :type bsl_request: ~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = self._get_api_version('begin_delete_bastion_shareable_link') + if api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + else: + raise ValueError("API version {} does not have operation 'begin_delete_bastion_shareable_link'".format(api_version)) + mixin_instance = OperationClass() + mixin_instance._client = self._client + mixin_instance._config = self._config + mixin_instance._serialize = Serializer(self._models_dict(api_version)) + mixin_instance._serialize.client_side_validation = False + mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) + return mixin_instance.begin_delete_bastion_shareable_link(resource_group_name, bastion_host_name, bsl_request, **kwargs) + + def begin_generatevirtualwanvpnserverconfigurationvpnprofile( + self, + resource_group_name, # type: str + virtual_wan_name, # type: str + vpn_client_params, # type: "_models.VirtualWanVpnProfileParameters" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.VpnProfileResponse"] + """Generates a unique VPN profile for P2S clients for VirtualWan and associated + VpnServerConfiguration combination in the specified resource group. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN whose associated VpnServerConfigurations is + needed. + :type virtual_wan_name: str + :param vpn_client_params: Parameters supplied to the generate VirtualWan VPN profile generation + operation. + :type vpn_client_params: ~azure.mgmt.network.v2021_08_01.models.VirtualWanVpnProfileParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnProfileResponse or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnProfileResponse] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = self._get_api_version('begin_generatevirtualwanvpnserverconfigurationvpnprofile') + if api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + else: + raise ValueError("API version {} does not have operation 'begin_generatevirtualwanvpnserverconfigurationvpnprofile'".format(api_version)) + mixin_instance = OperationClass() + mixin_instance._client = self._client + mixin_instance._config = self._config + mixin_instance._serialize = Serializer(self._models_dict(api_version)) + mixin_instance._serialize.client_side_validation = False + mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) + return mixin_instance.begin_generatevirtualwanvpnserverconfigurationvpnprofile(resource_group_name, virtual_wan_name, vpn_client_params, **kwargs) + + def begin_get_active_sessions( + self, + resource_group_name, # type: str + bastion_host_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[ItemPaged["_models.BastionActiveSessionListResult"]] + """Returns the list of currently active sessions on the Bastion. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns an iterator like instance of either + BastionActiveSessionListResult or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionActiveSessionListResult]] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = self._get_api_version('begin_get_active_sessions') + if api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + else: + raise ValueError("API version {} does not have operation 'begin_get_active_sessions'".format(api_version)) + mixin_instance = OperationClass() + mixin_instance._client = self._client + mixin_instance._config = self._config + mixin_instance._serialize = Serializer(self._models_dict(api_version)) + mixin_instance._serialize.client_side_validation = False + mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) + return mixin_instance.begin_get_active_sessions(resource_group_name, bastion_host_name, **kwargs) + + def begin_put_bastion_shareable_link( + self, + resource_group_name, # type: str + bastion_host_name, # type: str + bsl_request, # type: "_models.BastionShareableLinkListRequest" + **kwargs # type: Any + ): + # type: (...) -> LROPoller[ItemPaged["_models.BastionShareableLinkListResult"]] + """Creates a Bastion Shareable Links for all the VMs specified in the request. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param bsl_request: Post request for all the Bastion Shareable Link endpoints. + :type bsl_request: ~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns an iterator like instance of either + BastionShareableLinkListResult or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListResult]] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = self._get_api_version('begin_put_bastion_shareable_link') + if api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + else: + raise ValueError("API version {} does not have operation 'begin_put_bastion_shareable_link'".format(api_version)) + mixin_instance = OperationClass() + mixin_instance._client = self._client + mixin_instance._config = self._config + mixin_instance._serialize = Serializer(self._models_dict(api_version)) + mixin_instance._serialize.client_side_validation = False + mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) + return mixin_instance.begin_put_bastion_shareable_link(resource_group_name, bastion_host_name, bsl_request, **kwargs) + + def check_dns_name_availability( + self, + location, # type: str + domain_name_label, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.DnsNameAvailabilityResult" + """Checks whether a domain name in the cloudapp.azure.com zone is available for use. + + :param location: The location of the domain name. + :type location: str + :param domain_name_label: The domain name to be verified. It must conform to the following + regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$. + :type domain_name_label: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DnsNameAvailabilityResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DnsNameAvailabilityResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = self._get_api_version('check_dns_name_availability') + if api_version == '2015-06-15': + from .v2015_06_15.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2016-09-01': + from .v2016_09_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2016-12-01': + from .v2016_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2017-03-01': + from .v2017_03_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2017-06-01': + from .v2017_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2017-10-01': + from .v2017_10_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-01-01': + from .v2018_01_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-02-01': + from .v2018_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-04-01': + from .v2018_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-06-01': + from .v2018_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-07-01': + from .v2018_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-08-01': + from .v2018_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + else: + raise ValueError("API version {} does not have operation 'check_dns_name_availability'".format(api_version)) + mixin_instance = OperationClass() + mixin_instance._client = self._client + mixin_instance._config = self._config + mixin_instance._serialize = Serializer(self._models_dict(api_version)) + mixin_instance._serialize.client_side_validation = False + mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) + return mixin_instance.check_dns_name_availability(location, domain_name_label, **kwargs) + + def disconnect_active_sessions( + self, + resource_group_name, # type: str + bastion_host_name, # type: str + session_ids, # type: "_models.SessionIds" + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.BastionSessionDeleteResult"] + """Returns the list of currently active sessions on the Bastion. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param session_ids: The list of sessionids to disconnect. + :type session_ids: ~azure.mgmt.network.v2021_08_01.models.SessionIds + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionSessionDeleteResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionSessionDeleteResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = self._get_api_version('disconnect_active_sessions') + if api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + else: + raise ValueError("API version {} does not have operation 'disconnect_active_sessions'".format(api_version)) + mixin_instance = OperationClass() + mixin_instance._client = self._client + mixin_instance._config = self._config + mixin_instance._serialize = Serializer(self._models_dict(api_version)) + mixin_instance._serialize.client_side_validation = False + mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) + return mixin_instance.disconnect_active_sessions(resource_group_name, bastion_host_name, session_ids, **kwargs) + + def get_bastion_shareable_link( + self, + resource_group_name, # type: str + bastion_host_name, # type: str + bsl_request, # type: "_models.BastionShareableLinkListRequest" + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.BastionShareableLinkListResult"] + """Return the Bastion Shareable Links for all the VMs specified in the request. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param bsl_request: Post request for all the Bastion Shareable Link endpoints. + :type bsl_request: ~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionShareableLinkListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = self._get_api_version('get_bastion_shareable_link') + if api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + else: + raise ValueError("API version {} does not have operation 'get_bastion_shareable_link'".format(api_version)) + mixin_instance = OperationClass() + mixin_instance._client = self._client + mixin_instance._config = self._config + mixin_instance._serialize = Serializer(self._models_dict(api_version)) + mixin_instance._serialize.client_side_validation = False + mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) + return mixin_instance.get_bastion_shareable_link(resource_group_name, bastion_host_name, bsl_request, **kwargs) + + def supported_security_providers( + self, + resource_group_name, # type: str + virtual_wan_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.VirtualWanSecurityProviders" + """Gives the supported security providers for the virtual wan. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN for which supported security providers are + needed. + :type virtual_wan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualWanSecurityProviders, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualWanSecurityProviders + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = self._get_api_version('supported_security_providers') + if api_version == '2018-08-01': + from .v2018_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-10-01': + from .v2018_10_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-11-01': + from .v2018_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2018-12-01': + from .v2018_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-02-01': + from .v2019_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-04-01': + from .v2019_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-06-01': + from .v2019_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-07-01': + from .v2019_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-08-01': + from .v2019_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-09-01': + from .v2019_09_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-11-01': + from .v2019_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2019-12-01': + from .v2019_12_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-03-01': + from .v2020_03_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-04-01': + from .v2020_04_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-05-01': + from .v2020_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-06-01': + from .v2020_06_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-08-01': + from .v2020_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2020-11-01': + from .v2020_11_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-02-01': + from .v2021_02_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-05-01': + from .v2021_05_01.operations import NetworkManagementClientOperationsMixin as OperationClass + elif api_version == '2021-08-01': + from .v2021_08_01.operations import NetworkManagementClientOperationsMixin as OperationClass + else: + raise ValueError("API version {} does not have operation 'supported_security_providers'".format(api_version)) + mixin_instance = OperationClass() + mixin_instance._client = self._client + mixin_instance._config = self._config + mixin_instance._serialize = Serializer(self._models_dict(api_version)) + mixin_instance._serialize.client_side_validation = False + mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) + return mixin_instance.supported_security_providers(resource_group_name, virtual_wan_name, **kwargs) diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_version.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_version.py new file mode 100644 index 00000000000..dcd3f89f57a --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/_version.py @@ -0,0 +1,8 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +VERSION = "19.3.0" diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/models.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/models.py new file mode 100644 index 00000000000..75c1939abff --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/models.py @@ -0,0 +1,7 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- +from .v2021_08_01.models import * diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/__init__.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/__init__.py new file mode 100644 index 00000000000..3afadffd3a4 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/__init__.py @@ -0,0 +1,18 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._network_management_client import NetworkManagementClient +from ._version import VERSION + +__version__ = VERSION +__all__ = ['NetworkManagementClient'] + +# `._patch.py` is used for handwritten extensions to the generated code +# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md +from ._patch import patch_sdk +patch_sdk() diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_configuration.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_configuration.py new file mode 100644 index 00000000000..f082cd3af34 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_configuration.py @@ -0,0 +1,68 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy + +from ._version import VERSION + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials import TokenCredential + + +class NetworkManagementClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes + """Configuration for NetworkManagementClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: The subscription credentials which uniquely identify the Microsoft + Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + """ + + def __init__( + self, + credential: "TokenCredential", + subscription_id: str, + **kwargs: Any + ) -> None: + super(NetworkManagementClientConfiguration, self).__init__(**kwargs) + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + + self.credential = credential + self.subscription_id = subscription_id + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'mgmt-network/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs # type: Any + ): + # type: (...) -> None + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_network_management_client.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_network_management_client.py new file mode 100644 index 00000000000..7cbd015b7b4 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_network_management_client.py @@ -0,0 +1,531 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from copy import deepcopy +from typing import Any, TYPE_CHECKING + +from msrest import Deserializer, Serializer + +from azure.core.rest import HttpRequest, HttpResponse +from azure.mgmt.core import ARMPipelineClient + +from . import models +from ._configuration import NetworkManagementClientConfiguration +from .operations import ApplicationGatewayPrivateEndpointConnectionsOperations, ApplicationGatewayPrivateLinkResourcesOperations, ApplicationGatewaysOperations, ApplicationSecurityGroupsOperations, AvailableDelegationsOperations, AvailableEndpointServicesOperations, AvailablePrivateEndpointTypesOperations, AvailableResourceGroupDelegationsOperations, AvailableServiceAliasesOperations, AzureFirewallFqdnTagsOperations, AzureFirewallsOperations, BastionHostsOperations, BgpServiceCommunitiesOperations, ConfigurationPolicyGroupsOperations, ConnectionMonitorsOperations, CustomIPPrefixesOperations, DdosCustomPoliciesOperations, DdosProtectionPlansOperations, DefaultSecurityRulesOperations, DscpConfigurationOperations, ExpressRouteCircuitAuthorizationsOperations, ExpressRouteCircuitConnectionsOperations, ExpressRouteCircuitPeeringsOperations, ExpressRouteCircuitsOperations, ExpressRouteConnectionsOperations, ExpressRouteCrossConnectionPeeringsOperations, ExpressRouteCrossConnectionsOperations, ExpressRouteGatewaysOperations, ExpressRouteLinksOperations, ExpressRoutePortAuthorizationsOperations, ExpressRoutePortsLocationsOperations, ExpressRoutePortsOperations, ExpressRouteServiceProvidersOperations, FirewallPoliciesOperations, FirewallPolicyIdpsSignaturesFilterValuesOperations, FirewallPolicyIdpsSignaturesOperations, FirewallPolicyIdpsSignaturesOverridesOperations, FirewallPolicyRuleCollectionGroupsOperations, FlowLogsOperations, HubRouteTablesOperations, HubVirtualNetworkConnectionsOperations, InboundNatRulesOperations, InboundSecurityRuleOperations, IpAllocationsOperations, IpGroupsOperations, LoadBalancerBackendAddressPoolsOperations, LoadBalancerFrontendIPConfigurationsOperations, LoadBalancerLoadBalancingRulesOperations, LoadBalancerNetworkInterfacesOperations, LoadBalancerOutboundRulesOperations, LoadBalancerProbesOperations, LoadBalancersOperations, LocalNetworkGatewaysOperations, NatGatewaysOperations, NatRulesOperations, NetworkInterfaceIPConfigurationsOperations, NetworkInterfaceLoadBalancersOperations, NetworkInterfaceTapConfigurationsOperations, NetworkInterfacesOperations, NetworkManagementClientOperationsMixin, NetworkProfilesOperations, NetworkSecurityGroupsOperations, NetworkVirtualAppliancesOperations, NetworkWatchersOperations, Operations, P2SVpnGatewaysOperations, PacketCapturesOperations, PeerExpressRouteCircuitConnectionsOperations, PrivateDnsZoneGroupsOperations, PrivateEndpointsOperations, PrivateLinkServicesOperations, PublicIPAddressesOperations, PublicIPPrefixesOperations, ResourceNavigationLinksOperations, RouteFilterRulesOperations, RouteFiltersOperations, RouteTablesOperations, RoutesOperations, RoutingIntentOperations, SecurityPartnerProvidersOperations, SecurityRulesOperations, ServiceAssociationLinksOperations, ServiceEndpointPoliciesOperations, ServiceEndpointPolicyDefinitionsOperations, ServiceTagInformationOperations, ServiceTagsOperations, SubnetsOperations, UsagesOperations, VirtualApplianceSitesOperations, VirtualApplianceSkusOperations, VirtualHubBgpConnectionOperations, VirtualHubBgpConnectionsOperations, VirtualHubIpConfigurationOperations, VirtualHubRouteTableV2SOperations, VirtualHubsOperations, VirtualNetworkGatewayConnectionsOperations, VirtualNetworkGatewayNatRulesOperations, VirtualNetworkGatewaysOperations, VirtualNetworkPeeringsOperations, VirtualNetworkTapsOperations, VirtualNetworksOperations, VirtualRouterPeeringsOperations, VirtualRoutersOperations, VirtualWansOperations, VpnConnectionsOperations, VpnGatewaysOperations, VpnLinkConnectionsOperations, VpnServerConfigurationsAssociatedWithVirtualWanOperations, VpnServerConfigurationsOperations, VpnSiteLinkConnectionsOperations, VpnSiteLinksOperations, VpnSitesConfigurationOperations, VpnSitesOperations, WebApplicationFirewallPoliciesOperations, WebCategoriesOperations + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials import TokenCredential + +class NetworkManagementClient(NetworkManagementClientOperationsMixin): # pylint: disable=too-many-instance-attributes + """Network Client. + + :ivar application_gateways: ApplicationGatewaysOperations operations + :vartype application_gateways: + azure.mgmt.network.v2021_08_01.operations.ApplicationGatewaysOperations + :ivar application_gateway_private_link_resources: + ApplicationGatewayPrivateLinkResourcesOperations operations + :vartype application_gateway_private_link_resources: + azure.mgmt.network.v2021_08_01.operations.ApplicationGatewayPrivateLinkResourcesOperations + :ivar application_gateway_private_endpoint_connections: + ApplicationGatewayPrivateEndpointConnectionsOperations operations + :vartype application_gateway_private_endpoint_connections: + azure.mgmt.network.v2021_08_01.operations.ApplicationGatewayPrivateEndpointConnectionsOperations + :ivar application_security_groups: ApplicationSecurityGroupsOperations operations + :vartype application_security_groups: + azure.mgmt.network.v2021_08_01.operations.ApplicationSecurityGroupsOperations + :ivar available_delegations: AvailableDelegationsOperations operations + :vartype available_delegations: + azure.mgmt.network.v2021_08_01.operations.AvailableDelegationsOperations + :ivar available_resource_group_delegations: AvailableResourceGroupDelegationsOperations + operations + :vartype available_resource_group_delegations: + azure.mgmt.network.v2021_08_01.operations.AvailableResourceGroupDelegationsOperations + :ivar available_service_aliases: AvailableServiceAliasesOperations operations + :vartype available_service_aliases: + azure.mgmt.network.v2021_08_01.operations.AvailableServiceAliasesOperations + :ivar azure_firewalls: AzureFirewallsOperations operations + :vartype azure_firewalls: azure.mgmt.network.v2021_08_01.operations.AzureFirewallsOperations + :ivar azure_firewall_fqdn_tags: AzureFirewallFqdnTagsOperations operations + :vartype azure_firewall_fqdn_tags: + azure.mgmt.network.v2021_08_01.operations.AzureFirewallFqdnTagsOperations + :ivar web_categories: WebCategoriesOperations operations + :vartype web_categories: azure.mgmt.network.v2021_08_01.operations.WebCategoriesOperations + :ivar bastion_hosts: BastionHostsOperations operations + :vartype bastion_hosts: azure.mgmt.network.v2021_08_01.operations.BastionHostsOperations + :ivar network_interfaces: NetworkInterfacesOperations operations + :vartype network_interfaces: + azure.mgmt.network.v2021_08_01.operations.NetworkInterfacesOperations + :ivar public_ip_addresses: PublicIPAddressesOperations operations + :vartype public_ip_addresses: + azure.mgmt.network.v2021_08_01.operations.PublicIPAddressesOperations + :ivar custom_ip_prefixes: CustomIPPrefixesOperations operations + :vartype custom_ip_prefixes: + azure.mgmt.network.v2021_08_01.operations.CustomIPPrefixesOperations + :ivar ddos_custom_policies: DdosCustomPoliciesOperations operations + :vartype ddos_custom_policies: + azure.mgmt.network.v2021_08_01.operations.DdosCustomPoliciesOperations + :ivar ddos_protection_plans: DdosProtectionPlansOperations operations + :vartype ddos_protection_plans: + azure.mgmt.network.v2021_08_01.operations.DdosProtectionPlansOperations + :ivar dscp_configuration: DscpConfigurationOperations operations + :vartype dscp_configuration: + azure.mgmt.network.v2021_08_01.operations.DscpConfigurationOperations + :ivar available_endpoint_services: AvailableEndpointServicesOperations operations + :vartype available_endpoint_services: + azure.mgmt.network.v2021_08_01.operations.AvailableEndpointServicesOperations + :ivar express_route_circuit_authorizations: ExpressRouteCircuitAuthorizationsOperations + operations + :vartype express_route_circuit_authorizations: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteCircuitAuthorizationsOperations + :ivar express_route_circuit_peerings: ExpressRouteCircuitPeeringsOperations operations + :vartype express_route_circuit_peerings: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteCircuitPeeringsOperations + :ivar express_route_circuit_connections: ExpressRouteCircuitConnectionsOperations operations + :vartype express_route_circuit_connections: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteCircuitConnectionsOperations + :ivar peer_express_route_circuit_connections: PeerExpressRouteCircuitConnectionsOperations + operations + :vartype peer_express_route_circuit_connections: + azure.mgmt.network.v2021_08_01.operations.PeerExpressRouteCircuitConnectionsOperations + :ivar express_route_circuits: ExpressRouteCircuitsOperations operations + :vartype express_route_circuits: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteCircuitsOperations + :ivar express_route_service_providers: ExpressRouteServiceProvidersOperations operations + :vartype express_route_service_providers: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteServiceProvidersOperations + :ivar express_route_cross_connections: ExpressRouteCrossConnectionsOperations operations + :vartype express_route_cross_connections: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteCrossConnectionsOperations + :ivar express_route_cross_connection_peerings: ExpressRouteCrossConnectionPeeringsOperations + operations + :vartype express_route_cross_connection_peerings: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteCrossConnectionPeeringsOperations + :ivar express_route_ports_locations: ExpressRoutePortsLocationsOperations operations + :vartype express_route_ports_locations: + azure.mgmt.network.v2021_08_01.operations.ExpressRoutePortsLocationsOperations + :ivar express_route_ports: ExpressRoutePortsOperations operations + :vartype express_route_ports: + azure.mgmt.network.v2021_08_01.operations.ExpressRoutePortsOperations + :ivar express_route_links: ExpressRouteLinksOperations operations + :vartype express_route_links: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteLinksOperations + :ivar express_route_port_authorizations: ExpressRoutePortAuthorizationsOperations operations + :vartype express_route_port_authorizations: + azure.mgmt.network.v2021_08_01.operations.ExpressRoutePortAuthorizationsOperations + :ivar firewall_policies: FirewallPoliciesOperations operations + :vartype firewall_policies: + azure.mgmt.network.v2021_08_01.operations.FirewallPoliciesOperations + :ivar firewall_policy_rule_collection_groups: FirewallPolicyRuleCollectionGroupsOperations + operations + :vartype firewall_policy_rule_collection_groups: + azure.mgmt.network.v2021_08_01.operations.FirewallPolicyRuleCollectionGroupsOperations + :ivar firewall_policy_idps_signatures: FirewallPolicyIdpsSignaturesOperations operations + :vartype firewall_policy_idps_signatures: + azure.mgmt.network.v2021_08_01.operations.FirewallPolicyIdpsSignaturesOperations + :ivar firewall_policy_idps_signatures_overrides: + FirewallPolicyIdpsSignaturesOverridesOperations operations + :vartype firewall_policy_idps_signatures_overrides: + azure.mgmt.network.v2021_08_01.operations.FirewallPolicyIdpsSignaturesOverridesOperations + :ivar firewall_policy_idps_signatures_filter_values: + FirewallPolicyIdpsSignaturesFilterValuesOperations operations + :vartype firewall_policy_idps_signatures_filter_values: + azure.mgmt.network.v2021_08_01.operations.FirewallPolicyIdpsSignaturesFilterValuesOperations + :ivar ip_allocations: IpAllocationsOperations operations + :vartype ip_allocations: azure.mgmt.network.v2021_08_01.operations.IpAllocationsOperations + :ivar ip_groups: IpGroupsOperations operations + :vartype ip_groups: azure.mgmt.network.v2021_08_01.operations.IpGroupsOperations + :ivar load_balancers: LoadBalancersOperations operations + :vartype load_balancers: azure.mgmt.network.v2021_08_01.operations.LoadBalancersOperations + :ivar load_balancer_backend_address_pools: LoadBalancerBackendAddressPoolsOperations operations + :vartype load_balancer_backend_address_pools: + azure.mgmt.network.v2021_08_01.operations.LoadBalancerBackendAddressPoolsOperations + :ivar load_balancer_frontend_ip_configurations: LoadBalancerFrontendIPConfigurationsOperations + operations + :vartype load_balancer_frontend_ip_configurations: + azure.mgmt.network.v2021_08_01.operations.LoadBalancerFrontendIPConfigurationsOperations + :ivar inbound_nat_rules: InboundNatRulesOperations operations + :vartype inbound_nat_rules: azure.mgmt.network.v2021_08_01.operations.InboundNatRulesOperations + :ivar load_balancer_load_balancing_rules: LoadBalancerLoadBalancingRulesOperations operations + :vartype load_balancer_load_balancing_rules: + azure.mgmt.network.v2021_08_01.operations.LoadBalancerLoadBalancingRulesOperations + :ivar load_balancer_outbound_rules: LoadBalancerOutboundRulesOperations operations + :vartype load_balancer_outbound_rules: + azure.mgmt.network.v2021_08_01.operations.LoadBalancerOutboundRulesOperations + :ivar load_balancer_network_interfaces: LoadBalancerNetworkInterfacesOperations operations + :vartype load_balancer_network_interfaces: + azure.mgmt.network.v2021_08_01.operations.LoadBalancerNetworkInterfacesOperations + :ivar load_balancer_probes: LoadBalancerProbesOperations operations + :vartype load_balancer_probes: + azure.mgmt.network.v2021_08_01.operations.LoadBalancerProbesOperations + :ivar nat_gateways: NatGatewaysOperations operations + :vartype nat_gateways: azure.mgmt.network.v2021_08_01.operations.NatGatewaysOperations + :ivar network_interface_ip_configurations: NetworkInterfaceIPConfigurationsOperations + operations + :vartype network_interface_ip_configurations: + azure.mgmt.network.v2021_08_01.operations.NetworkInterfaceIPConfigurationsOperations + :ivar network_interface_load_balancers: NetworkInterfaceLoadBalancersOperations operations + :vartype network_interface_load_balancers: + azure.mgmt.network.v2021_08_01.operations.NetworkInterfaceLoadBalancersOperations + :ivar network_interface_tap_configurations: NetworkInterfaceTapConfigurationsOperations + operations + :vartype network_interface_tap_configurations: + azure.mgmt.network.v2021_08_01.operations.NetworkInterfaceTapConfigurationsOperations + :ivar network_profiles: NetworkProfilesOperations operations + :vartype network_profiles: azure.mgmt.network.v2021_08_01.operations.NetworkProfilesOperations + :ivar network_security_groups: NetworkSecurityGroupsOperations operations + :vartype network_security_groups: + azure.mgmt.network.v2021_08_01.operations.NetworkSecurityGroupsOperations + :ivar security_rules: SecurityRulesOperations operations + :vartype security_rules: azure.mgmt.network.v2021_08_01.operations.SecurityRulesOperations + :ivar default_security_rules: DefaultSecurityRulesOperations operations + :vartype default_security_rules: + azure.mgmt.network.v2021_08_01.operations.DefaultSecurityRulesOperations + :ivar network_virtual_appliances: NetworkVirtualAppliancesOperations operations + :vartype network_virtual_appliances: + azure.mgmt.network.v2021_08_01.operations.NetworkVirtualAppliancesOperations + :ivar virtual_appliance_sites: VirtualApplianceSitesOperations operations + :vartype virtual_appliance_sites: + azure.mgmt.network.v2021_08_01.operations.VirtualApplianceSitesOperations + :ivar virtual_appliance_skus: VirtualApplianceSkusOperations operations + :vartype virtual_appliance_skus: + azure.mgmt.network.v2021_08_01.operations.VirtualApplianceSkusOperations + :ivar inbound_security_rule: InboundSecurityRuleOperations operations + :vartype inbound_security_rule: + azure.mgmt.network.v2021_08_01.operations.InboundSecurityRuleOperations + :ivar network_watchers: NetworkWatchersOperations operations + :vartype network_watchers: azure.mgmt.network.v2021_08_01.operations.NetworkWatchersOperations + :ivar packet_captures: PacketCapturesOperations operations + :vartype packet_captures: azure.mgmt.network.v2021_08_01.operations.PacketCapturesOperations + :ivar connection_monitors: ConnectionMonitorsOperations operations + :vartype connection_monitors: + azure.mgmt.network.v2021_08_01.operations.ConnectionMonitorsOperations + :ivar flow_logs: FlowLogsOperations operations + :vartype flow_logs: azure.mgmt.network.v2021_08_01.operations.FlowLogsOperations + :ivar operations: Operations operations + :vartype operations: azure.mgmt.network.v2021_08_01.operations.Operations + :ivar private_endpoints: PrivateEndpointsOperations operations + :vartype private_endpoints: + azure.mgmt.network.v2021_08_01.operations.PrivateEndpointsOperations + :ivar available_private_endpoint_types: AvailablePrivateEndpointTypesOperations operations + :vartype available_private_endpoint_types: + azure.mgmt.network.v2021_08_01.operations.AvailablePrivateEndpointTypesOperations + :ivar private_dns_zone_groups: PrivateDnsZoneGroupsOperations operations + :vartype private_dns_zone_groups: + azure.mgmt.network.v2021_08_01.operations.PrivateDnsZoneGroupsOperations + :ivar private_link_services: PrivateLinkServicesOperations operations + :vartype private_link_services: + azure.mgmt.network.v2021_08_01.operations.PrivateLinkServicesOperations + :ivar public_ip_prefixes: PublicIPPrefixesOperations operations + :vartype public_ip_prefixes: + azure.mgmt.network.v2021_08_01.operations.PublicIPPrefixesOperations + :ivar route_filters: RouteFiltersOperations operations + :vartype route_filters: azure.mgmt.network.v2021_08_01.operations.RouteFiltersOperations + :ivar route_filter_rules: RouteFilterRulesOperations operations + :vartype route_filter_rules: + azure.mgmt.network.v2021_08_01.operations.RouteFilterRulesOperations + :ivar route_tables: RouteTablesOperations operations + :vartype route_tables: azure.mgmt.network.v2021_08_01.operations.RouteTablesOperations + :ivar routes: RoutesOperations operations + :vartype routes: azure.mgmt.network.v2021_08_01.operations.RoutesOperations + :ivar security_partner_providers: SecurityPartnerProvidersOperations operations + :vartype security_partner_providers: + azure.mgmt.network.v2021_08_01.operations.SecurityPartnerProvidersOperations + :ivar bgp_service_communities: BgpServiceCommunitiesOperations operations + :vartype bgp_service_communities: + azure.mgmt.network.v2021_08_01.operations.BgpServiceCommunitiesOperations + :ivar service_endpoint_policies: ServiceEndpointPoliciesOperations operations + :vartype service_endpoint_policies: + azure.mgmt.network.v2021_08_01.operations.ServiceEndpointPoliciesOperations + :ivar service_endpoint_policy_definitions: ServiceEndpointPolicyDefinitionsOperations + operations + :vartype service_endpoint_policy_definitions: + azure.mgmt.network.v2021_08_01.operations.ServiceEndpointPolicyDefinitionsOperations + :ivar service_tags: ServiceTagsOperations operations + :vartype service_tags: azure.mgmt.network.v2021_08_01.operations.ServiceTagsOperations + :ivar service_tag_information: ServiceTagInformationOperations operations + :vartype service_tag_information: + azure.mgmt.network.v2021_08_01.operations.ServiceTagInformationOperations + :ivar usages: UsagesOperations operations + :vartype usages: azure.mgmt.network.v2021_08_01.operations.UsagesOperations + :ivar virtual_networks: VirtualNetworksOperations operations + :vartype virtual_networks: azure.mgmt.network.v2021_08_01.operations.VirtualNetworksOperations + :ivar subnets: SubnetsOperations operations + :vartype subnets: azure.mgmt.network.v2021_08_01.operations.SubnetsOperations + :ivar resource_navigation_links: ResourceNavigationLinksOperations operations + :vartype resource_navigation_links: + azure.mgmt.network.v2021_08_01.operations.ResourceNavigationLinksOperations + :ivar service_association_links: ServiceAssociationLinksOperations operations + :vartype service_association_links: + azure.mgmt.network.v2021_08_01.operations.ServiceAssociationLinksOperations + :ivar virtual_network_peerings: VirtualNetworkPeeringsOperations operations + :vartype virtual_network_peerings: + azure.mgmt.network.v2021_08_01.operations.VirtualNetworkPeeringsOperations + :ivar virtual_network_gateways: VirtualNetworkGatewaysOperations operations + :vartype virtual_network_gateways: + azure.mgmt.network.v2021_08_01.operations.VirtualNetworkGatewaysOperations + :ivar virtual_network_gateway_connections: VirtualNetworkGatewayConnectionsOperations + operations + :vartype virtual_network_gateway_connections: + azure.mgmt.network.v2021_08_01.operations.VirtualNetworkGatewayConnectionsOperations + :ivar local_network_gateways: LocalNetworkGatewaysOperations operations + :vartype local_network_gateways: + azure.mgmt.network.v2021_08_01.operations.LocalNetworkGatewaysOperations + :ivar virtual_network_gateway_nat_rules: VirtualNetworkGatewayNatRulesOperations operations + :vartype virtual_network_gateway_nat_rules: + azure.mgmt.network.v2021_08_01.operations.VirtualNetworkGatewayNatRulesOperations + :ivar virtual_network_taps: VirtualNetworkTapsOperations operations + :vartype virtual_network_taps: + azure.mgmt.network.v2021_08_01.operations.VirtualNetworkTapsOperations + :ivar virtual_routers: VirtualRoutersOperations operations + :vartype virtual_routers: azure.mgmt.network.v2021_08_01.operations.VirtualRoutersOperations + :ivar virtual_router_peerings: VirtualRouterPeeringsOperations operations + :vartype virtual_router_peerings: + azure.mgmt.network.v2021_08_01.operations.VirtualRouterPeeringsOperations + :ivar virtual_wans: VirtualWansOperations operations + :vartype virtual_wans: azure.mgmt.network.v2021_08_01.operations.VirtualWansOperations + :ivar vpn_sites: VpnSitesOperations operations + :vartype vpn_sites: azure.mgmt.network.v2021_08_01.operations.VpnSitesOperations + :ivar vpn_site_links: VpnSiteLinksOperations operations + :vartype vpn_site_links: azure.mgmt.network.v2021_08_01.operations.VpnSiteLinksOperations + :ivar vpn_sites_configuration: VpnSitesConfigurationOperations operations + :vartype vpn_sites_configuration: + azure.mgmt.network.v2021_08_01.operations.VpnSitesConfigurationOperations + :ivar vpn_server_configurations: VpnServerConfigurationsOperations operations + :vartype vpn_server_configurations: + azure.mgmt.network.v2021_08_01.operations.VpnServerConfigurationsOperations + :ivar configuration_policy_groups: ConfigurationPolicyGroupsOperations operations + :vartype configuration_policy_groups: + azure.mgmt.network.v2021_08_01.operations.ConfigurationPolicyGroupsOperations + :ivar virtual_hubs: VirtualHubsOperations operations + :vartype virtual_hubs: azure.mgmt.network.v2021_08_01.operations.VirtualHubsOperations + :ivar hub_virtual_network_connections: HubVirtualNetworkConnectionsOperations operations + :vartype hub_virtual_network_connections: + azure.mgmt.network.v2021_08_01.operations.HubVirtualNetworkConnectionsOperations + :ivar vpn_gateways: VpnGatewaysOperations operations + :vartype vpn_gateways: azure.mgmt.network.v2021_08_01.operations.VpnGatewaysOperations + :ivar vpn_link_connections: VpnLinkConnectionsOperations operations + :vartype vpn_link_connections: + azure.mgmt.network.v2021_08_01.operations.VpnLinkConnectionsOperations + :ivar vpn_connections: VpnConnectionsOperations operations + :vartype vpn_connections: azure.mgmt.network.v2021_08_01.operations.VpnConnectionsOperations + :ivar vpn_site_link_connections: VpnSiteLinkConnectionsOperations operations + :vartype vpn_site_link_connections: + azure.mgmt.network.v2021_08_01.operations.VpnSiteLinkConnectionsOperations + :ivar nat_rules: NatRulesOperations operations + :vartype nat_rules: azure.mgmt.network.v2021_08_01.operations.NatRulesOperations + :ivar p2_svpn_gateways: P2SVpnGatewaysOperations operations + :vartype p2_svpn_gateways: azure.mgmt.network.v2021_08_01.operations.P2SVpnGatewaysOperations + :ivar vpn_server_configurations_associated_with_virtual_wan: + VpnServerConfigurationsAssociatedWithVirtualWanOperations operations + :vartype vpn_server_configurations_associated_with_virtual_wan: + azure.mgmt.network.v2021_08_01.operations.VpnServerConfigurationsAssociatedWithVirtualWanOperations + :ivar virtual_hub_route_table_v2_s: VirtualHubRouteTableV2SOperations operations + :vartype virtual_hub_route_table_v2_s: + azure.mgmt.network.v2021_08_01.operations.VirtualHubRouteTableV2SOperations + :ivar express_route_gateways: ExpressRouteGatewaysOperations operations + :vartype express_route_gateways: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteGatewaysOperations + :ivar express_route_connections: ExpressRouteConnectionsOperations operations + :vartype express_route_connections: + azure.mgmt.network.v2021_08_01.operations.ExpressRouteConnectionsOperations + :ivar virtual_hub_bgp_connection: VirtualHubBgpConnectionOperations operations + :vartype virtual_hub_bgp_connection: + azure.mgmt.network.v2021_08_01.operations.VirtualHubBgpConnectionOperations + :ivar virtual_hub_bgp_connections: VirtualHubBgpConnectionsOperations operations + :vartype virtual_hub_bgp_connections: + azure.mgmt.network.v2021_08_01.operations.VirtualHubBgpConnectionsOperations + :ivar virtual_hub_ip_configuration: VirtualHubIpConfigurationOperations operations + :vartype virtual_hub_ip_configuration: + azure.mgmt.network.v2021_08_01.operations.VirtualHubIpConfigurationOperations + :ivar hub_route_tables: HubRouteTablesOperations operations + :vartype hub_route_tables: azure.mgmt.network.v2021_08_01.operations.HubRouteTablesOperations + :ivar routing_intent: RoutingIntentOperations operations + :vartype routing_intent: azure.mgmt.network.v2021_08_01.operations.RoutingIntentOperations + :ivar web_application_firewall_policies: WebApplicationFirewallPoliciesOperations operations + :vartype web_application_firewall_policies: + azure.mgmt.network.v2021_08_01.operations.WebApplicationFirewallPoliciesOperations + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: The subscription credentials which uniquely identify the Microsoft + Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + :param base_url: Service URL. Default value is "https://management.azure.com". + :type base_url: str + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + """ + + def __init__( + self, + credential: "TokenCredential", + subscription_id: str, + base_url: str = "https://management.azure.com", + **kwargs: Any + ) -> None: + self._config = NetworkManagementClientConfiguration(credential=credential, subscription_id=subscription_id, **kwargs) + self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + self._serialize.client_side_validation = False + self.application_gateways = ApplicationGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.application_gateway_private_link_resources = ApplicationGatewayPrivateLinkResourcesOperations(self._client, self._config, self._serialize, self._deserialize) + self.application_gateway_private_endpoint_connections = ApplicationGatewayPrivateEndpointConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.application_security_groups = ApplicationSecurityGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_delegations = AvailableDelegationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_resource_group_delegations = AvailableResourceGroupDelegationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_service_aliases = AvailableServiceAliasesOperations(self._client, self._config, self._serialize, self._deserialize) + self.azure_firewalls = AzureFirewallsOperations(self._client, self._config, self._serialize, self._deserialize) + self.azure_firewall_fqdn_tags = AzureFirewallFqdnTagsOperations(self._client, self._config, self._serialize, self._deserialize) + self.web_categories = WebCategoriesOperations(self._client, self._config, self._serialize, self._deserialize) + self.bastion_hosts = BastionHostsOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_interfaces = NetworkInterfacesOperations(self._client, self._config, self._serialize, self._deserialize) + self.public_ip_addresses = PublicIPAddressesOperations(self._client, self._config, self._serialize, self._deserialize) + self.custom_ip_prefixes = CustomIPPrefixesOperations(self._client, self._config, self._serialize, self._deserialize) + self.ddos_custom_policies = DdosCustomPoliciesOperations(self._client, self._config, self._serialize, self._deserialize) + self.ddos_protection_plans = DdosProtectionPlansOperations(self._client, self._config, self._serialize, self._deserialize) + self.dscp_configuration = DscpConfigurationOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_endpoint_services = AvailableEndpointServicesOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_circuit_authorizations = ExpressRouteCircuitAuthorizationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_circuit_peerings = ExpressRouteCircuitPeeringsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_circuit_connections = ExpressRouteCircuitConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.peer_express_route_circuit_connections = PeerExpressRouteCircuitConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_circuits = ExpressRouteCircuitsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_service_providers = ExpressRouteServiceProvidersOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_cross_connections = ExpressRouteCrossConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_cross_connection_peerings = ExpressRouteCrossConnectionPeeringsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_ports_locations = ExpressRoutePortsLocationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_ports = ExpressRoutePortsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_links = ExpressRouteLinksOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_port_authorizations = ExpressRoutePortAuthorizationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policies = FirewallPoliciesOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policy_rule_collection_groups = FirewallPolicyRuleCollectionGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policy_idps_signatures = FirewallPolicyIdpsSignaturesOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policy_idps_signatures_overrides = FirewallPolicyIdpsSignaturesOverridesOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policy_idps_signatures_filter_values = FirewallPolicyIdpsSignaturesFilterValuesOperations(self._client, self._config, self._serialize, self._deserialize) + self.ip_allocations = IpAllocationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.ip_groups = IpGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancers = LoadBalancersOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_backend_address_pools = LoadBalancerBackendAddressPoolsOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_frontend_ip_configurations = LoadBalancerFrontendIPConfigurationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.inbound_nat_rules = InboundNatRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_load_balancing_rules = LoadBalancerLoadBalancingRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_outbound_rules = LoadBalancerOutboundRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_network_interfaces = LoadBalancerNetworkInterfacesOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_probes = LoadBalancerProbesOperations(self._client, self._config, self._serialize, self._deserialize) + self.nat_gateways = NatGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_interface_ip_configurations = NetworkInterfaceIPConfigurationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_interface_load_balancers = NetworkInterfaceLoadBalancersOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_interface_tap_configurations = NetworkInterfaceTapConfigurationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_profiles = NetworkProfilesOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_security_groups = NetworkSecurityGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.security_rules = SecurityRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.default_security_rules = DefaultSecurityRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_virtual_appliances = NetworkVirtualAppliancesOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_appliance_sites = VirtualApplianceSitesOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_appliance_skus = VirtualApplianceSkusOperations(self._client, self._config, self._serialize, self._deserialize) + self.inbound_security_rule = InboundSecurityRuleOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_watchers = NetworkWatchersOperations(self._client, self._config, self._serialize, self._deserialize) + self.packet_captures = PacketCapturesOperations(self._client, self._config, self._serialize, self._deserialize) + self.connection_monitors = ConnectionMonitorsOperations(self._client, self._config, self._serialize, self._deserialize) + self.flow_logs = FlowLogsOperations(self._client, self._config, self._serialize, self._deserialize) + self.operations = Operations(self._client, self._config, self._serialize, self._deserialize) + self.private_endpoints = PrivateEndpointsOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_private_endpoint_types = AvailablePrivateEndpointTypesOperations(self._client, self._config, self._serialize, self._deserialize) + self.private_dns_zone_groups = PrivateDnsZoneGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.private_link_services = PrivateLinkServicesOperations(self._client, self._config, self._serialize, self._deserialize) + self.public_ip_prefixes = PublicIPPrefixesOperations(self._client, self._config, self._serialize, self._deserialize) + self.route_filters = RouteFiltersOperations(self._client, self._config, self._serialize, self._deserialize) + self.route_filter_rules = RouteFilterRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.route_tables = RouteTablesOperations(self._client, self._config, self._serialize, self._deserialize) + self.routes = RoutesOperations(self._client, self._config, self._serialize, self._deserialize) + self.security_partner_providers = SecurityPartnerProvidersOperations(self._client, self._config, self._serialize, self._deserialize) + self.bgp_service_communities = BgpServiceCommunitiesOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_endpoint_policies = ServiceEndpointPoliciesOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_endpoint_policy_definitions = ServiceEndpointPolicyDefinitionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_tags = ServiceTagsOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_tag_information = ServiceTagInformationOperations(self._client, self._config, self._serialize, self._deserialize) + self.usages = UsagesOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_networks = VirtualNetworksOperations(self._client, self._config, self._serialize, self._deserialize) + self.subnets = SubnetsOperations(self._client, self._config, self._serialize, self._deserialize) + self.resource_navigation_links = ResourceNavigationLinksOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_association_links = ServiceAssociationLinksOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_peerings = VirtualNetworkPeeringsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_gateways = VirtualNetworkGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_gateway_connections = VirtualNetworkGatewayConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.local_network_gateways = LocalNetworkGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_gateway_nat_rules = VirtualNetworkGatewayNatRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_taps = VirtualNetworkTapsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_routers = VirtualRoutersOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_router_peerings = VirtualRouterPeeringsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_wans = VirtualWansOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_sites = VpnSitesOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_site_links = VpnSiteLinksOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_sites_configuration = VpnSitesConfigurationOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_server_configurations = VpnServerConfigurationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.configuration_policy_groups = ConfigurationPolicyGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hubs = VirtualHubsOperations(self._client, self._config, self._serialize, self._deserialize) + self.hub_virtual_network_connections = HubVirtualNetworkConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_gateways = VpnGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_link_connections = VpnLinkConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_connections = VpnConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_site_link_connections = VpnSiteLinkConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.nat_rules = NatRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.p2_svpn_gateways = P2SVpnGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_server_configurations_associated_with_virtual_wan = VpnServerConfigurationsAssociatedWithVirtualWanOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hub_route_table_v2_s = VirtualHubRouteTableV2SOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_gateways = ExpressRouteGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_connections = ExpressRouteConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hub_bgp_connection = VirtualHubBgpConnectionOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hub_bgp_connections = VirtualHubBgpConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hub_ip_configuration = VirtualHubIpConfigurationOperations(self._client, self._config, self._serialize, self._deserialize) + self.hub_route_tables = HubRouteTablesOperations(self._client, self._config, self._serialize, self._deserialize) + self.routing_intent = RoutingIntentOperations(self._client, self._config, self._serialize, self._deserialize) + self.web_application_firewall_policies = WebApplicationFirewallPoliciesOperations(self._client, self._config, self._serialize, self._deserialize) + + + def _send_request( + self, + request: HttpRequest, + **kwargs: Any + ) -> HttpResponse: + """Runs the network request through the client's chained policies. + + >>> from azure.core.rest import HttpRequest + >>> request = HttpRequest("GET", "https://www.example.org/") + + >>> response = client._send_request(request) + + + For more information on this code flow, see https://aka.ms/azsdk/python/protocol/quickstart + + :param request: The network request you want to make. Required. + :type request: ~azure.core.rest.HttpRequest + :keyword bool stream: Whether the response payload will be streamed. Defaults to False. + :return: The response of your network call. Does not do error handling on your response. + :rtype: ~azure.core.rest.HttpResponse + """ + + request_copy = deepcopy(request) + request_copy.url = self._client.format_url(request_copy.url) + return self._client.send_request(request_copy, **kwargs) + + def close(self): + # type: () -> None + self._client.close() + + def __enter__(self): + # type: () -> NetworkManagementClient + self._client.__enter__() + return self + + def __exit__(self, *exc_details): + # type: (Any) -> None + self._client.__exit__(*exc_details) diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_patch.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_patch.py new file mode 100644 index 00000000000..74e48ecd07c --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_patch.py @@ -0,0 +1,31 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# +# The MIT License (MIT) +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the ""Software""), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. +# +# -------------------------------------------------------------------------- + +# This file is used for handwritten extensions to the generated code. Example: +# https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md +def patch_sdk(): + pass \ No newline at end of file diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_vendor.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_vendor.py new file mode 100644 index 00000000000..138f663c53a --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_vendor.py @@ -0,0 +1,27 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from azure.core.pipeline.transport import HttpRequest + +def _convert_request(request, files=None): + data = request.content if not files else None + request = HttpRequest(method=request.method, url=request.url, headers=request.headers, data=data) + if files: + request.set_formdata_body(files) + return request + +def _format_url_section(template, **kwargs): + components = template.split("/") + while components: + try: + return template.format(**kwargs) + except KeyError as key: + formatted_components = template.split("/") + components = [ + c for c in formatted_components if "{}".format(key.args[0]) not in c + ] + template = "/".join(components) diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_version.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_version.py new file mode 100644 index 00000000000..e5754a47ce6 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/_version.py @@ -0,0 +1,9 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +VERSION = "1.0.0b1" diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/__init__.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/__init__.py new file mode 100644 index 00000000000..6affaa922de --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/__init__.py @@ -0,0 +1,15 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._network_management_client import NetworkManagementClient +__all__ = ['NetworkManagementClient'] + +# `._patch.py` is used for handwritten extensions to the generated code +# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md +from ._patch import patch_sdk +patch_sdk() diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_configuration.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_configuration.py new file mode 100644 index 00000000000..86d05cdb646 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_configuration.py @@ -0,0 +1,67 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy, AsyncARMChallengeAuthenticationPolicy + +from .._version import VERSION + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + + +class NetworkManagementClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes + """Configuration for NetworkManagementClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: The subscription credentials which uniquely identify the Microsoft + Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + **kwargs: Any + ) -> None: + super(NetworkManagementClientConfiguration, self).__init__(**kwargs) + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + + self.credential = credential + self.subscription_id = subscription_id + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'mgmt-network/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs: Any + ) -> None: + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = AsyncARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_network_management_client.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_network_management_client.py new file mode 100644 index 00000000000..dd9dfec2630 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_network_management_client.py @@ -0,0 +1,538 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from copy import deepcopy +from typing import Any, Awaitable, TYPE_CHECKING + +from msrest import Deserializer, Serializer + +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.mgmt.core import AsyncARMPipelineClient + +from .. import models +from ._configuration import NetworkManagementClientConfiguration +from .operations import ApplicationGatewayPrivateEndpointConnectionsOperations, ApplicationGatewayPrivateLinkResourcesOperations, ApplicationGatewaysOperations, ApplicationSecurityGroupsOperations, AvailableDelegationsOperations, AvailableEndpointServicesOperations, AvailablePrivateEndpointTypesOperations, AvailableResourceGroupDelegationsOperations, AvailableServiceAliasesOperations, AzureFirewallFqdnTagsOperations, AzureFirewallsOperations, BastionHostsOperations, BgpServiceCommunitiesOperations, ConfigurationPolicyGroupsOperations, ConnectionMonitorsOperations, CustomIPPrefixesOperations, DdosCustomPoliciesOperations, DdosProtectionPlansOperations, DefaultSecurityRulesOperations, DscpConfigurationOperations, ExpressRouteCircuitAuthorizationsOperations, ExpressRouteCircuitConnectionsOperations, ExpressRouteCircuitPeeringsOperations, ExpressRouteCircuitsOperations, ExpressRouteConnectionsOperations, ExpressRouteCrossConnectionPeeringsOperations, ExpressRouteCrossConnectionsOperations, ExpressRouteGatewaysOperations, ExpressRouteLinksOperations, ExpressRoutePortAuthorizationsOperations, ExpressRoutePortsLocationsOperations, ExpressRoutePortsOperations, ExpressRouteServiceProvidersOperations, FirewallPoliciesOperations, FirewallPolicyIdpsSignaturesFilterValuesOperations, FirewallPolicyIdpsSignaturesOperations, FirewallPolicyIdpsSignaturesOverridesOperations, FirewallPolicyRuleCollectionGroupsOperations, FlowLogsOperations, HubRouteTablesOperations, HubVirtualNetworkConnectionsOperations, InboundNatRulesOperations, InboundSecurityRuleOperations, IpAllocationsOperations, IpGroupsOperations, LoadBalancerBackendAddressPoolsOperations, LoadBalancerFrontendIPConfigurationsOperations, LoadBalancerLoadBalancingRulesOperations, LoadBalancerNetworkInterfacesOperations, LoadBalancerOutboundRulesOperations, LoadBalancerProbesOperations, LoadBalancersOperations, LocalNetworkGatewaysOperations, NatGatewaysOperations, NatRulesOperations, NetworkInterfaceIPConfigurationsOperations, NetworkInterfaceLoadBalancersOperations, NetworkInterfaceTapConfigurationsOperations, NetworkInterfacesOperations, NetworkManagementClientOperationsMixin, NetworkProfilesOperations, NetworkSecurityGroupsOperations, NetworkVirtualAppliancesOperations, NetworkWatchersOperations, Operations, P2SVpnGatewaysOperations, PacketCapturesOperations, PeerExpressRouteCircuitConnectionsOperations, PrivateDnsZoneGroupsOperations, PrivateEndpointsOperations, PrivateLinkServicesOperations, PublicIPAddressesOperations, PublicIPPrefixesOperations, ResourceNavigationLinksOperations, RouteFilterRulesOperations, RouteFiltersOperations, RouteTablesOperations, RoutesOperations, RoutingIntentOperations, SecurityPartnerProvidersOperations, SecurityRulesOperations, ServiceAssociationLinksOperations, ServiceEndpointPoliciesOperations, ServiceEndpointPolicyDefinitionsOperations, ServiceTagInformationOperations, ServiceTagsOperations, SubnetsOperations, UsagesOperations, VirtualApplianceSitesOperations, VirtualApplianceSkusOperations, VirtualHubBgpConnectionOperations, VirtualHubBgpConnectionsOperations, VirtualHubIpConfigurationOperations, VirtualHubRouteTableV2SOperations, VirtualHubsOperations, VirtualNetworkGatewayConnectionsOperations, VirtualNetworkGatewayNatRulesOperations, VirtualNetworkGatewaysOperations, VirtualNetworkPeeringsOperations, VirtualNetworkTapsOperations, VirtualNetworksOperations, VirtualRouterPeeringsOperations, VirtualRoutersOperations, VirtualWansOperations, VpnConnectionsOperations, VpnGatewaysOperations, VpnLinkConnectionsOperations, VpnServerConfigurationsAssociatedWithVirtualWanOperations, VpnServerConfigurationsOperations, VpnSiteLinkConnectionsOperations, VpnSiteLinksOperations, VpnSitesConfigurationOperations, VpnSitesOperations, WebApplicationFirewallPoliciesOperations, WebCategoriesOperations + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + +class NetworkManagementClient(NetworkManagementClientOperationsMixin): # pylint: disable=too-many-instance-attributes + """Network Client. + + :ivar application_gateways: ApplicationGatewaysOperations operations + :vartype application_gateways: + azure.mgmt.network.v2021_08_01.aio.operations.ApplicationGatewaysOperations + :ivar application_gateway_private_link_resources: + ApplicationGatewayPrivateLinkResourcesOperations operations + :vartype application_gateway_private_link_resources: + azure.mgmt.network.v2021_08_01.aio.operations.ApplicationGatewayPrivateLinkResourcesOperations + :ivar application_gateway_private_endpoint_connections: + ApplicationGatewayPrivateEndpointConnectionsOperations operations + :vartype application_gateway_private_endpoint_connections: + azure.mgmt.network.v2021_08_01.aio.operations.ApplicationGatewayPrivateEndpointConnectionsOperations + :ivar application_security_groups: ApplicationSecurityGroupsOperations operations + :vartype application_security_groups: + azure.mgmt.network.v2021_08_01.aio.operations.ApplicationSecurityGroupsOperations + :ivar available_delegations: AvailableDelegationsOperations operations + :vartype available_delegations: + azure.mgmt.network.v2021_08_01.aio.operations.AvailableDelegationsOperations + :ivar available_resource_group_delegations: AvailableResourceGroupDelegationsOperations + operations + :vartype available_resource_group_delegations: + azure.mgmt.network.v2021_08_01.aio.operations.AvailableResourceGroupDelegationsOperations + :ivar available_service_aliases: AvailableServiceAliasesOperations operations + :vartype available_service_aliases: + azure.mgmt.network.v2021_08_01.aio.operations.AvailableServiceAliasesOperations + :ivar azure_firewalls: AzureFirewallsOperations operations + :vartype azure_firewalls: + azure.mgmt.network.v2021_08_01.aio.operations.AzureFirewallsOperations + :ivar azure_firewall_fqdn_tags: AzureFirewallFqdnTagsOperations operations + :vartype azure_firewall_fqdn_tags: + azure.mgmt.network.v2021_08_01.aio.operations.AzureFirewallFqdnTagsOperations + :ivar web_categories: WebCategoriesOperations operations + :vartype web_categories: azure.mgmt.network.v2021_08_01.aio.operations.WebCategoriesOperations + :ivar bastion_hosts: BastionHostsOperations operations + :vartype bastion_hosts: azure.mgmt.network.v2021_08_01.aio.operations.BastionHostsOperations + :ivar network_interfaces: NetworkInterfacesOperations operations + :vartype network_interfaces: + azure.mgmt.network.v2021_08_01.aio.operations.NetworkInterfacesOperations + :ivar public_ip_addresses: PublicIPAddressesOperations operations + :vartype public_ip_addresses: + azure.mgmt.network.v2021_08_01.aio.operations.PublicIPAddressesOperations + :ivar custom_ip_prefixes: CustomIPPrefixesOperations operations + :vartype custom_ip_prefixes: + azure.mgmt.network.v2021_08_01.aio.operations.CustomIPPrefixesOperations + :ivar ddos_custom_policies: DdosCustomPoliciesOperations operations + :vartype ddos_custom_policies: + azure.mgmt.network.v2021_08_01.aio.operations.DdosCustomPoliciesOperations + :ivar ddos_protection_plans: DdosProtectionPlansOperations operations + :vartype ddos_protection_plans: + azure.mgmt.network.v2021_08_01.aio.operations.DdosProtectionPlansOperations + :ivar dscp_configuration: DscpConfigurationOperations operations + :vartype dscp_configuration: + azure.mgmt.network.v2021_08_01.aio.operations.DscpConfigurationOperations + :ivar available_endpoint_services: AvailableEndpointServicesOperations operations + :vartype available_endpoint_services: + azure.mgmt.network.v2021_08_01.aio.operations.AvailableEndpointServicesOperations + :ivar express_route_circuit_authorizations: ExpressRouteCircuitAuthorizationsOperations + operations + :vartype express_route_circuit_authorizations: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteCircuitAuthorizationsOperations + :ivar express_route_circuit_peerings: ExpressRouteCircuitPeeringsOperations operations + :vartype express_route_circuit_peerings: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteCircuitPeeringsOperations + :ivar express_route_circuit_connections: ExpressRouteCircuitConnectionsOperations operations + :vartype express_route_circuit_connections: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteCircuitConnectionsOperations + :ivar peer_express_route_circuit_connections: PeerExpressRouteCircuitConnectionsOperations + operations + :vartype peer_express_route_circuit_connections: + azure.mgmt.network.v2021_08_01.aio.operations.PeerExpressRouteCircuitConnectionsOperations + :ivar express_route_circuits: ExpressRouteCircuitsOperations operations + :vartype express_route_circuits: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteCircuitsOperations + :ivar express_route_service_providers: ExpressRouteServiceProvidersOperations operations + :vartype express_route_service_providers: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteServiceProvidersOperations + :ivar express_route_cross_connections: ExpressRouteCrossConnectionsOperations operations + :vartype express_route_cross_connections: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteCrossConnectionsOperations + :ivar express_route_cross_connection_peerings: ExpressRouteCrossConnectionPeeringsOperations + operations + :vartype express_route_cross_connection_peerings: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteCrossConnectionPeeringsOperations + :ivar express_route_ports_locations: ExpressRoutePortsLocationsOperations operations + :vartype express_route_ports_locations: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRoutePortsLocationsOperations + :ivar express_route_ports: ExpressRoutePortsOperations operations + :vartype express_route_ports: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRoutePortsOperations + :ivar express_route_links: ExpressRouteLinksOperations operations + :vartype express_route_links: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteLinksOperations + :ivar express_route_port_authorizations: ExpressRoutePortAuthorizationsOperations operations + :vartype express_route_port_authorizations: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRoutePortAuthorizationsOperations + :ivar firewall_policies: FirewallPoliciesOperations operations + :vartype firewall_policies: + azure.mgmt.network.v2021_08_01.aio.operations.FirewallPoliciesOperations + :ivar firewall_policy_rule_collection_groups: FirewallPolicyRuleCollectionGroupsOperations + operations + :vartype firewall_policy_rule_collection_groups: + azure.mgmt.network.v2021_08_01.aio.operations.FirewallPolicyRuleCollectionGroupsOperations + :ivar firewall_policy_idps_signatures: FirewallPolicyIdpsSignaturesOperations operations + :vartype firewall_policy_idps_signatures: + azure.mgmt.network.v2021_08_01.aio.operations.FirewallPolicyIdpsSignaturesOperations + :ivar firewall_policy_idps_signatures_overrides: + FirewallPolicyIdpsSignaturesOverridesOperations operations + :vartype firewall_policy_idps_signatures_overrides: + azure.mgmt.network.v2021_08_01.aio.operations.FirewallPolicyIdpsSignaturesOverridesOperations + :ivar firewall_policy_idps_signatures_filter_values: + FirewallPolicyIdpsSignaturesFilterValuesOperations operations + :vartype firewall_policy_idps_signatures_filter_values: + azure.mgmt.network.v2021_08_01.aio.operations.FirewallPolicyIdpsSignaturesFilterValuesOperations + :ivar ip_allocations: IpAllocationsOperations operations + :vartype ip_allocations: azure.mgmt.network.v2021_08_01.aio.operations.IpAllocationsOperations + :ivar ip_groups: IpGroupsOperations operations + :vartype ip_groups: azure.mgmt.network.v2021_08_01.aio.operations.IpGroupsOperations + :ivar load_balancers: LoadBalancersOperations operations + :vartype load_balancers: azure.mgmt.network.v2021_08_01.aio.operations.LoadBalancersOperations + :ivar load_balancer_backend_address_pools: LoadBalancerBackendAddressPoolsOperations operations + :vartype load_balancer_backend_address_pools: + azure.mgmt.network.v2021_08_01.aio.operations.LoadBalancerBackendAddressPoolsOperations + :ivar load_balancer_frontend_ip_configurations: LoadBalancerFrontendIPConfigurationsOperations + operations + :vartype load_balancer_frontend_ip_configurations: + azure.mgmt.network.v2021_08_01.aio.operations.LoadBalancerFrontendIPConfigurationsOperations + :ivar inbound_nat_rules: InboundNatRulesOperations operations + :vartype inbound_nat_rules: + azure.mgmt.network.v2021_08_01.aio.operations.InboundNatRulesOperations + :ivar load_balancer_load_balancing_rules: LoadBalancerLoadBalancingRulesOperations operations + :vartype load_balancer_load_balancing_rules: + azure.mgmt.network.v2021_08_01.aio.operations.LoadBalancerLoadBalancingRulesOperations + :ivar load_balancer_outbound_rules: LoadBalancerOutboundRulesOperations operations + :vartype load_balancer_outbound_rules: + azure.mgmt.network.v2021_08_01.aio.operations.LoadBalancerOutboundRulesOperations + :ivar load_balancer_network_interfaces: LoadBalancerNetworkInterfacesOperations operations + :vartype load_balancer_network_interfaces: + azure.mgmt.network.v2021_08_01.aio.operations.LoadBalancerNetworkInterfacesOperations + :ivar load_balancer_probes: LoadBalancerProbesOperations operations + :vartype load_balancer_probes: + azure.mgmt.network.v2021_08_01.aio.operations.LoadBalancerProbesOperations + :ivar nat_gateways: NatGatewaysOperations operations + :vartype nat_gateways: azure.mgmt.network.v2021_08_01.aio.operations.NatGatewaysOperations + :ivar network_interface_ip_configurations: NetworkInterfaceIPConfigurationsOperations + operations + :vartype network_interface_ip_configurations: + azure.mgmt.network.v2021_08_01.aio.operations.NetworkInterfaceIPConfigurationsOperations + :ivar network_interface_load_balancers: NetworkInterfaceLoadBalancersOperations operations + :vartype network_interface_load_balancers: + azure.mgmt.network.v2021_08_01.aio.operations.NetworkInterfaceLoadBalancersOperations + :ivar network_interface_tap_configurations: NetworkInterfaceTapConfigurationsOperations + operations + :vartype network_interface_tap_configurations: + azure.mgmt.network.v2021_08_01.aio.operations.NetworkInterfaceTapConfigurationsOperations + :ivar network_profiles: NetworkProfilesOperations operations + :vartype network_profiles: + azure.mgmt.network.v2021_08_01.aio.operations.NetworkProfilesOperations + :ivar network_security_groups: NetworkSecurityGroupsOperations operations + :vartype network_security_groups: + azure.mgmt.network.v2021_08_01.aio.operations.NetworkSecurityGroupsOperations + :ivar security_rules: SecurityRulesOperations operations + :vartype security_rules: azure.mgmt.network.v2021_08_01.aio.operations.SecurityRulesOperations + :ivar default_security_rules: DefaultSecurityRulesOperations operations + :vartype default_security_rules: + azure.mgmt.network.v2021_08_01.aio.operations.DefaultSecurityRulesOperations + :ivar network_virtual_appliances: NetworkVirtualAppliancesOperations operations + :vartype network_virtual_appliances: + azure.mgmt.network.v2021_08_01.aio.operations.NetworkVirtualAppliancesOperations + :ivar virtual_appliance_sites: VirtualApplianceSitesOperations operations + :vartype virtual_appliance_sites: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualApplianceSitesOperations + :ivar virtual_appliance_skus: VirtualApplianceSkusOperations operations + :vartype virtual_appliance_skus: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualApplianceSkusOperations + :ivar inbound_security_rule: InboundSecurityRuleOperations operations + :vartype inbound_security_rule: + azure.mgmt.network.v2021_08_01.aio.operations.InboundSecurityRuleOperations + :ivar network_watchers: NetworkWatchersOperations operations + :vartype network_watchers: + azure.mgmt.network.v2021_08_01.aio.operations.NetworkWatchersOperations + :ivar packet_captures: PacketCapturesOperations operations + :vartype packet_captures: + azure.mgmt.network.v2021_08_01.aio.operations.PacketCapturesOperations + :ivar connection_monitors: ConnectionMonitorsOperations operations + :vartype connection_monitors: + azure.mgmt.network.v2021_08_01.aio.operations.ConnectionMonitorsOperations + :ivar flow_logs: FlowLogsOperations operations + :vartype flow_logs: azure.mgmt.network.v2021_08_01.aio.operations.FlowLogsOperations + :ivar operations: Operations operations + :vartype operations: azure.mgmt.network.v2021_08_01.aio.operations.Operations + :ivar private_endpoints: PrivateEndpointsOperations operations + :vartype private_endpoints: + azure.mgmt.network.v2021_08_01.aio.operations.PrivateEndpointsOperations + :ivar available_private_endpoint_types: AvailablePrivateEndpointTypesOperations operations + :vartype available_private_endpoint_types: + azure.mgmt.network.v2021_08_01.aio.operations.AvailablePrivateEndpointTypesOperations + :ivar private_dns_zone_groups: PrivateDnsZoneGroupsOperations operations + :vartype private_dns_zone_groups: + azure.mgmt.network.v2021_08_01.aio.operations.PrivateDnsZoneGroupsOperations + :ivar private_link_services: PrivateLinkServicesOperations operations + :vartype private_link_services: + azure.mgmt.network.v2021_08_01.aio.operations.PrivateLinkServicesOperations + :ivar public_ip_prefixes: PublicIPPrefixesOperations operations + :vartype public_ip_prefixes: + azure.mgmt.network.v2021_08_01.aio.operations.PublicIPPrefixesOperations + :ivar route_filters: RouteFiltersOperations operations + :vartype route_filters: azure.mgmt.network.v2021_08_01.aio.operations.RouteFiltersOperations + :ivar route_filter_rules: RouteFilterRulesOperations operations + :vartype route_filter_rules: + azure.mgmt.network.v2021_08_01.aio.operations.RouteFilterRulesOperations + :ivar route_tables: RouteTablesOperations operations + :vartype route_tables: azure.mgmt.network.v2021_08_01.aio.operations.RouteTablesOperations + :ivar routes: RoutesOperations operations + :vartype routes: azure.mgmt.network.v2021_08_01.aio.operations.RoutesOperations + :ivar security_partner_providers: SecurityPartnerProvidersOperations operations + :vartype security_partner_providers: + azure.mgmt.network.v2021_08_01.aio.operations.SecurityPartnerProvidersOperations + :ivar bgp_service_communities: BgpServiceCommunitiesOperations operations + :vartype bgp_service_communities: + azure.mgmt.network.v2021_08_01.aio.operations.BgpServiceCommunitiesOperations + :ivar service_endpoint_policies: ServiceEndpointPoliciesOperations operations + :vartype service_endpoint_policies: + azure.mgmt.network.v2021_08_01.aio.operations.ServiceEndpointPoliciesOperations + :ivar service_endpoint_policy_definitions: ServiceEndpointPolicyDefinitionsOperations + operations + :vartype service_endpoint_policy_definitions: + azure.mgmt.network.v2021_08_01.aio.operations.ServiceEndpointPolicyDefinitionsOperations + :ivar service_tags: ServiceTagsOperations operations + :vartype service_tags: azure.mgmt.network.v2021_08_01.aio.operations.ServiceTagsOperations + :ivar service_tag_information: ServiceTagInformationOperations operations + :vartype service_tag_information: + azure.mgmt.network.v2021_08_01.aio.operations.ServiceTagInformationOperations + :ivar usages: UsagesOperations operations + :vartype usages: azure.mgmt.network.v2021_08_01.aio.operations.UsagesOperations + :ivar virtual_networks: VirtualNetworksOperations operations + :vartype virtual_networks: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualNetworksOperations + :ivar subnets: SubnetsOperations operations + :vartype subnets: azure.mgmt.network.v2021_08_01.aio.operations.SubnetsOperations + :ivar resource_navigation_links: ResourceNavigationLinksOperations operations + :vartype resource_navigation_links: + azure.mgmt.network.v2021_08_01.aio.operations.ResourceNavigationLinksOperations + :ivar service_association_links: ServiceAssociationLinksOperations operations + :vartype service_association_links: + azure.mgmt.network.v2021_08_01.aio.operations.ServiceAssociationLinksOperations + :ivar virtual_network_peerings: VirtualNetworkPeeringsOperations operations + :vartype virtual_network_peerings: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualNetworkPeeringsOperations + :ivar virtual_network_gateways: VirtualNetworkGatewaysOperations operations + :vartype virtual_network_gateways: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualNetworkGatewaysOperations + :ivar virtual_network_gateway_connections: VirtualNetworkGatewayConnectionsOperations + operations + :vartype virtual_network_gateway_connections: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualNetworkGatewayConnectionsOperations + :ivar local_network_gateways: LocalNetworkGatewaysOperations operations + :vartype local_network_gateways: + azure.mgmt.network.v2021_08_01.aio.operations.LocalNetworkGatewaysOperations + :ivar virtual_network_gateway_nat_rules: VirtualNetworkGatewayNatRulesOperations operations + :vartype virtual_network_gateway_nat_rules: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualNetworkGatewayNatRulesOperations + :ivar virtual_network_taps: VirtualNetworkTapsOperations operations + :vartype virtual_network_taps: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualNetworkTapsOperations + :ivar virtual_routers: VirtualRoutersOperations operations + :vartype virtual_routers: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualRoutersOperations + :ivar virtual_router_peerings: VirtualRouterPeeringsOperations operations + :vartype virtual_router_peerings: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualRouterPeeringsOperations + :ivar virtual_wans: VirtualWansOperations operations + :vartype virtual_wans: azure.mgmt.network.v2021_08_01.aio.operations.VirtualWansOperations + :ivar vpn_sites: VpnSitesOperations operations + :vartype vpn_sites: azure.mgmt.network.v2021_08_01.aio.operations.VpnSitesOperations + :ivar vpn_site_links: VpnSiteLinksOperations operations + :vartype vpn_site_links: azure.mgmt.network.v2021_08_01.aio.operations.VpnSiteLinksOperations + :ivar vpn_sites_configuration: VpnSitesConfigurationOperations operations + :vartype vpn_sites_configuration: + azure.mgmt.network.v2021_08_01.aio.operations.VpnSitesConfigurationOperations + :ivar vpn_server_configurations: VpnServerConfigurationsOperations operations + :vartype vpn_server_configurations: + azure.mgmt.network.v2021_08_01.aio.operations.VpnServerConfigurationsOperations + :ivar configuration_policy_groups: ConfigurationPolicyGroupsOperations operations + :vartype configuration_policy_groups: + azure.mgmt.network.v2021_08_01.aio.operations.ConfigurationPolicyGroupsOperations + :ivar virtual_hubs: VirtualHubsOperations operations + :vartype virtual_hubs: azure.mgmt.network.v2021_08_01.aio.operations.VirtualHubsOperations + :ivar hub_virtual_network_connections: HubVirtualNetworkConnectionsOperations operations + :vartype hub_virtual_network_connections: + azure.mgmt.network.v2021_08_01.aio.operations.HubVirtualNetworkConnectionsOperations + :ivar vpn_gateways: VpnGatewaysOperations operations + :vartype vpn_gateways: azure.mgmt.network.v2021_08_01.aio.operations.VpnGatewaysOperations + :ivar vpn_link_connections: VpnLinkConnectionsOperations operations + :vartype vpn_link_connections: + azure.mgmt.network.v2021_08_01.aio.operations.VpnLinkConnectionsOperations + :ivar vpn_connections: VpnConnectionsOperations operations + :vartype vpn_connections: + azure.mgmt.network.v2021_08_01.aio.operations.VpnConnectionsOperations + :ivar vpn_site_link_connections: VpnSiteLinkConnectionsOperations operations + :vartype vpn_site_link_connections: + azure.mgmt.network.v2021_08_01.aio.operations.VpnSiteLinkConnectionsOperations + :ivar nat_rules: NatRulesOperations operations + :vartype nat_rules: azure.mgmt.network.v2021_08_01.aio.operations.NatRulesOperations + :ivar p2_svpn_gateways: P2SVpnGatewaysOperations operations + :vartype p2_svpn_gateways: + azure.mgmt.network.v2021_08_01.aio.operations.P2SVpnGatewaysOperations + :ivar vpn_server_configurations_associated_with_virtual_wan: + VpnServerConfigurationsAssociatedWithVirtualWanOperations operations + :vartype vpn_server_configurations_associated_with_virtual_wan: + azure.mgmt.network.v2021_08_01.aio.operations.VpnServerConfigurationsAssociatedWithVirtualWanOperations + :ivar virtual_hub_route_table_v2_s: VirtualHubRouteTableV2SOperations operations + :vartype virtual_hub_route_table_v2_s: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualHubRouteTableV2SOperations + :ivar express_route_gateways: ExpressRouteGatewaysOperations operations + :vartype express_route_gateways: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteGatewaysOperations + :ivar express_route_connections: ExpressRouteConnectionsOperations operations + :vartype express_route_connections: + azure.mgmt.network.v2021_08_01.aio.operations.ExpressRouteConnectionsOperations + :ivar virtual_hub_bgp_connection: VirtualHubBgpConnectionOperations operations + :vartype virtual_hub_bgp_connection: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualHubBgpConnectionOperations + :ivar virtual_hub_bgp_connections: VirtualHubBgpConnectionsOperations operations + :vartype virtual_hub_bgp_connections: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualHubBgpConnectionsOperations + :ivar virtual_hub_ip_configuration: VirtualHubIpConfigurationOperations operations + :vartype virtual_hub_ip_configuration: + azure.mgmt.network.v2021_08_01.aio.operations.VirtualHubIpConfigurationOperations + :ivar hub_route_tables: HubRouteTablesOperations operations + :vartype hub_route_tables: + azure.mgmt.network.v2021_08_01.aio.operations.HubRouteTablesOperations + :ivar routing_intent: RoutingIntentOperations operations + :vartype routing_intent: azure.mgmt.network.v2021_08_01.aio.operations.RoutingIntentOperations + :ivar web_application_firewall_policies: WebApplicationFirewallPoliciesOperations operations + :vartype web_application_firewall_policies: + azure.mgmt.network.v2021_08_01.aio.operations.WebApplicationFirewallPoliciesOperations + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: The subscription credentials which uniquely identify the Microsoft + Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + :param base_url: Service URL. Default value is "https://management.azure.com". + :type base_url: str + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + base_url: str = "https://management.azure.com", + **kwargs: Any + ) -> None: + self._config = NetworkManagementClientConfiguration(credential=credential, subscription_id=subscription_id, **kwargs) + self._client = AsyncARMPipelineClient(base_url=base_url, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + self._serialize.client_side_validation = False + self.application_gateways = ApplicationGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.application_gateway_private_link_resources = ApplicationGatewayPrivateLinkResourcesOperations(self._client, self._config, self._serialize, self._deserialize) + self.application_gateway_private_endpoint_connections = ApplicationGatewayPrivateEndpointConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.application_security_groups = ApplicationSecurityGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_delegations = AvailableDelegationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_resource_group_delegations = AvailableResourceGroupDelegationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_service_aliases = AvailableServiceAliasesOperations(self._client, self._config, self._serialize, self._deserialize) + self.azure_firewalls = AzureFirewallsOperations(self._client, self._config, self._serialize, self._deserialize) + self.azure_firewall_fqdn_tags = AzureFirewallFqdnTagsOperations(self._client, self._config, self._serialize, self._deserialize) + self.web_categories = WebCategoriesOperations(self._client, self._config, self._serialize, self._deserialize) + self.bastion_hosts = BastionHostsOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_interfaces = NetworkInterfacesOperations(self._client, self._config, self._serialize, self._deserialize) + self.public_ip_addresses = PublicIPAddressesOperations(self._client, self._config, self._serialize, self._deserialize) + self.custom_ip_prefixes = CustomIPPrefixesOperations(self._client, self._config, self._serialize, self._deserialize) + self.ddos_custom_policies = DdosCustomPoliciesOperations(self._client, self._config, self._serialize, self._deserialize) + self.ddos_protection_plans = DdosProtectionPlansOperations(self._client, self._config, self._serialize, self._deserialize) + self.dscp_configuration = DscpConfigurationOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_endpoint_services = AvailableEndpointServicesOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_circuit_authorizations = ExpressRouteCircuitAuthorizationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_circuit_peerings = ExpressRouteCircuitPeeringsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_circuit_connections = ExpressRouteCircuitConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.peer_express_route_circuit_connections = PeerExpressRouteCircuitConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_circuits = ExpressRouteCircuitsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_service_providers = ExpressRouteServiceProvidersOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_cross_connections = ExpressRouteCrossConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_cross_connection_peerings = ExpressRouteCrossConnectionPeeringsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_ports_locations = ExpressRoutePortsLocationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_ports = ExpressRoutePortsOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_links = ExpressRouteLinksOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_port_authorizations = ExpressRoutePortAuthorizationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policies = FirewallPoliciesOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policy_rule_collection_groups = FirewallPolicyRuleCollectionGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policy_idps_signatures = FirewallPolicyIdpsSignaturesOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policy_idps_signatures_overrides = FirewallPolicyIdpsSignaturesOverridesOperations(self._client, self._config, self._serialize, self._deserialize) + self.firewall_policy_idps_signatures_filter_values = FirewallPolicyIdpsSignaturesFilterValuesOperations(self._client, self._config, self._serialize, self._deserialize) + self.ip_allocations = IpAllocationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.ip_groups = IpGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancers = LoadBalancersOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_backend_address_pools = LoadBalancerBackendAddressPoolsOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_frontend_ip_configurations = LoadBalancerFrontendIPConfigurationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.inbound_nat_rules = InboundNatRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_load_balancing_rules = LoadBalancerLoadBalancingRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_outbound_rules = LoadBalancerOutboundRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_network_interfaces = LoadBalancerNetworkInterfacesOperations(self._client, self._config, self._serialize, self._deserialize) + self.load_balancer_probes = LoadBalancerProbesOperations(self._client, self._config, self._serialize, self._deserialize) + self.nat_gateways = NatGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_interface_ip_configurations = NetworkInterfaceIPConfigurationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_interface_load_balancers = NetworkInterfaceLoadBalancersOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_interface_tap_configurations = NetworkInterfaceTapConfigurationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_profiles = NetworkProfilesOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_security_groups = NetworkSecurityGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.security_rules = SecurityRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.default_security_rules = DefaultSecurityRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_virtual_appliances = NetworkVirtualAppliancesOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_appliance_sites = VirtualApplianceSitesOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_appliance_skus = VirtualApplianceSkusOperations(self._client, self._config, self._serialize, self._deserialize) + self.inbound_security_rule = InboundSecurityRuleOperations(self._client, self._config, self._serialize, self._deserialize) + self.network_watchers = NetworkWatchersOperations(self._client, self._config, self._serialize, self._deserialize) + self.packet_captures = PacketCapturesOperations(self._client, self._config, self._serialize, self._deserialize) + self.connection_monitors = ConnectionMonitorsOperations(self._client, self._config, self._serialize, self._deserialize) + self.flow_logs = FlowLogsOperations(self._client, self._config, self._serialize, self._deserialize) + self.operations = Operations(self._client, self._config, self._serialize, self._deserialize) + self.private_endpoints = PrivateEndpointsOperations(self._client, self._config, self._serialize, self._deserialize) + self.available_private_endpoint_types = AvailablePrivateEndpointTypesOperations(self._client, self._config, self._serialize, self._deserialize) + self.private_dns_zone_groups = PrivateDnsZoneGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.private_link_services = PrivateLinkServicesOperations(self._client, self._config, self._serialize, self._deserialize) + self.public_ip_prefixes = PublicIPPrefixesOperations(self._client, self._config, self._serialize, self._deserialize) + self.route_filters = RouteFiltersOperations(self._client, self._config, self._serialize, self._deserialize) + self.route_filter_rules = RouteFilterRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.route_tables = RouteTablesOperations(self._client, self._config, self._serialize, self._deserialize) + self.routes = RoutesOperations(self._client, self._config, self._serialize, self._deserialize) + self.security_partner_providers = SecurityPartnerProvidersOperations(self._client, self._config, self._serialize, self._deserialize) + self.bgp_service_communities = BgpServiceCommunitiesOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_endpoint_policies = ServiceEndpointPoliciesOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_endpoint_policy_definitions = ServiceEndpointPolicyDefinitionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_tags = ServiceTagsOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_tag_information = ServiceTagInformationOperations(self._client, self._config, self._serialize, self._deserialize) + self.usages = UsagesOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_networks = VirtualNetworksOperations(self._client, self._config, self._serialize, self._deserialize) + self.subnets = SubnetsOperations(self._client, self._config, self._serialize, self._deserialize) + self.resource_navigation_links = ResourceNavigationLinksOperations(self._client, self._config, self._serialize, self._deserialize) + self.service_association_links = ServiceAssociationLinksOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_peerings = VirtualNetworkPeeringsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_gateways = VirtualNetworkGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_gateway_connections = VirtualNetworkGatewayConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.local_network_gateways = LocalNetworkGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_gateway_nat_rules = VirtualNetworkGatewayNatRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_network_taps = VirtualNetworkTapsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_routers = VirtualRoutersOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_router_peerings = VirtualRouterPeeringsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_wans = VirtualWansOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_sites = VpnSitesOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_site_links = VpnSiteLinksOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_sites_configuration = VpnSitesConfigurationOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_server_configurations = VpnServerConfigurationsOperations(self._client, self._config, self._serialize, self._deserialize) + self.configuration_policy_groups = ConfigurationPolicyGroupsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hubs = VirtualHubsOperations(self._client, self._config, self._serialize, self._deserialize) + self.hub_virtual_network_connections = HubVirtualNetworkConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_gateways = VpnGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_link_connections = VpnLinkConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_connections = VpnConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_site_link_connections = VpnSiteLinkConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.nat_rules = NatRulesOperations(self._client, self._config, self._serialize, self._deserialize) + self.p2_svpn_gateways = P2SVpnGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.vpn_server_configurations_associated_with_virtual_wan = VpnServerConfigurationsAssociatedWithVirtualWanOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hub_route_table_v2_s = VirtualHubRouteTableV2SOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_gateways = ExpressRouteGatewaysOperations(self._client, self._config, self._serialize, self._deserialize) + self.express_route_connections = ExpressRouteConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hub_bgp_connection = VirtualHubBgpConnectionOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hub_bgp_connections = VirtualHubBgpConnectionsOperations(self._client, self._config, self._serialize, self._deserialize) + self.virtual_hub_ip_configuration = VirtualHubIpConfigurationOperations(self._client, self._config, self._serialize, self._deserialize) + self.hub_route_tables = HubRouteTablesOperations(self._client, self._config, self._serialize, self._deserialize) + self.routing_intent = RoutingIntentOperations(self._client, self._config, self._serialize, self._deserialize) + self.web_application_firewall_policies = WebApplicationFirewallPoliciesOperations(self._client, self._config, self._serialize, self._deserialize) + + + def _send_request( + self, + request: HttpRequest, + **kwargs: Any + ) -> Awaitable[AsyncHttpResponse]: + """Runs the network request through the client's chained policies. + + >>> from azure.core.rest import HttpRequest + >>> request = HttpRequest("GET", "https://www.example.org/") + + >>> response = await client._send_request(request) + + + For more information on this code flow, see https://aka.ms/azsdk/python/protocol/quickstart + + :param request: The network request you want to make. Required. + :type request: ~azure.core.rest.HttpRequest + :keyword bool stream: Whether the response payload will be streamed. Defaults to False. + :return: The response of your network call. Does not do error handling on your response. + :rtype: ~azure.core.rest.AsyncHttpResponse + """ + + request_copy = deepcopy(request) + request_copy.url = self._client.format_url(request_copy.url) + return self._client.send_request(request_copy, **kwargs) + + async def close(self) -> None: + await self._client.close() + + async def __aenter__(self) -> "NetworkManagementClient": + await self._client.__aenter__() + return self + + async def __aexit__(self, *exc_details) -> None: + await self._client.__aexit__(*exc_details) diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_patch.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_patch.py new file mode 100644 index 00000000000..74e48ecd07c --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/_patch.py @@ -0,0 +1,31 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# +# The MIT License (MIT) +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the ""Software""), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. +# +# -------------------------------------------------------------------------- + +# This file is used for handwritten extensions to the generated code. Example: +# https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md +def patch_sdk(): + pass \ No newline at end of file diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/operations/__init__.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/operations/__init__.py new file mode 100644 index 00000000000..f71d0fb7e6d --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/operations/__init__.py @@ -0,0 +1,241 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._operations import ApplicationGatewaysOperations +from ._operations import ApplicationGatewayPrivateLinkResourcesOperations +from ._operations import ApplicationGatewayPrivateEndpointConnectionsOperations +from ._operations import ApplicationSecurityGroupsOperations +from ._operations import AvailableDelegationsOperations +from ._operations import AvailableResourceGroupDelegationsOperations +from ._operations import AvailableServiceAliasesOperations +from ._operations import AzureFirewallsOperations +from ._operations import AzureFirewallFqdnTagsOperations +from ._operations import WebCategoriesOperations +from ._operations import BastionHostsOperations +from ._operations import NetworkManagementClientOperationsMixin +from ._operations import NetworkInterfacesOperations +from ._operations import PublicIPAddressesOperations +from ._operations import CustomIPPrefixesOperations +from ._operations import DdosCustomPoliciesOperations +from ._operations import DdosProtectionPlansOperations +from ._operations import DscpConfigurationOperations +from ._operations import AvailableEndpointServicesOperations +from ._operations import ExpressRouteCircuitAuthorizationsOperations +from ._operations import ExpressRouteCircuitPeeringsOperations +from ._operations import ExpressRouteCircuitConnectionsOperations +from ._operations import PeerExpressRouteCircuitConnectionsOperations +from ._operations import ExpressRouteCircuitsOperations +from ._operations import ExpressRouteServiceProvidersOperations +from ._operations import ExpressRouteCrossConnectionsOperations +from ._operations import ExpressRouteCrossConnectionPeeringsOperations +from ._operations import ExpressRoutePortsLocationsOperations +from ._operations import ExpressRoutePortsOperations +from ._operations import ExpressRouteLinksOperations +from ._operations import ExpressRoutePortAuthorizationsOperations +from ._operations import FirewallPoliciesOperations +from ._operations import FirewallPolicyRuleCollectionGroupsOperations +from ._operations import FirewallPolicyIdpsSignaturesOperations +from ._operations import FirewallPolicyIdpsSignaturesOverridesOperations +from ._operations import FirewallPolicyIdpsSignaturesFilterValuesOperations +from ._operations import IpAllocationsOperations +from ._operations import IpGroupsOperations +from ._operations import LoadBalancersOperations +from ._operations import LoadBalancerBackendAddressPoolsOperations +from ._operations import LoadBalancerFrontendIPConfigurationsOperations +from ._operations import InboundNatRulesOperations +from ._operations import LoadBalancerLoadBalancingRulesOperations +from ._operations import LoadBalancerOutboundRulesOperations +from ._operations import LoadBalancerNetworkInterfacesOperations +from ._operations import LoadBalancerProbesOperations +from ._operations import NatGatewaysOperations +from ._operations import NetworkInterfaceIPConfigurationsOperations +from ._operations import NetworkInterfaceLoadBalancersOperations +from ._operations import NetworkInterfaceTapConfigurationsOperations +from ._operations import NetworkProfilesOperations +from ._operations import NetworkSecurityGroupsOperations +from ._operations import SecurityRulesOperations +from ._operations import DefaultSecurityRulesOperations +from ._operations import NetworkVirtualAppliancesOperations +from ._operations import VirtualApplianceSitesOperations +from ._operations import VirtualApplianceSkusOperations +from ._operations import InboundSecurityRuleOperations +from ._operations import NetworkWatchersOperations +from ._operations import PacketCapturesOperations +from ._operations import ConnectionMonitorsOperations +from ._operations import FlowLogsOperations +from ._operations import Operations +from ._operations import PrivateEndpointsOperations +from ._operations import AvailablePrivateEndpointTypesOperations +from ._operations import PrivateDnsZoneGroupsOperations +from ._operations import PrivateLinkServicesOperations +from ._operations import PublicIPPrefixesOperations +from ._operations import RouteFiltersOperations +from ._operations import RouteFilterRulesOperations +from ._operations import RouteTablesOperations +from ._operations import RoutesOperations +from ._operations import SecurityPartnerProvidersOperations +from ._operations import BgpServiceCommunitiesOperations +from ._operations import ServiceEndpointPoliciesOperations +from ._operations import ServiceEndpointPolicyDefinitionsOperations +from ._operations import ServiceTagsOperations +from ._operations import ServiceTagInformationOperations +from ._operations import UsagesOperations +from ._operations import VirtualNetworksOperations +from ._operations import SubnetsOperations +from ._operations import ResourceNavigationLinksOperations +from ._operations import ServiceAssociationLinksOperations +from ._operations import VirtualNetworkPeeringsOperations +from ._operations import VirtualNetworkGatewaysOperations +from ._operations import VirtualNetworkGatewayConnectionsOperations +from ._operations import LocalNetworkGatewaysOperations +from ._operations import VirtualNetworkGatewayNatRulesOperations +from ._operations import VirtualNetworkTapsOperations +from ._operations import VirtualRoutersOperations +from ._operations import VirtualRouterPeeringsOperations +from ._operations import VirtualWansOperations +from ._operations import VpnSitesOperations +from ._operations import VpnSiteLinksOperations +from ._operations import VpnSitesConfigurationOperations +from ._operations import VpnServerConfigurationsOperations +from ._operations import ConfigurationPolicyGroupsOperations +from ._operations import VirtualHubsOperations +from ._operations import HubVirtualNetworkConnectionsOperations +from ._operations import VpnGatewaysOperations +from ._operations import VpnLinkConnectionsOperations +from ._operations import VpnConnectionsOperations +from ._operations import VpnSiteLinkConnectionsOperations +from ._operations import NatRulesOperations +from ._operations import P2SVpnGatewaysOperations +from ._operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations +from ._operations import VirtualHubRouteTableV2SOperations +from ._operations import ExpressRouteGatewaysOperations +from ._operations import ExpressRouteConnectionsOperations +from ._operations import VirtualHubBgpConnectionOperations +from ._operations import VirtualHubBgpConnectionsOperations +from ._operations import VirtualHubIpConfigurationOperations +from ._operations import HubRouteTablesOperations +from ._operations import RoutingIntentOperations +from ._operations import WebApplicationFirewallPoliciesOperations + +__all__ = [ + 'ApplicationGatewaysOperations', + 'ApplicationGatewayPrivateLinkResourcesOperations', + 'ApplicationGatewayPrivateEndpointConnectionsOperations', + 'ApplicationSecurityGroupsOperations', + 'AvailableDelegationsOperations', + 'AvailableResourceGroupDelegationsOperations', + 'AvailableServiceAliasesOperations', + 'AzureFirewallsOperations', + 'AzureFirewallFqdnTagsOperations', + 'WebCategoriesOperations', + 'BastionHostsOperations', + 'NetworkManagementClientOperationsMixin', + 'NetworkInterfacesOperations', + 'PublicIPAddressesOperations', + 'CustomIPPrefixesOperations', + 'DdosCustomPoliciesOperations', + 'DdosProtectionPlansOperations', + 'DscpConfigurationOperations', + 'AvailableEndpointServicesOperations', + 'ExpressRouteCircuitAuthorizationsOperations', + 'ExpressRouteCircuitPeeringsOperations', + 'ExpressRouteCircuitConnectionsOperations', + 'PeerExpressRouteCircuitConnectionsOperations', + 'ExpressRouteCircuitsOperations', + 'ExpressRouteServiceProvidersOperations', + 'ExpressRouteCrossConnectionsOperations', + 'ExpressRouteCrossConnectionPeeringsOperations', + 'ExpressRoutePortsLocationsOperations', + 'ExpressRoutePortsOperations', + 'ExpressRouteLinksOperations', + 'ExpressRoutePortAuthorizationsOperations', + 'FirewallPoliciesOperations', + 'FirewallPolicyRuleCollectionGroupsOperations', + 'FirewallPolicyIdpsSignaturesOperations', + 'FirewallPolicyIdpsSignaturesOverridesOperations', + 'FirewallPolicyIdpsSignaturesFilterValuesOperations', + 'IpAllocationsOperations', + 'IpGroupsOperations', + 'LoadBalancersOperations', + 'LoadBalancerBackendAddressPoolsOperations', + 'LoadBalancerFrontendIPConfigurationsOperations', + 'InboundNatRulesOperations', + 'LoadBalancerLoadBalancingRulesOperations', + 'LoadBalancerOutboundRulesOperations', + 'LoadBalancerNetworkInterfacesOperations', + 'LoadBalancerProbesOperations', + 'NatGatewaysOperations', + 'NetworkInterfaceIPConfigurationsOperations', + 'NetworkInterfaceLoadBalancersOperations', + 'NetworkInterfaceTapConfigurationsOperations', + 'NetworkProfilesOperations', + 'NetworkSecurityGroupsOperations', + 'SecurityRulesOperations', + 'DefaultSecurityRulesOperations', + 'NetworkVirtualAppliancesOperations', + 'VirtualApplianceSitesOperations', + 'VirtualApplianceSkusOperations', + 'InboundSecurityRuleOperations', + 'NetworkWatchersOperations', + 'PacketCapturesOperations', + 'ConnectionMonitorsOperations', + 'FlowLogsOperations', + 'Operations', + 'PrivateEndpointsOperations', + 'AvailablePrivateEndpointTypesOperations', + 'PrivateDnsZoneGroupsOperations', + 'PrivateLinkServicesOperations', + 'PublicIPPrefixesOperations', + 'RouteFiltersOperations', + 'RouteFilterRulesOperations', + 'RouteTablesOperations', + 'RoutesOperations', + 'SecurityPartnerProvidersOperations', + 'BgpServiceCommunitiesOperations', + 'ServiceEndpointPoliciesOperations', + 'ServiceEndpointPolicyDefinitionsOperations', + 'ServiceTagsOperations', + 'ServiceTagInformationOperations', + 'UsagesOperations', + 'VirtualNetworksOperations', + 'SubnetsOperations', + 'ResourceNavigationLinksOperations', + 'ServiceAssociationLinksOperations', + 'VirtualNetworkPeeringsOperations', + 'VirtualNetworkGatewaysOperations', + 'VirtualNetworkGatewayConnectionsOperations', + 'LocalNetworkGatewaysOperations', + 'VirtualNetworkGatewayNatRulesOperations', + 'VirtualNetworkTapsOperations', + 'VirtualRoutersOperations', + 'VirtualRouterPeeringsOperations', + 'VirtualWansOperations', + 'VpnSitesOperations', + 'VpnSiteLinksOperations', + 'VpnSitesConfigurationOperations', + 'VpnServerConfigurationsOperations', + 'ConfigurationPolicyGroupsOperations', + 'VirtualHubsOperations', + 'HubVirtualNetworkConnectionsOperations', + 'VpnGatewaysOperations', + 'VpnLinkConnectionsOperations', + 'VpnConnectionsOperations', + 'VpnSiteLinkConnectionsOperations', + 'NatRulesOperations', + 'P2SVpnGatewaysOperations', + 'VpnServerConfigurationsAssociatedWithVirtualWanOperations', + 'VirtualHubRouteTableV2SOperations', + 'ExpressRouteGatewaysOperations', + 'ExpressRouteConnectionsOperations', + 'VirtualHubBgpConnectionOperations', + 'VirtualHubBgpConnectionsOperations', + 'VirtualHubIpConfigurationOperations', + 'HubRouteTablesOperations', + 'RoutingIntentOperations', + 'WebApplicationFirewallPoliciesOperations', +] diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/operations/_operations.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/operations/_operations.py new file mode 100644 index 00000000000..6b2abafe734 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/aio/operations/_operations.py @@ -0,0 +1,54505 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, List, Optional, TypeVar, Union + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models +from ..._vendor import _convert_request +from ...operations._operations import build_application_gateway_private_endpoint_connections_delete_request_initial, build_application_gateway_private_endpoint_connections_get_request, build_application_gateway_private_endpoint_connections_list_request, build_application_gateway_private_endpoint_connections_update_request_initial, build_application_gateway_private_link_resources_list_request, build_application_gateways_backend_health_on_demand_request_initial, build_application_gateways_backend_health_request_initial, build_application_gateways_create_or_update_request_initial, build_application_gateways_delete_request_initial, build_application_gateways_get_request, build_application_gateways_get_ssl_predefined_policy_request, build_application_gateways_list_all_request, build_application_gateways_list_available_request_headers_request, build_application_gateways_list_available_response_headers_request, build_application_gateways_list_available_server_variables_request, build_application_gateways_list_available_ssl_options_request, build_application_gateways_list_available_ssl_predefined_policies_request, build_application_gateways_list_available_waf_rule_sets_request, build_application_gateways_list_request, build_application_gateways_start_request_initial, build_application_gateways_stop_request_initial, build_application_gateways_update_tags_request, build_application_security_groups_create_or_update_request_initial, build_application_security_groups_delete_request_initial, build_application_security_groups_get_request, build_application_security_groups_list_all_request, build_application_security_groups_list_request, build_application_security_groups_update_tags_request, build_available_delegations_list_request, build_available_endpoint_services_list_request, build_available_private_endpoint_types_list_by_resource_group_request, build_available_private_endpoint_types_list_request, build_available_resource_group_delegations_list_request, build_available_service_aliases_list_by_resource_group_request, build_available_service_aliases_list_request, build_azure_firewall_fqdn_tags_list_all_request, build_azure_firewalls_create_or_update_request_initial, build_azure_firewalls_delete_request_initial, build_azure_firewalls_get_request, build_azure_firewalls_list_all_request, build_azure_firewalls_list_request, build_azure_firewalls_update_tags_request_initial, build_bastion_hosts_create_or_update_request_initial, build_bastion_hosts_delete_request_initial, build_bastion_hosts_get_request, build_bastion_hosts_list_by_resource_group_request, build_bastion_hosts_list_request, build_bastion_hosts_update_tags_request_initial, build_bgp_service_communities_list_request, build_check_dns_name_availability_request, build_configuration_policy_groups_create_or_update_request_initial, build_configuration_policy_groups_delete_request_initial, build_configuration_policy_groups_get_request, build_configuration_policy_groups_list_by_vpn_server_configuration_request, build_connection_monitors_create_or_update_request_initial, build_connection_monitors_delete_request_initial, build_connection_monitors_get_request, build_connection_monitors_list_request, build_connection_monitors_query_request_initial, build_connection_monitors_start_request_initial, build_connection_monitors_stop_request_initial, build_connection_monitors_update_tags_request, build_custom_ip_prefixes_create_or_update_request_initial, build_custom_ip_prefixes_delete_request_initial, build_custom_ip_prefixes_get_request, build_custom_ip_prefixes_list_all_request, build_custom_ip_prefixes_list_request, build_custom_ip_prefixes_update_tags_request, build_ddos_custom_policies_create_or_update_request_initial, build_ddos_custom_policies_delete_request_initial, build_ddos_custom_policies_get_request, build_ddos_custom_policies_update_tags_request, build_ddos_protection_plans_create_or_update_request_initial, build_ddos_protection_plans_delete_request_initial, build_ddos_protection_plans_get_request, build_ddos_protection_plans_list_by_resource_group_request, build_ddos_protection_plans_list_request, build_ddos_protection_plans_update_tags_request, build_default_security_rules_get_request, build_default_security_rules_list_request, build_delete_bastion_shareable_link_request_initial, build_disconnect_active_sessions_request, build_dscp_configuration_create_or_update_request_initial, build_dscp_configuration_delete_request_initial, build_dscp_configuration_get_request, build_dscp_configuration_list_all_request, build_dscp_configuration_list_request, build_express_route_circuit_authorizations_create_or_update_request_initial, build_express_route_circuit_authorizations_delete_request_initial, build_express_route_circuit_authorizations_get_request, build_express_route_circuit_authorizations_list_request, build_express_route_circuit_connections_create_or_update_request_initial, build_express_route_circuit_connections_delete_request_initial, build_express_route_circuit_connections_get_request, build_express_route_circuit_connections_list_request, build_express_route_circuit_peerings_create_or_update_request_initial, build_express_route_circuit_peerings_delete_request_initial, build_express_route_circuit_peerings_get_request, build_express_route_circuit_peerings_list_request, build_express_route_circuits_create_or_update_request_initial, build_express_route_circuits_delete_request_initial, build_express_route_circuits_get_peering_stats_request, build_express_route_circuits_get_request, build_express_route_circuits_get_stats_request, build_express_route_circuits_list_all_request, build_express_route_circuits_list_arp_table_request_initial, build_express_route_circuits_list_request, build_express_route_circuits_list_routes_table_request_initial, build_express_route_circuits_list_routes_table_summary_request_initial, build_express_route_circuits_update_tags_request, build_express_route_connections_create_or_update_request_initial, build_express_route_connections_delete_request_initial, build_express_route_connections_get_request, build_express_route_connections_list_request, build_express_route_cross_connection_peerings_create_or_update_request_initial, build_express_route_cross_connection_peerings_delete_request_initial, build_express_route_cross_connection_peerings_get_request, build_express_route_cross_connection_peerings_list_request, build_express_route_cross_connections_create_or_update_request_initial, build_express_route_cross_connections_get_request, build_express_route_cross_connections_list_arp_table_request_initial, build_express_route_cross_connections_list_by_resource_group_request, build_express_route_cross_connections_list_request, build_express_route_cross_connections_list_routes_table_request_initial, build_express_route_cross_connections_list_routes_table_summary_request_initial, build_express_route_cross_connections_update_tags_request, build_express_route_gateways_create_or_update_request_initial, build_express_route_gateways_delete_request_initial, build_express_route_gateways_get_request, build_express_route_gateways_list_by_resource_group_request, build_express_route_gateways_list_by_subscription_request, build_express_route_gateways_update_tags_request_initial, build_express_route_links_get_request, build_express_route_links_list_request, build_express_route_port_authorizations_create_or_update_request_initial, build_express_route_port_authorizations_delete_request_initial, build_express_route_port_authorizations_get_request, build_express_route_port_authorizations_list_request, build_express_route_ports_create_or_update_request_initial, build_express_route_ports_delete_request_initial, build_express_route_ports_generate_loa_request, build_express_route_ports_get_request, build_express_route_ports_list_by_resource_group_request, build_express_route_ports_list_request, build_express_route_ports_locations_get_request, build_express_route_ports_locations_list_request, build_express_route_ports_update_tags_request, build_express_route_service_providers_list_request, build_firewall_policies_create_or_update_request_initial, build_firewall_policies_delete_request_initial, build_firewall_policies_get_request, build_firewall_policies_list_all_request, build_firewall_policies_list_request, build_firewall_policies_update_tags_request, build_firewall_policy_idps_signatures_filter_values_list_request, build_firewall_policy_idps_signatures_list_request, build_firewall_policy_idps_signatures_overrides_get_request, build_firewall_policy_idps_signatures_overrides_list_request, build_firewall_policy_idps_signatures_overrides_patch_request, build_firewall_policy_idps_signatures_overrides_put_request, build_firewall_policy_rule_collection_groups_create_or_update_request_initial, build_firewall_policy_rule_collection_groups_delete_request_initial, build_firewall_policy_rule_collection_groups_get_request, build_firewall_policy_rule_collection_groups_list_request, build_flow_logs_create_or_update_request_initial, build_flow_logs_delete_request_initial, build_flow_logs_get_request, build_flow_logs_list_request, build_flow_logs_update_tags_request, build_generatevirtualwanvpnserverconfigurationvpnprofile_request_initial, build_get_active_sessions_request_initial, build_get_bastion_shareable_link_request, build_hub_route_tables_create_or_update_request_initial, build_hub_route_tables_delete_request_initial, build_hub_route_tables_get_request, build_hub_route_tables_list_request, build_hub_virtual_network_connections_create_or_update_request_initial, build_hub_virtual_network_connections_delete_request_initial, build_hub_virtual_network_connections_get_request, build_hub_virtual_network_connections_list_request, build_inbound_nat_rules_create_or_update_request_initial, build_inbound_nat_rules_delete_request_initial, build_inbound_nat_rules_get_request, build_inbound_nat_rules_list_request, build_inbound_security_rule_create_or_update_request_initial, build_ip_allocations_create_or_update_request_initial, build_ip_allocations_delete_request_initial, build_ip_allocations_get_request, build_ip_allocations_list_by_resource_group_request, build_ip_allocations_list_request, build_ip_allocations_update_tags_request, build_ip_groups_create_or_update_request_initial, build_ip_groups_delete_request_initial, build_ip_groups_get_request, build_ip_groups_list_by_resource_group_request, build_ip_groups_list_request, build_ip_groups_update_groups_request, build_load_balancer_backend_address_pools_create_or_update_request_initial, build_load_balancer_backend_address_pools_delete_request_initial, build_load_balancer_backend_address_pools_get_request, build_load_balancer_backend_address_pools_list_request, build_load_balancer_frontend_ip_configurations_get_request, build_load_balancer_frontend_ip_configurations_list_request, build_load_balancer_load_balancing_rules_get_request, build_load_balancer_load_balancing_rules_list_request, build_load_balancer_network_interfaces_list_request, build_load_balancer_outbound_rules_get_request, build_load_balancer_outbound_rules_list_request, build_load_balancer_probes_get_request, build_load_balancer_probes_list_request, build_load_balancers_create_or_update_request_initial, build_load_balancers_delete_request_initial, build_load_balancers_get_request, build_load_balancers_list_all_request, build_load_balancers_list_inbound_nat_rule_port_mappings_request_initial, build_load_balancers_list_request, build_load_balancers_swap_public_ip_addresses_request_initial, build_load_balancers_update_tags_request, build_local_network_gateways_create_or_update_request_initial, build_local_network_gateways_delete_request_initial, build_local_network_gateways_get_request, build_local_network_gateways_list_request, build_local_network_gateways_update_tags_request, build_nat_gateways_create_or_update_request_initial, build_nat_gateways_delete_request_initial, build_nat_gateways_get_request, build_nat_gateways_list_all_request, build_nat_gateways_list_request, build_nat_gateways_update_tags_request, build_nat_rules_create_or_update_request_initial, build_nat_rules_delete_request_initial, build_nat_rules_get_request, build_nat_rules_list_by_vpn_gateway_request, build_network_interface_ip_configurations_get_request, build_network_interface_ip_configurations_list_request, build_network_interface_load_balancers_list_request, build_network_interface_tap_configurations_create_or_update_request_initial, build_network_interface_tap_configurations_delete_request_initial, build_network_interface_tap_configurations_get_request, build_network_interface_tap_configurations_list_request, build_network_interfaces_create_or_update_request_initial, build_network_interfaces_delete_request_initial, build_network_interfaces_get_cloud_service_network_interface_request, build_network_interfaces_get_effective_route_table_request_initial, build_network_interfaces_get_request, build_network_interfaces_get_virtual_machine_scale_set_ip_configuration_request, build_network_interfaces_get_virtual_machine_scale_set_network_interface_request, build_network_interfaces_list_all_request, build_network_interfaces_list_cloud_service_network_interfaces_request, build_network_interfaces_list_cloud_service_role_instance_network_interfaces_request, build_network_interfaces_list_effective_network_security_groups_request_initial, build_network_interfaces_list_request, build_network_interfaces_list_virtual_machine_scale_set_ip_configurations_request, build_network_interfaces_list_virtual_machine_scale_set_network_interfaces_request, build_network_interfaces_list_virtual_machine_scale_set_vm_network_interfaces_request, build_network_interfaces_update_tags_request, build_network_profiles_create_or_update_request, build_network_profiles_delete_request_initial, build_network_profiles_get_request, build_network_profiles_list_all_request, build_network_profiles_list_request, build_network_profiles_update_tags_request, build_network_security_groups_create_or_update_request_initial, build_network_security_groups_delete_request_initial, build_network_security_groups_get_request, build_network_security_groups_list_all_request, build_network_security_groups_list_request, build_network_security_groups_update_tags_request, build_network_virtual_appliances_create_or_update_request_initial, build_network_virtual_appliances_delete_request_initial, build_network_virtual_appliances_get_request, build_network_virtual_appliances_list_by_resource_group_request, build_network_virtual_appliances_list_request, build_network_virtual_appliances_update_tags_request, build_network_watchers_check_connectivity_request_initial, build_network_watchers_create_or_update_request, build_network_watchers_delete_request_initial, build_network_watchers_get_azure_reachability_report_request_initial, build_network_watchers_get_flow_log_status_request_initial, build_network_watchers_get_network_configuration_diagnostic_request_initial, build_network_watchers_get_next_hop_request_initial, build_network_watchers_get_request, build_network_watchers_get_topology_request, build_network_watchers_get_troubleshooting_request_initial, build_network_watchers_get_troubleshooting_result_request_initial, build_network_watchers_get_vm_security_rules_request_initial, build_network_watchers_list_all_request, build_network_watchers_list_available_providers_request_initial, build_network_watchers_list_request, build_network_watchers_set_flow_log_configuration_request_initial, build_network_watchers_update_tags_request, build_network_watchers_verify_ip_flow_request_initial, build_operations_list_request, build_p2_svpn_gateways_create_or_update_request_initial, build_p2_svpn_gateways_delete_request_initial, build_p2_svpn_gateways_disconnect_p2_s_vpn_connections_request_initial, build_p2_svpn_gateways_generate_vpn_profile_request_initial, build_p2_svpn_gateways_get_p2_s_vpn_connection_health_detailed_request_initial, build_p2_svpn_gateways_get_p2_s_vpn_connection_health_request_initial, build_p2_svpn_gateways_get_request, build_p2_svpn_gateways_list_by_resource_group_request, build_p2_svpn_gateways_list_request, build_p2_svpn_gateways_reset_request_initial, build_p2_svpn_gateways_update_tags_request_initial, build_packet_captures_create_request_initial, build_packet_captures_delete_request_initial, build_packet_captures_get_request, build_packet_captures_get_status_request_initial, build_packet_captures_list_request, build_packet_captures_stop_request_initial, build_peer_express_route_circuit_connections_get_request, build_peer_express_route_circuit_connections_list_request, build_private_dns_zone_groups_create_or_update_request_initial, build_private_dns_zone_groups_delete_request_initial, build_private_dns_zone_groups_get_request, build_private_dns_zone_groups_list_request, build_private_endpoints_create_or_update_request_initial, build_private_endpoints_delete_request_initial, build_private_endpoints_get_request, build_private_endpoints_list_by_subscription_request, build_private_endpoints_list_request, build_private_link_services_check_private_link_service_visibility_by_resource_group_request_initial, build_private_link_services_check_private_link_service_visibility_request_initial, build_private_link_services_create_or_update_request_initial, build_private_link_services_delete_private_endpoint_connection_request_initial, build_private_link_services_delete_request_initial, build_private_link_services_get_private_endpoint_connection_request, build_private_link_services_get_request, build_private_link_services_list_auto_approved_private_link_services_by_resource_group_request, build_private_link_services_list_auto_approved_private_link_services_request, build_private_link_services_list_by_subscription_request, build_private_link_services_list_private_endpoint_connections_request, build_private_link_services_list_request, build_private_link_services_update_private_endpoint_connection_request, build_public_ip_addresses_create_or_update_request_initial, build_public_ip_addresses_delete_request_initial, build_public_ip_addresses_get_cloud_service_public_ip_address_request, build_public_ip_addresses_get_request, build_public_ip_addresses_get_virtual_machine_scale_set_public_ip_address_request, build_public_ip_addresses_list_all_request, build_public_ip_addresses_list_cloud_service_public_ip_addresses_request, build_public_ip_addresses_list_cloud_service_role_instance_public_ip_addresses_request, build_public_ip_addresses_list_request, build_public_ip_addresses_list_virtual_machine_scale_set_public_ip_addresses_request, build_public_ip_addresses_list_virtual_machine_scale_set_vm_public_ip_addresses_request, build_public_ip_addresses_update_tags_request, build_public_ip_prefixes_create_or_update_request_initial, build_public_ip_prefixes_delete_request_initial, build_public_ip_prefixes_get_request, build_public_ip_prefixes_list_all_request, build_public_ip_prefixes_list_request, build_public_ip_prefixes_update_tags_request, build_put_bastion_shareable_link_request_initial, build_resource_navigation_links_list_request, build_route_filter_rules_create_or_update_request_initial, build_route_filter_rules_delete_request_initial, build_route_filter_rules_get_request, build_route_filter_rules_list_by_route_filter_request, build_route_filters_create_or_update_request_initial, build_route_filters_delete_request_initial, build_route_filters_get_request, build_route_filters_list_by_resource_group_request, build_route_filters_list_request, build_route_filters_update_tags_request, build_route_tables_create_or_update_request_initial, build_route_tables_delete_request_initial, build_route_tables_get_request, build_route_tables_list_all_request, build_route_tables_list_request, build_route_tables_update_tags_request, build_routes_create_or_update_request_initial, build_routes_delete_request_initial, build_routes_get_request, build_routes_list_request, build_routing_intent_create_or_update_request_initial, build_routing_intent_delete_request_initial, build_routing_intent_get_request, build_routing_intent_list_request, build_security_partner_providers_create_or_update_request_initial, build_security_partner_providers_delete_request_initial, build_security_partner_providers_get_request, build_security_partner_providers_list_by_resource_group_request, build_security_partner_providers_list_request, build_security_partner_providers_update_tags_request, build_security_rules_create_or_update_request_initial, build_security_rules_delete_request_initial, build_security_rules_get_request, build_security_rules_list_request, build_service_association_links_list_request, build_service_endpoint_policies_create_or_update_request_initial, build_service_endpoint_policies_delete_request_initial, build_service_endpoint_policies_get_request, build_service_endpoint_policies_list_by_resource_group_request, build_service_endpoint_policies_list_request, build_service_endpoint_policies_update_tags_request, build_service_endpoint_policy_definitions_create_or_update_request_initial, build_service_endpoint_policy_definitions_delete_request_initial, build_service_endpoint_policy_definitions_get_request, build_service_endpoint_policy_definitions_list_by_resource_group_request, build_service_tag_information_list_request, build_service_tags_list_request, build_subnets_create_or_update_request_initial, build_subnets_delete_request_initial, build_subnets_get_request, build_subnets_list_request, build_subnets_prepare_network_policies_request_initial, build_subnets_unprepare_network_policies_request_initial, build_supported_security_providers_request, build_usages_list_request, build_virtual_appliance_sites_create_or_update_request_initial, build_virtual_appliance_sites_delete_request_initial, build_virtual_appliance_sites_get_request, build_virtual_appliance_sites_list_request, build_virtual_appliance_skus_get_request, build_virtual_appliance_skus_list_request, build_virtual_hub_bgp_connection_create_or_update_request_initial, build_virtual_hub_bgp_connection_delete_request_initial, build_virtual_hub_bgp_connection_get_request, build_virtual_hub_bgp_connections_list_advertised_routes_request_initial, build_virtual_hub_bgp_connections_list_learned_routes_request_initial, build_virtual_hub_bgp_connections_list_request, build_virtual_hub_ip_configuration_create_or_update_request_initial, build_virtual_hub_ip_configuration_delete_request_initial, build_virtual_hub_ip_configuration_get_request, build_virtual_hub_ip_configuration_list_request, build_virtual_hub_route_table_v2_s_create_or_update_request_initial, build_virtual_hub_route_table_v2_s_delete_request_initial, build_virtual_hub_route_table_v2_s_get_request, build_virtual_hub_route_table_v2_s_list_request, build_virtual_hubs_create_or_update_request_initial, build_virtual_hubs_delete_request_initial, build_virtual_hubs_get_effective_virtual_hub_routes_request_initial, build_virtual_hubs_get_request, build_virtual_hubs_list_by_resource_group_request, build_virtual_hubs_list_request, build_virtual_hubs_update_tags_request, build_virtual_network_gateway_connections_create_or_update_request_initial, build_virtual_network_gateway_connections_delete_request_initial, build_virtual_network_gateway_connections_get_ike_sas_request_initial, build_virtual_network_gateway_connections_get_request, build_virtual_network_gateway_connections_get_shared_key_request, build_virtual_network_gateway_connections_list_request, build_virtual_network_gateway_connections_reset_connection_request_initial, build_virtual_network_gateway_connections_reset_shared_key_request_initial, build_virtual_network_gateway_connections_set_shared_key_request_initial, build_virtual_network_gateway_connections_start_packet_capture_request_initial, build_virtual_network_gateway_connections_stop_packet_capture_request_initial, build_virtual_network_gateway_connections_update_tags_request_initial, build_virtual_network_gateway_nat_rules_create_or_update_request_initial, build_virtual_network_gateway_nat_rules_delete_request_initial, build_virtual_network_gateway_nat_rules_get_request, build_virtual_network_gateway_nat_rules_list_by_virtual_network_gateway_request, build_virtual_network_gateways_create_or_update_request_initial, build_virtual_network_gateways_delete_request_initial, build_virtual_network_gateways_disconnect_virtual_network_gateway_vpn_connections_request_initial, build_virtual_network_gateways_generate_vpn_profile_request_initial, build_virtual_network_gateways_generatevpnclientpackage_request_initial, build_virtual_network_gateways_get_advertised_routes_request_initial, build_virtual_network_gateways_get_bgp_peer_status_request_initial, build_virtual_network_gateways_get_learned_routes_request_initial, build_virtual_network_gateways_get_request, build_virtual_network_gateways_get_vpn_profile_package_url_request_initial, build_virtual_network_gateways_get_vpnclient_connection_health_request_initial, build_virtual_network_gateways_get_vpnclient_ipsec_parameters_request_initial, build_virtual_network_gateways_list_connections_request, build_virtual_network_gateways_list_request, build_virtual_network_gateways_reset_request_initial, build_virtual_network_gateways_reset_vpn_client_shared_key_request_initial, build_virtual_network_gateways_set_vpnclient_ipsec_parameters_request_initial, build_virtual_network_gateways_start_packet_capture_request_initial, build_virtual_network_gateways_stop_packet_capture_request_initial, build_virtual_network_gateways_supported_vpn_devices_request, build_virtual_network_gateways_update_tags_request_initial, build_virtual_network_gateways_vpn_device_configuration_script_request, build_virtual_network_peerings_create_or_update_request_initial, build_virtual_network_peerings_delete_request_initial, build_virtual_network_peerings_get_request, build_virtual_network_peerings_list_request, build_virtual_network_taps_create_or_update_request_initial, build_virtual_network_taps_delete_request_initial, build_virtual_network_taps_get_request, build_virtual_network_taps_list_all_request, build_virtual_network_taps_list_by_resource_group_request, build_virtual_network_taps_update_tags_request, build_virtual_networks_check_ip_address_availability_request, build_virtual_networks_create_or_update_request_initial, build_virtual_networks_delete_request_initial, build_virtual_networks_get_request, build_virtual_networks_list_all_request, build_virtual_networks_list_request, build_virtual_networks_list_usage_request, build_virtual_networks_update_tags_request, build_virtual_router_peerings_create_or_update_request_initial, build_virtual_router_peerings_delete_request_initial, build_virtual_router_peerings_get_request, build_virtual_router_peerings_list_request, build_virtual_routers_create_or_update_request_initial, build_virtual_routers_delete_request_initial, build_virtual_routers_get_request, build_virtual_routers_list_by_resource_group_request, build_virtual_routers_list_request, build_virtual_wans_create_or_update_request_initial, build_virtual_wans_delete_request_initial, build_virtual_wans_get_request, build_virtual_wans_list_by_resource_group_request, build_virtual_wans_list_request, build_virtual_wans_update_tags_request, build_vpn_connections_create_or_update_request_initial, build_vpn_connections_delete_request_initial, build_vpn_connections_get_request, build_vpn_connections_list_by_vpn_gateway_request, build_vpn_connections_start_packet_capture_request_initial, build_vpn_connections_stop_packet_capture_request_initial, build_vpn_gateways_create_or_update_request_initial, build_vpn_gateways_delete_request_initial, build_vpn_gateways_get_request, build_vpn_gateways_list_by_resource_group_request, build_vpn_gateways_list_request, build_vpn_gateways_reset_request_initial, build_vpn_gateways_start_packet_capture_request_initial, build_vpn_gateways_stop_packet_capture_request_initial, build_vpn_gateways_update_tags_request_initial, build_vpn_link_connections_get_ike_sas_request_initial, build_vpn_link_connections_list_by_vpn_connection_request, build_vpn_link_connections_reset_connection_request_initial, build_vpn_server_configurations_associated_with_virtual_wan_list_request_initial, build_vpn_server_configurations_create_or_update_request_initial, build_vpn_server_configurations_delete_request_initial, build_vpn_server_configurations_get_request, build_vpn_server_configurations_list_by_resource_group_request, build_vpn_server_configurations_list_request, build_vpn_server_configurations_update_tags_request, build_vpn_site_link_connections_get_request, build_vpn_site_links_get_request, build_vpn_site_links_list_by_vpn_site_request, build_vpn_sites_configuration_download_request_initial, build_vpn_sites_create_or_update_request_initial, build_vpn_sites_delete_request_initial, build_vpn_sites_get_request, build_vpn_sites_list_by_resource_group_request, build_vpn_sites_list_request, build_vpn_sites_update_tags_request, build_web_application_firewall_policies_create_or_update_request, build_web_application_firewall_policies_delete_request_initial, build_web_application_firewall_policies_get_request, build_web_application_firewall_policies_list_all_request, build_web_application_firewall_policies_list_request, build_web_categories_get_request, build_web_categories_list_by_subscription_request +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class ApplicationGatewaysOperations: # pylint: disable=too-many-public-methods + """ApplicationGatewaysOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_delete_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> "_models.ApplicationGateway": + """Gets the specified application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_get_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + application_gateway_name: str, + parameters: "_models.ApplicationGateway", + **kwargs: Any + ) -> "_models.ApplicationGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ApplicationGateway') + + request = build_application_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + application_gateway_name: str, + parameters: "_models.ApplicationGateway", + **kwargs: Any + ) -> AsyncLROPoller["_models.ApplicationGateway"]: + """Creates or updates the specified application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param parameters: Parameters supplied to the create or update application gateway operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ApplicationGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ApplicationGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + application_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ApplicationGateway": + """Updates the specified application gateway tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param parameters: Parameters supplied to update application gateway tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_application_gateways_update_tags_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ApplicationGatewayListResult"]: + """Lists all application gateways in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ApplicationGatewayListResult"]: + """Gets all the application gateways in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateways_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateways_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGateways"} # type: ignore + + async def _start_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_start_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._start_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _start_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/start"} # type: ignore + + + @distributed_trace_async + async def begin_start( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Starts the specified application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._start_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/start"} # type: ignore + + async def _stop_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_stop_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._stop_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _stop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/stop"} # type: ignore + + + @distributed_trace_async + async def begin_stop( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Stops the specified application gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._stop_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/stop"} # type: ignore + + async def _backend_health_initial( + self, + resource_group_name: str, + application_gateway_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> Optional["_models.ApplicationGatewayBackendHealth"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ApplicationGatewayBackendHealth"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_backend_health_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self._backend_health_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ApplicationGatewayBackendHealth', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _backend_health_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/backendhealth"} # type: ignore + + + @distributed_trace_async + async def begin_backend_health( + self, + resource_group_name: str, + application_gateway_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> AsyncLROPoller["_models.ApplicationGatewayBackendHealth"]: + """Gets the backend health of the specified application gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param expand: Expands BackendAddressPool and BackendHttpSettings referenced in backend health. + Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ApplicationGatewayBackendHealth or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealth] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayBackendHealth"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._backend_health_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + expand=expand, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationGatewayBackendHealth', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_backend_health.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/backendhealth"} # type: ignore + + async def _backend_health_on_demand_initial( + self, + resource_group_name: str, + application_gateway_name: str, + probe_request: "_models.ApplicationGatewayOnDemandProbe", + expand: Optional[str] = None, + **kwargs: Any + ) -> Optional["_models.ApplicationGatewayBackendHealthOnDemand"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ApplicationGatewayBackendHealthOnDemand"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(probe_request, 'ApplicationGatewayOnDemandProbe') + + request = build_application_gateways_backend_health_on_demand_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + expand=expand, + template_url=self._backend_health_on_demand_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ApplicationGatewayBackendHealthOnDemand', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _backend_health_on_demand_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/getBackendHealthOnDemand"} # type: ignore + + + @distributed_trace_async + async def begin_backend_health_on_demand( + self, + resource_group_name: str, + application_gateway_name: str, + probe_request: "_models.ApplicationGatewayOnDemandProbe", + expand: Optional[str] = None, + **kwargs: Any + ) -> AsyncLROPoller["_models.ApplicationGatewayBackendHealthOnDemand"]: + """Gets the backend health for given combination of backend pool and http setting of the specified + application gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param probe_request: Request body for on-demand test probe operation. + :type probe_request: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayOnDemandProbe + :param expand: Expands BackendAddressPool and BackendHttpSettings referenced in backend health. + Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + ApplicationGatewayBackendHealthOnDemand or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthOnDemand] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayBackendHealthOnDemand"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._backend_health_on_demand_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + probe_request=probe_request, + expand=expand, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationGatewayBackendHealthOnDemand', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_backend_health_on_demand.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/getBackendHealthOnDemand"} # type: ignore + + @distributed_trace_async + async def list_available_server_variables( + self, + **kwargs: Any + ) -> List[str]: + """Lists all available server variables. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: list of str, or the result of cls(response) + :rtype: list[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[List[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_server_variables_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_server_variables.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('[str]', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_server_variables.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableServerVariables"} # type: ignore + + + @distributed_trace_async + async def list_available_request_headers( + self, + **kwargs: Any + ) -> List[str]: + """Lists all available request headers. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: list of str, or the result of cls(response) + :rtype: list[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[List[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_request_headers_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_request_headers.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('[str]', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_request_headers.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableRequestHeaders"} # type: ignore + + + @distributed_trace_async + async def list_available_response_headers( + self, + **kwargs: Any + ) -> List[str]: + """Lists all available response headers. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: list of str, or the result of cls(response) + :rtype: list[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[List[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_response_headers_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_response_headers.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('[str]', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_response_headers.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableResponseHeaders"} # type: ignore + + + @distributed_trace_async + async def list_available_waf_rule_sets( + self, + **kwargs: Any + ) -> "_models.ApplicationGatewayAvailableWafRuleSetsResult": + """Lists all available web application firewall rule sets. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGatewayAvailableWafRuleSetsResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAvailableWafRuleSetsResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayAvailableWafRuleSetsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_waf_rule_sets_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_waf_rule_sets.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGatewayAvailableWafRuleSetsResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_waf_rule_sets.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets"} # type: ignore + + + @distributed_trace_async + async def list_available_ssl_options( + self, + **kwargs: Any + ) -> "_models.ApplicationGatewayAvailableSslOptions": + """Lists available Ssl options for configuring Ssl policy. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGatewayAvailableSslOptions, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAvailableSslOptions + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayAvailableSslOptions"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_ssl_options_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_ssl_options.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGatewayAvailableSslOptions', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_ssl_options.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default"} # type: ignore + + + @distributed_trace + def list_available_ssl_predefined_policies( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ApplicationGatewayAvailableSslPredefinedPolicies"]: + """Lists all SSL predefined policies for configuring Ssl policy. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationGatewayAvailableSslPredefinedPolicies + or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAvailableSslPredefinedPolicies] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayAvailableSslPredefinedPolicies"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateways_list_available_ssl_predefined_policies_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_ssl_predefined_policies.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateways_list_available_ssl_predefined_policies_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayAvailableSslPredefinedPolicies", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_available_ssl_predefined_policies.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies"} # type: ignore + + @distributed_trace_async + async def get_ssl_predefined_policy( + self, + predefined_policy_name: str, + **kwargs: Any + ) -> "_models.ApplicationGatewaySslPredefinedPolicy": + """Gets Ssl predefined policy with the specified policy name. + + :param predefined_policy_name: Name of Ssl predefined policy. + :type predefined_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGatewaySslPredefinedPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPredefinedPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewaySslPredefinedPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_get_ssl_predefined_policy_request( + subscription_id=self._config.subscription_id, + predefined_policy_name=predefined_policy_name, + api_version=api_version, + template_url=self.get_ssl_predefined_policy.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGatewaySslPredefinedPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_ssl_predefined_policy.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies/{predefinedPolicyName}"} # type: ignore + +class ApplicationGatewayPrivateLinkResourcesOperations: + """ApplicationGatewayPrivateLinkResourcesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ApplicationGatewayPrivateLinkResourceListResult"]: + """Lists all private link resources on an application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationGatewayPrivateLinkResourceListResult or + the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateLinkResourceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayPrivateLinkResourceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateway_private_link_resources_list_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateway_private_link_resources_list_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayPrivateLinkResourceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateLinkResources"} # type: ignore +class ApplicationGatewayPrivateEndpointConnectionsOperations: + """ApplicationGatewayPrivateEndpointConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateway_private_endpoint_connections_delete_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified private endpoint connection on application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param connection_name: The name of the application gateway private endpoint connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + async def _update_initial( + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + parameters: "_models.ApplicationGatewayPrivateEndpointConnection", + **kwargs: Any + ) -> Optional["_models.ApplicationGatewayPrivateEndpointConnection"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ApplicationGatewayPrivateEndpointConnection"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ApplicationGatewayPrivateEndpointConnection') + + request = build_application_gateway_private_endpoint_connections_update_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ApplicationGatewayPrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_update( + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + parameters: "_models.ApplicationGatewayPrivateEndpointConnection", + **kwargs: Any + ) -> AsyncLROPoller["_models.ApplicationGatewayPrivateEndpointConnection"]: + """Updates the specified private endpoint connection on application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param connection_name: The name of the application gateway private endpoint connection. + :type connection_name: str + :param parameters: Parameters supplied to update application gateway private endpoint + connection operation. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + ApplicationGatewayPrivateEndpointConnection or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayPrivateEndpointConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationGatewayPrivateEndpointConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.ApplicationGatewayPrivateEndpointConnection": + """Gets the specified private endpoint connection on application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param connection_name: The name of the application gateway private endpoint connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGatewayPrivateEndpointConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayPrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateway_private_endpoint_connections_get_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGatewayPrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ApplicationGatewayPrivateEndpointConnectionListResult"]: + """Lists all private endpoint connections on an application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either + ApplicationGatewayPrivateEndpointConnectionListResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayPrivateEndpointConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateway_private_endpoint_connections_list_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateway_private_endpoint_connections_list_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayPrivateEndpointConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections"} # type: ignore +class ApplicationSecurityGroupsOperations: + """ApplicationSecurityGroupsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_security_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_security_groups_delete_request_initial( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_security_group_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified application security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_security_group_name: The name of the application security group. + :type application_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + application_security_group_name: str, + **kwargs: Any + ) -> "_models.ApplicationSecurityGroup": + """Gets information about the specified application security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_security_group_name: The name of the application security group. + :type application_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationSecurityGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_security_groups_get_request( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + application_security_group_name: str, + parameters: "_models.ApplicationSecurityGroup", + **kwargs: Any + ) -> "_models.ApplicationSecurityGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ApplicationSecurityGroup') + + request = build_application_security_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + application_security_group_name: str, + parameters: "_models.ApplicationSecurityGroup", + **kwargs: Any + ) -> AsyncLROPoller["_models.ApplicationSecurityGroup"]: + """Creates or updates an application security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_security_group_name: The name of the application security group. + :type application_security_group_name: str + :param parameters: Parameters supplied to the create or update ApplicationSecurityGroup + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ApplicationSecurityGroup or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + application_security_group_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ApplicationSecurityGroup": + """Updates an application security group's tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_security_group_name: The name of the application security group. + :type application_security_group_name: str + :param parameters: Parameters supplied to update application security group tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationSecurityGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_application_security_groups_update_tags_request( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ApplicationSecurityGroupListResult"]: + """Gets all application security groups in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationSecurityGroupListResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_security_groups_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_security_groups_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationSecurityGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationSecurityGroups"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ApplicationSecurityGroupListResult"]: + """Gets all the application security groups in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationSecurityGroupListResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_security_groups_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_security_groups_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationSecurityGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups"} # type: ignore +class AvailableDelegationsOperations: + """AvailableDelegationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> AsyncIterable["_models.AvailableDelegationsResult"]: + """Gets all of the available subnet delegations for this subscription in this region. + + :param location: The location of the subnet. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailableDelegationsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailableDelegationsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableDelegationsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_delegations_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_delegations_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AvailableDelegationsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availableDelegations"} # type: ignore +class AvailableResourceGroupDelegationsOperations: + """AvailableResourceGroupDelegationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.AvailableDelegationsResult"]: + """Gets all of the available subnet delegations for this resource group in this region. + + :param location: The location of the domain name. + :type location: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailableDelegationsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailableDelegationsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableDelegationsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_resource_group_delegations_list_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_resource_group_delegations_list_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AvailableDelegationsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availableDelegations"} # type: ignore +class AvailableServiceAliasesOperations: + """AvailableServiceAliasesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> AsyncIterable["_models.AvailableServiceAliasesResult"]: + """Gets all available service aliases for this subscription in this region. + + :param location: The location. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailableServiceAliasesResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailableServiceAliasesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableServiceAliasesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_service_aliases_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_service_aliases_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AvailableServiceAliasesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availableServiceAliases"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + location: str, + **kwargs: Any + ) -> AsyncIterable["_models.AvailableServiceAliasesResult"]: + """Gets all available service aliases for this resource group in this region. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param location: The location. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailableServiceAliasesResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailableServiceAliasesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableServiceAliasesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_service_aliases_list_by_resource_group_request( + resource_group_name=resource_group_name, + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_service_aliases_list_by_resource_group_request( + resource_group_name=resource_group_name, + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AvailableServiceAliasesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availableServiceAliases"} # type: ignore +class AzureFirewallsOperations: + """AzureFirewallsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + azure_firewall_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_azure_firewalls_delete_request_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + azure_firewall_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified Azure Firewall. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param azure_firewall_name: The name of the Azure Firewall. + :type azure_firewall_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + azure_firewall_name: str, + **kwargs: Any + ) -> "_models.AzureFirewall": + """Gets the specified Azure Firewall. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param azure_firewall_name: The name of the Azure Firewall. + :type azure_firewall_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AzureFirewall, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.AzureFirewall + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewall"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_azure_firewalls_get_request( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('AzureFirewall', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + azure_firewall_name: str, + parameters: "_models.AzureFirewall", + **kwargs: Any + ) -> "_models.AzureFirewall": + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewall"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'AzureFirewall') + + request = build_azure_firewalls_create_or_update_request_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('AzureFirewall', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('AzureFirewall', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + azure_firewall_name: str, + parameters: "_models.AzureFirewall", + **kwargs: Any + ) -> AsyncLROPoller["_models.AzureFirewall"]: + """Creates or updates the specified Azure Firewall. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param azure_firewall_name: The name of the Azure Firewall. + :type azure_firewall_name: str + :param parameters: Parameters supplied to the create or update Azure Firewall operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.AzureFirewall + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either AzureFirewall or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.AzureFirewall] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewall"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('AzureFirewall', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + async def _update_tags_initial( + self, + resource_group_name: str, + azure_firewall_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.AzureFirewall"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.AzureFirewall"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_azure_firewalls_update_tags_request_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('AzureFirewall', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + + @distributed_trace_async + async def begin_update_tags( + self, + resource_group_name: str, + azure_firewall_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> AsyncLROPoller["_models.AzureFirewall"]: + """Updates tags of an Azure Firewall resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param azure_firewall_name: The name of the Azure Firewall. + :type azure_firewall_name: str + :param parameters: Parameters supplied to update azure firewall tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either AzureFirewall or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.AzureFirewall] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewall"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_tags_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('AzureFirewall', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.AzureFirewallListResult"]: + """Lists all Azure Firewalls in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AzureFirewallListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AzureFirewallListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewallListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_azure_firewalls_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_azure_firewalls_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AzureFirewallListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.AzureFirewallListResult"]: + """Gets all the Azure Firewalls in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AzureFirewallListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AzureFirewallListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewallListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_azure_firewalls_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_azure_firewalls_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AzureFirewallListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureFirewalls"} # type: ignore +class AzureFirewallFqdnTagsOperations: + """AzureFirewallFqdnTagsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.AzureFirewallFqdnTagListResult"]: + """Gets all the Azure Firewall FQDN Tags in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AzureFirewallFqdnTagListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AzureFirewallFqdnTagListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewallFqdnTagListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_azure_firewall_fqdn_tags_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_azure_firewall_fqdn_tags_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AzureFirewallFqdnTagListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureFirewallFqdnTags"} # type: ignore +class WebCategoriesOperations: + """WebCategoriesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.AzureWebCategory": + """Gets the specified Azure Web Category. + + :param name: The name of the azureWebCategory. + :type name: str + :param expand: Expands resourceIds back referenced by the azureWebCategory resource. Default + value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AzureWebCategory, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.AzureWebCategory + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureWebCategory"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_web_categories_get_request( + name=name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('AzureWebCategory', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureWebCategories/{name}"} # type: ignore + + + @distributed_trace + def list_by_subscription( + self, + **kwargs: Any + ) -> AsyncIterable["_models.AzureWebCategoryListResult"]: + """Gets all the Azure Web Categories in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AzureWebCategoryListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AzureWebCategoryListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureWebCategoryListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_web_categories_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_subscription.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_web_categories_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AzureWebCategoryListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_subscription.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureWebCategories"} # type: ignore +class BastionHostsOperations: + """BastionHostsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_bastion_hosts_delete_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified Bastion Host. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> "_models.BastionHost": + """Gets the specified Bastion Host. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: BastionHost, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.BastionHost + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHost"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_bastion_hosts_get_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('BastionHost', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + bastion_host_name: str, + parameters: "_models.BastionHost", + **kwargs: Any + ) -> "_models.BastionHost": + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHost"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'BastionHost') + + request = build_bastion_hosts_create_or_update_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('BastionHost', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('BastionHost', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + bastion_host_name: str, + parameters: "_models.BastionHost", + **kwargs: Any + ) -> AsyncLROPoller["_models.BastionHost"]: + """Creates or updates the specified Bastion Host. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param parameters: Parameters supplied to the create or update Bastion Host operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.BastionHost + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either BastionHost or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.BastionHost] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHost"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BastionHost', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + async def _update_tags_initial( + self, + resource_group_name: str, + bastion_host_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.BastionHost"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BastionHost"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_bastion_hosts_update_tags_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BastionHost', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + + @distributed_trace_async + async def begin_update_tags( + self, + resource_group_name: str, + bastion_host_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> AsyncLROPoller["_models.BastionHost"]: + """Updates Tags for BastionHost resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param parameters: Parameters supplied to update BastionHost tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either BastionHost or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.BastionHost] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHost"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_tags_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BastionHost', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.BastionHostListResult"]: + """Lists all Bastion Hosts in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionHostListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionHostListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHostListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_bastion_hosts_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_bastion_hosts_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("BastionHostListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/bastionHosts"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.BastionHostListResult"]: + """Lists all Bastion Hosts in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionHostListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionHostListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHostListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_bastion_hosts_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_bastion_hosts_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("BastionHostListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts"} # type: ignore +class NetworkManagementClientOperationsMixin: + + async def _put_bastion_shareable_link_initial( + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> Optional["_models.BastionShareableLinkListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BastionShareableLinkListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_put_bastion_shareable_link_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._put_bastion_shareable_link_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BastionShareableLinkListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _put_bastion_shareable_link_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/createShareableLinks"} # type: ignore + + + @distributed_trace_async + async def begin_put_bastion_shareable_link( + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> AsyncLROPoller[AsyncItemPaged["_models.BastionShareableLinkListResult"]]: + """Creates a Bastion Shareable Links for all the VMs specified in the request. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param bsl_request: Post request for all the Bastion Shareable Link endpoints. + :type bsl_request: ~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns an iterator like instance of either + BastionShareableLinkListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListResult]] + :raises: ~azure.core.exceptions.HttpResponseError + """ + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionShareableLinkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_put_bastion_shareable_link_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.begin_put_bastion_shareable_link.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_put_bastion_shareable_link_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("BastionShareableLinkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionShareableLinkListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._put_bastion_shareable_link_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + bsl_request=bsl_request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + async def internal_get_next(next_link=None): + if next_link is None: + return pipeline_response + return await get_next(next_link) + + return AsyncItemPaged( + internal_get_next, extract_data + ) + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_put_bastion_shareable_link.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/createShareableLinks"} # type: ignore + + + async def _delete_bastion_shareable_link_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_delete_bastion_shareable_link_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._delete_bastion_shareable_link_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_bastion_shareable_link_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/deleteShareableLinks"} # type: ignore + + + @distributed_trace_async + async def begin_delete_bastion_shareable_link( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the Bastion Shareable Links for all the VMs specified in the request. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param bsl_request: Post request for all the Bastion Shareable Link endpoints. + :type bsl_request: ~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_bastion_shareable_link_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + bsl_request=bsl_request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete_bastion_shareable_link.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/deleteShareableLinks"} # type: ignore + + @distributed_trace + def get_bastion_shareable_link( + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> AsyncIterable["_models.BastionShareableLinkListResult"]: + """Return the Bastion Shareable Links for all the VMs specified in the request. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param bsl_request: Post request for all the Bastion Shareable Link endpoints. + :type bsl_request: ~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionShareableLinkListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionShareableLinkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_get_bastion_shareable_link_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.get_bastion_shareable_link.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_get_bastion_shareable_link_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("BastionShareableLinkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + get_bastion_shareable_link.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/getShareableLinks"} # type: ignore + + async def _get_active_sessions_initial( + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> Optional["_models.BastionActiveSessionListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BastionActiveSessionListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_get_active_sessions_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_active_sessions_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BastionActiveSessionListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_active_sessions_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/getActiveSessions"} # type: ignore + + + @distributed_trace_async + async def begin_get_active_sessions( + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> AsyncLROPoller[AsyncItemPaged["_models.BastionActiveSessionListResult"]]: + """Returns the list of currently active sessions on the Bastion. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns an iterator like instance of either + BastionActiveSessionListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionActiveSessionListResult]] + :raises: ~azure.core.exceptions.HttpResponseError + """ + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionActiveSessionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_get_active_sessions_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.begin_get_active_sessions.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_get_active_sessions_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("BastionActiveSessionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionActiveSessionListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_active_sessions_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + async def internal_get_next(next_link=None): + if next_link is None: + return pipeline_response + return await get_next(next_link) + + return AsyncItemPaged( + internal_get_next, extract_data + ) + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_active_sessions.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/getActiveSessions"} # type: ignore + + + @distributed_trace + def disconnect_active_sessions( + self, + resource_group_name: str, + bastion_host_name: str, + session_ids: "_models.SessionIds", + **kwargs: Any + ) -> AsyncIterable["_models.BastionSessionDeleteResult"]: + """Returns the list of currently active sessions on the Bastion. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param session_ids: The list of sessionids to disconnect. + :type session_ids: ~azure.mgmt.network.v2021_08_01.models.SessionIds + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionSessionDeleteResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionSessionDeleteResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionSessionDeleteResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + _json = self._serialize.body(session_ids, 'SessionIds') + + request = build_disconnect_active_sessions_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.disconnect_active_sessions.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + _json = self._serialize.body(session_ids, 'SessionIds') + + request = build_disconnect_active_sessions_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("BastionSessionDeleteResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + disconnect_active_sessions.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/disconnectActiveSessions"} # type: ignore + + @distributed_trace_async + async def check_dns_name_availability( + self, + location: str, + domain_name_label: str, + **kwargs: Any + ) -> "_models.DnsNameAvailabilityResult": + """Checks whether a domain name in the cloudapp.azure.com zone is available for use. + + :param location: The location of the domain name. + :type location: str + :param domain_name_label: The domain name to be verified. It must conform to the following + regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$. + :type domain_name_label: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DnsNameAvailabilityResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DnsNameAvailabilityResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DnsNameAvailabilityResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_check_dns_name_availability_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + domain_name_label=domain_name_label, + template_url=self.check_dns_name_availability.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DnsNameAvailabilityResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + check_dns_name_availability.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/CheckDnsNameAvailability"} # type: ignore + + + @distributed_trace_async + async def supported_security_providers( + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> "_models.VirtualWanSecurityProviders": + """Gives the supported security providers for the virtual wan. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN for which supported security providers are + needed. + :type virtual_wan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualWanSecurityProviders, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualWanSecurityProviders + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWanSecurityProviders"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_supported_security_providers_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + template_url=self.supported_security_providers.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualWanSecurityProviders', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + supported_security_providers.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/supportedSecurityProviders"} # type: ignore + + + async def _generatevirtualwanvpnserverconfigurationvpnprofile_initial( + self, + resource_group_name: str, + virtual_wan_name: str, + vpn_client_params: "_models.VirtualWanVpnProfileParameters", + **kwargs: Any + ) -> Optional["_models.VpnProfileResponse"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnProfileResponse"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_client_params, 'VirtualWanVpnProfileParameters') + + request = build_generatevirtualwanvpnserverconfigurationvpnprofile_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._generatevirtualwanvpnserverconfigurationvpnprofile_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnProfileResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _generatevirtualwanvpnserverconfigurationvpnprofile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/GenerateVpnProfile"} # type: ignore + + + @distributed_trace_async + async def begin_generatevirtualwanvpnserverconfigurationvpnprofile( + self, + resource_group_name: str, + virtual_wan_name: str, + vpn_client_params: "_models.VirtualWanVpnProfileParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnProfileResponse"]: + """Generates a unique VPN profile for P2S clients for VirtualWan and associated + VpnServerConfiguration combination in the specified resource group. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN whose associated VpnServerConfigurations is + needed. + :type virtual_wan_name: str + :param vpn_client_params: Parameters supplied to the generate VirtualWan VPN profile generation + operation. + :type vpn_client_params: ~azure.mgmt.network.v2021_08_01.models.VirtualWanVpnProfileParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnProfileResponse or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnProfileResponse] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnProfileResponse"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._generatevirtualwanvpnserverconfigurationvpnprofile_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + vpn_client_params=vpn_client_params, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnProfileResponse', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_generatevirtualwanvpnserverconfigurationvpnprofile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/GenerateVpnProfile"} # type: ignore +class NetworkInterfacesOperations: + """NetworkInterfacesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list_cloud_service_role_instance_network_interfaces( + self, + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceListResult"]: + """Gets information about all network interfaces in a role instance in a cloud service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :param role_instance_name: The name of role instance. + :type role_instance_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_cloud_service_role_instance_network_interfaces_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_cloud_service_role_instance_network_interfaces.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_cloud_service_role_instance_network_interfaces_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_cloud_service_role_instance_network_interfaces.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces"} # type: ignore + + @distributed_trace + def list_cloud_service_network_interfaces( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceListResult"]: + """Gets all network interfaces in a cloud service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_cloud_service_network_interfaces_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_cloud_service_network_interfaces.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_cloud_service_network_interfaces_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_cloud_service_network_interfaces.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/networkInterfaces"} # type: ignore + + @distributed_trace_async + async def get_cloud_service_network_interface( + self, + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + network_interface_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkInterface": + """Get the specified network interface in a cloud service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :param role_instance_name: The name of role instance. + :type role_instance_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterface, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_get_cloud_service_network_interface_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_cloud_service_network_interface.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_cloud_service_network_interface.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_delete_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_interface_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkInterface": + """Gets information about the specified network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterface, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_get_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + network_interface_name: str, + parameters: "_models.NetworkInterface", + **kwargs: Any + ) -> "_models.NetworkInterface": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkInterface') + + request = build_network_interfaces_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + network_interface_name: str, + parameters: "_models.NetworkInterface", + **kwargs: Any + ) -> AsyncLROPoller["_models.NetworkInterface"]: + """Creates or updates a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param parameters: Parameters supplied to the create or update network interface operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either NetworkInterface or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkInterface] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkInterface', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + network_interface_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkInterface": + """Updates a network interface tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param parameters: Parameters supplied to update network interface tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterface, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_interfaces_update_tags_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceListResult"]: + """Gets all network interfaces in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkInterfaces"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceListResult"]: + """Gets all network interfaces in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces"} # type: ignore + + async def _get_effective_route_table_initial( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> Optional["_models.EffectiveRouteListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.EffectiveRouteListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_get_effective_route_table_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_effective_route_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('EffectiveRouteListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_effective_route_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveRouteTable"} # type: ignore + + + @distributed_trace_async + async def begin_get_effective_route_table( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.EffectiveRouteListResult"]: + """Gets all route tables applied to a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either EffectiveRouteListResult or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.EffectiveRouteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.EffectiveRouteListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_effective_route_table_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('EffectiveRouteListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_effective_route_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveRouteTable"} # type: ignore + + async def _list_effective_network_security_groups_initial( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> Optional["_models.EffectiveNetworkSecurityGroupListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.EffectiveNetworkSecurityGroupListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_list_effective_network_security_groups_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_effective_network_security_groups_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('EffectiveNetworkSecurityGroupListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_effective_network_security_groups_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveNetworkSecurityGroups"} # type: ignore + + + @distributed_trace_async + async def begin_list_effective_network_security_groups( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.EffectiveNetworkSecurityGroupListResult"]: + """Gets all network security groups applied to a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + EffectiveNetworkSecurityGroupListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.EffectiveNetworkSecurityGroupListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_effective_network_security_groups_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('EffectiveNetworkSecurityGroupListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_effective_network_security_groups.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveNetworkSecurityGroups"} # type: ignore + + @distributed_trace + def list_virtual_machine_scale_set_vm_network_interfaces( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceListResult"]: + """Gets information about all network interfaces in a virtual machine in a virtual machine scale + set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_virtual_machine_scale_set_vm_network_interfaces_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_virtual_machine_scale_set_vm_network_interfaces.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_virtual_machine_scale_set_vm_network_interfaces_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_vm_network_interfaces.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces"} # type: ignore + + @distributed_trace + def list_virtual_machine_scale_set_network_interfaces( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceListResult"]: + """Gets all network interfaces in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_virtual_machine_scale_set_network_interfaces_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_virtual_machine_scale_set_network_interfaces.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_virtual_machine_scale_set_network_interfaces_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_network_interfaces.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/networkInterfaces"} # type: ignore + + @distributed_trace_async + async def get_virtual_machine_scale_set_network_interface( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkInterface": + """Get the specified network interface in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterface, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + + request = build_network_interfaces_get_virtual_machine_scale_set_network_interface_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_virtual_machine_scale_set_network_interface.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_virtual_machine_scale_set_network_interface.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + @distributed_trace + def list_virtual_machine_scale_set_ip_configurations( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceIPConfigurationListResult"]: + """Get the specified network interface ip configuration in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceIPConfigurationListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceIPConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_virtual_machine_scale_set_ip_configurations_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.list_virtual_machine_scale_set_ip_configurations.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_virtual_machine_scale_set_ip_configurations_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceIPConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_ip_configurations.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipConfigurations"} # type: ignore + + @distributed_trace_async + async def get_virtual_machine_scale_set_ip_configuration( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + ip_configuration_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkInterfaceIPConfiguration": + """Get the specified network interface ip configuration in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param ip_configuration_name: The name of the ip configuration. + :type ip_configuration_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterfaceIPConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceIPConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + + request = build_network_interfaces_get_virtual_machine_scale_set_ip_configuration_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_virtual_machine_scale_set_ip_configuration.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterfaceIPConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_virtual_machine_scale_set_ip_configuration.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipConfigurations/{ipConfigurationName}"} # type: ignore + +class PublicIPAddressesOperations: + """PublicIPAddressesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list_cloud_service_public_ip_addresses( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PublicIPAddressListResult"]: + """Gets information about all public IP addresses on a cloud service level. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_cloud_service_public_ip_addresses_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_cloud_service_public_ip_addresses.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_cloud_service_public_ip_addresses_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_cloud_service_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/publicipaddresses"} # type: ignore + + @distributed_trace + def list_cloud_service_role_instance_public_ip_addresses( + self, + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + network_interface_name: str, + ip_configuration_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PublicIPAddressListResult"]: + """Gets information about all public IP addresses in a role instance IP configuration in a cloud + service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :param role_instance_name: The name of role instance. + :type role_instance_name: str + :param network_interface_name: The network interface name. + :type network_interface_name: str + :param ip_configuration_name: The IP configuration name. + :type ip_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_cloud_service_role_instance_public_ip_addresses_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_cloud_service_role_instance_public_ip_addresses.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_cloud_service_role_instance_public_ip_addresses_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_cloud_service_role_instance_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses"} # type: ignore + + @distributed_trace_async + async def get_cloud_service_public_ip_address( + self, + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + network_interface_name: str, + ip_configuration_name: str, + public_ip_address_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PublicIPAddress": + """Get the specified public IP address in a cloud service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :param role_instance_name: The role instance name. + :type role_instance_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param ip_configuration_name: The name of the IP configuration. + :type ip_configuration_name: str + :param public_ip_address_name: The name of the public IP Address. + :type public_ip_address_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPAddress, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_addresses_get_cloud_service_public_ip_address_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_cloud_service_public_ip_address.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_cloud_service_public_ip_address.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses/{publicIpAddressName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + public_ip_address_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_addresses_delete_request_initial( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + public_ip_address_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified public IP address. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_address_name: The name of the public IP address. + :type public_ip_address_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + public_ip_address_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PublicIPAddress": + """Gets the specified public IP address in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_address_name: The name of the public IP address. + :type public_ip_address_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPAddress, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_addresses_get_request( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + public_ip_address_name: str, + parameters: "_models.PublicIPAddress", + **kwargs: Any + ) -> "_models.PublicIPAddress": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PublicIPAddress') + + request = build_public_ip_addresses_create_or_update_request_initial( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + public_ip_address_name: str, + parameters: "_models.PublicIPAddress", + **kwargs: Any + ) -> AsyncLROPoller["_models.PublicIPAddress"]: + """Creates or updates a static or dynamic public IP address. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_address_name: The name of the public IP address. + :type public_ip_address_name: str + :param parameters: Parameters supplied to the create or update public IP address operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PublicIPAddress or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PublicIPAddress] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + public_ip_address_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.PublicIPAddress": + """Updates public IP address tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_address_name: The name of the public IP address. + :type public_ip_address_name: str + :param parameters: Parameters supplied to update public IP address tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPAddress, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_public_ip_addresses_update_tags_request( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.PublicIPAddressListResult"]: + """Gets all the public IP addresses in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/publicIPAddresses"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PublicIPAddressListResult"]: + """Gets all public IP addresses in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses"} # type: ignore + + @distributed_trace + def list_virtual_machine_scale_set_public_ip_addresses( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PublicIPAddressListResult"]: + """Gets information about all public IP addresses on a virtual machine scale set level. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_virtual_machine_scale_set_public_ip_addresses_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_virtual_machine_scale_set_public_ip_addresses.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_virtual_machine_scale_set_public_ip_addresses_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/publicipaddresses"} # type: ignore + + @distributed_trace + def list_virtual_machine_scale_set_vm_public_ip_addresses( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + ip_configuration_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PublicIPAddressListResult"]: + """Gets information about all public IP addresses in a virtual machine IP configuration in a + virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The network interface name. + :type network_interface_name: str + :param ip_configuration_name: The IP configuration name. + :type ip_configuration_name: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_virtual_machine_scale_set_vm_public_ip_addresses_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_virtual_machine_scale_set_vm_public_ip_addresses.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_virtual_machine_scale_set_vm_public_ip_addresses_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_vm_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses"} # type: ignore + + @distributed_trace_async + async def get_virtual_machine_scale_set_public_ip_address( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + ip_configuration_name: str, + public_ip_address_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PublicIPAddress": + """Get the specified public IP address in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param ip_configuration_name: The name of the IP configuration. + :type ip_configuration_name: str + :param public_ip_address_name: The name of the public IP Address. + :type public_ip_address_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPAddress, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + + request = build_public_ip_addresses_get_virtual_machine_scale_set_public_ip_address_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_virtual_machine_scale_set_public_ip_address.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_virtual_machine_scale_set_public_ip_address.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses/{publicIpAddressName}"} # type: ignore + +class CustomIPPrefixesOperations: + """CustomIPPrefixesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + custom_ip_prefix_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_custom_ip_prefixes_delete_request_initial( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + custom_ip_prefix_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified custom IP prefix. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param custom_ip_prefix_name: The name of the CustomIpPrefix. + :type custom_ip_prefix_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + custom_ip_prefix_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.CustomIpPrefix": + """Gets the specified custom IP prefix in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param custom_ip_prefix_name: The name of the custom IP prefix. + :type custom_ip_prefix_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CustomIpPrefix, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_custom_ip_prefixes_get_request( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + custom_ip_prefix_name: str, + parameters: "_models.CustomIpPrefix", + **kwargs: Any + ) -> "_models.CustomIpPrefix": + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'CustomIpPrefix') + + request = build_custom_ip_prefixes_create_or_update_request_initial( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + custom_ip_prefix_name: str, + parameters: "_models.CustomIpPrefix", + **kwargs: Any + ) -> AsyncLROPoller["_models.CustomIpPrefix"]: + """Creates or updates a custom IP prefix. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param custom_ip_prefix_name: The name of the custom IP prefix. + :type custom_ip_prefix_name: str + :param parameters: Parameters supplied to the create or update custom IP prefix operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either CustomIpPrefix or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefix"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + custom_ip_prefix_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.CustomIpPrefix": + """Updates custom IP prefix tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param custom_ip_prefix_name: The name of the custom IP prefix. + :type custom_ip_prefix_name: str + :param parameters: Parameters supplied to update custom IP prefix tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CustomIpPrefix, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_custom_ip_prefixes_update_tags_request( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.CustomIpPrefixListResult"]: + """Gets all the custom IP prefixes in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CustomIpPrefixListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.CustomIpPrefixListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefixListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_custom_ip_prefixes_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_custom_ip_prefixes_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("CustomIpPrefixListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/customIpPrefixes"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.CustomIpPrefixListResult"]: + """Gets all custom IP prefixes in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CustomIpPrefixListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.CustomIpPrefixListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefixListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_custom_ip_prefixes_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_custom_ip_prefixes_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("CustomIpPrefixListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes"} # type: ignore +class DdosCustomPoliciesOperations: + """DdosCustomPoliciesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ddos_custom_policy_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ddos_custom_policies_delete_request_initial( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ddos_custom_policy_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified DDoS custom policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_custom_policy_name: The name of the DDoS custom policy. + :type ddos_custom_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + ddos_custom_policy_name: str, + **kwargs: Any + ) -> "_models.DdosCustomPolicy": + """Gets information about the specified DDoS custom policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_custom_policy_name: The name of the DDoS custom policy. + :type ddos_custom_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DdosCustomPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosCustomPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ddos_custom_policies_get_request( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + ddos_custom_policy_name: str, + parameters: "_models.DdosCustomPolicy", + **kwargs: Any + ) -> "_models.DdosCustomPolicy": + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosCustomPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'DdosCustomPolicy') + + request = build_ddos_custom_policies_create_or_update_request_initial( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + ddos_custom_policy_name: str, + parameters: "_models.DdosCustomPolicy", + **kwargs: Any + ) -> AsyncLROPoller["_models.DdosCustomPolicy"]: + """Creates or updates a DDoS custom policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_custom_policy_name: The name of the DDoS custom policy. + :type ddos_custom_policy_name: str + :param parameters: Parameters supplied to the create or update operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicy + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either DdosCustomPolicy or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicy] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosCustomPolicy"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + ddos_custom_policy_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.DdosCustomPolicy": + """Update a DDoS custom policy tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_custom_policy_name: The name of the DDoS custom policy. + :type ddos_custom_policy_name: str + :param parameters: Parameters supplied to update DDoS custom policy resource tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DdosCustomPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosCustomPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_ddos_custom_policies_update_tags_request( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + +class DdosProtectionPlansOperations: + """DdosProtectionPlansOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ddos_protection_plan_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ddos_protection_plans_delete_request_initial( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ddos_protection_plan_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified DDoS protection plan. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_protection_plan_name: The name of the DDoS protection plan. + :type ddos_protection_plan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + ddos_protection_plan_name: str, + **kwargs: Any + ) -> "_models.DdosProtectionPlan": + """Gets information about the specified DDoS protection plan. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_protection_plan_name: The name of the DDoS protection plan. + :type ddos_protection_plan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DdosProtectionPlan, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlan"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ddos_protection_plans_get_request( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + ddos_protection_plan_name: str, + parameters: "_models.DdosProtectionPlan", + **kwargs: Any + ) -> "_models.DdosProtectionPlan": + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlan"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'DdosProtectionPlan') + + request = build_ddos_protection_plans_create_or_update_request_initial( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + ddos_protection_plan_name: str, + parameters: "_models.DdosProtectionPlan", + **kwargs: Any + ) -> AsyncLROPoller["_models.DdosProtectionPlan"]: + """Creates or updates a DDoS protection plan. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_protection_plan_name: The name of the DDoS protection plan. + :type ddos_protection_plan_name: str + :param parameters: Parameters supplied to the create or update operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either DdosProtectionPlan or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlan"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + ddos_protection_plan_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.DdosProtectionPlan": + """Update a DDoS protection plan tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_protection_plan_name: The name of the DDoS protection plan. + :type ddos_protection_plan_name: str + :param parameters: Parameters supplied to the update DDoS protection plan resource tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DdosProtectionPlan, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlan"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_ddos_protection_plans_update_tags_request( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.DdosProtectionPlanListResult"]: + """Gets all DDoS protection plans in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DdosProtectionPlanListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlanListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlanListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ddos_protection_plans_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ddos_protection_plans_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("DdosProtectionPlanListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ddosProtectionPlans"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.DdosProtectionPlanListResult"]: + """Gets all the DDoS protection plans in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DdosProtectionPlanListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlanListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlanListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ddos_protection_plans_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ddos_protection_plans_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("DdosProtectionPlanListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans"} # type: ignore +class DscpConfigurationOperations: + """DscpConfigurationOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + dscp_configuration_name: str, + parameters: "_models.DscpConfiguration", + **kwargs: Any + ) -> "_models.DscpConfiguration": + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'DscpConfiguration') + + request = build_dscp_configuration_create_or_update_request_initial( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('DscpConfiguration', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('DscpConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + dscp_configuration_name: str, + parameters: "_models.DscpConfiguration", + **kwargs: Any + ) -> AsyncLROPoller["_models.DscpConfiguration"]: + """Creates or updates a DSCP Configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param dscp_configuration_name: The name of the resource. + :type dscp_configuration_name: str + :param parameters: Parameters supplied to the create or update dscp configuration operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.DscpConfiguration + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either DscpConfiguration or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.DscpConfiguration] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfiguration"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('DscpConfiguration', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + dscp_configuration_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_dscp_configuration_delete_request_initial( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + dscp_configuration_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a DSCP Configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param dscp_configuration_name: The name of the resource. + :type dscp_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + dscp_configuration_name: str, + **kwargs: Any + ) -> "_models.DscpConfiguration": + """Gets a DSCP Configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param dscp_configuration_name: The name of the resource. + :type dscp_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DscpConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DscpConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_dscp_configuration_get_request( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DscpConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.DscpConfigurationListResult"]: + """Gets a DSCP Configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DscpConfigurationListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.DscpConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_dscp_configuration_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_dscp_configuration_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("DscpConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.DscpConfigurationListResult"]: + """Gets all dscp configurations in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DscpConfigurationListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.DscpConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_dscp_configuration_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_dscp_configuration_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("DscpConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/dscpConfigurations"} # type: ignore +class AvailableEndpointServicesOperations: + """AvailableEndpointServicesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> AsyncIterable["_models.EndpointServicesListResult"]: + """List what values of endpoint services are available for use. + + :param location: The location to check available endpoint services. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either EndpointServicesListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.EndpointServicesListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.EndpointServicesListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_endpoint_services_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_endpoint_services_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("EndpointServicesListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/virtualNetworkAvailableEndpointServices"} # type: ignore +class ExpressRouteCircuitAuthorizationsOperations: + """ExpressRouteCircuitAuthorizationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_authorizations_delete_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified authorization from the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitAuthorization": + """Gets the specified authorization from the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitAuthorization, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitAuthorization"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_authorizations_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitAuthorization', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + authorization_parameters: "_models.ExpressRouteCircuitAuthorization", + **kwargs: Any + ) -> "_models.ExpressRouteCircuitAuthorization": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitAuthorization"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(authorization_parameters, 'ExpressRouteCircuitAuthorization') + + request = build_express_route_circuit_authorizations_create_or_update_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitAuthorization', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCircuitAuthorization', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + authorization_parameters: "_models.ExpressRouteCircuitAuthorization", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCircuitAuthorization"]: + """Creates or updates an authorization in the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :param authorization_parameters: Parameters supplied to the create or update express route + circuit authorization operation. + :type authorization_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRouteCircuitAuthorization or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitAuthorization"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + authorization_parameters=authorization_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitAuthorization', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.AuthorizationListResult"]: + """Gets all authorizations in an express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AuthorizationListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AuthorizationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AuthorizationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuit_authorizations_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuit_authorizations_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AuthorizationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations"} # type: ignore +class ExpressRouteCircuitPeeringsOperations: + """ExpressRouteCircuitPeeringsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_peerings_delete_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified peering from the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitPeering": + """Gets the specified peering for the express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitPeering, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_peerings_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + peering_parameters: "_models.ExpressRouteCircuitPeering", + **kwargs: Any + ) -> "_models.ExpressRouteCircuitPeering": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(peering_parameters, 'ExpressRouteCircuitPeering') + + request = build_express_route_circuit_peerings_create_or_update_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitPeering', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCircuitPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + peering_parameters: "_models.ExpressRouteCircuitPeering", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCircuitPeering"]: + """Creates or updates a peering in the specified express route circuits. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param peering_parameters: Parameters supplied to the create or update express route circuit + peering operation. + :type peering_parameters: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRouteCircuitPeering or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitPeering"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + peering_parameters=peering_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitPeering', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRouteCircuitPeeringListResult"]: + """Gets all peerings in a specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCircuitPeeringListResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitPeeringListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuit_peerings_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuit_peerings_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCircuitPeeringListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings"} # type: ignore +class ExpressRouteCircuitConnectionsOperations: + """ExpressRouteCircuitConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_connections_delete_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified Express Route Circuit Connection from the specified express route + circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param connection_name: The name of the express route circuit connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitConnection": + """Gets the specified Express Route Circuit Connection from the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param connection_name: The name of the express route circuit connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_connections_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + express_route_circuit_connection_parameters: "_models.ExpressRouteCircuitConnection", + **kwargs: Any + ) -> "_models.ExpressRouteCircuitConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(express_route_circuit_connection_parameters, 'ExpressRouteCircuitConnection') + + request = build_express_route_circuit_connections_create_or_update_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCircuitConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + express_route_circuit_connection_parameters: "_models.ExpressRouteCircuitConnection", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCircuitConnection"]: + """Creates or updates a Express Route Circuit Connection in the specified express route circuits. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param connection_name: The name of the express route circuit connection. + :type connection_name: str + :param express_route_circuit_connection_parameters: Parameters supplied to the create or update + express route circuit connection operation. + :type express_route_circuit_connection_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRouteCircuitConnection or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + express_route_circuit_connection_parameters=express_route_circuit_connection_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRouteCircuitConnectionListResult"]: + """Gets all global reach connections associated with a private peering in an express route + circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCircuitConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuit_connections_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuit_connections_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCircuitConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections"} # type: ignore +class PeerExpressRouteCircuitConnectionsOperations: + """PeerExpressRouteCircuitConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.PeerExpressRouteCircuitConnection": + """Gets the specified Peer Express Route Circuit Connection from the specified express route + circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param connection_name: The name of the peer express route circuit connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PeerExpressRouteCircuitConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PeerExpressRouteCircuitConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PeerExpressRouteCircuitConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_peer_express_route_circuit_connections_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PeerExpressRouteCircuitConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/peerConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PeerExpressRouteCircuitConnectionListResult"]: + """Gets all global reach peer connections associated with a private peering in an express route + circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PeerExpressRouteCircuitConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PeerExpressRouteCircuitConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PeerExpressRouteCircuitConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_peer_express_route_circuit_connections_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_peer_express_route_circuit_connections_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PeerExpressRouteCircuitConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/peerConnections"} # type: ignore +class ExpressRouteCircuitsOperations: + """ExpressRouteCircuitsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_delete_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuit": + """Gets information about the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of express route circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuit, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuit"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + circuit_name: str, + parameters: "_models.ExpressRouteCircuit", + **kwargs: Any + ) -> "_models.ExpressRouteCircuit": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuit"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ExpressRouteCircuit') + + request = build_express_route_circuits_create_or_update_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + circuit_name: str, + parameters: "_models.ExpressRouteCircuit", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCircuit"]: + """Creates or updates an express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :param parameters: Parameters supplied to the create or update express route circuit operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRouteCircuit or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuit"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + circuit_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ExpressRouteCircuit": + """Updates an express route circuit tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :param parameters: Parameters supplied to update express route circuit tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuit, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuit"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_express_route_circuits_update_tags_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + + async def _list_arp_table_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsArpTableListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsArpTableListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_list_arp_table_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_arp_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsArpTableListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_arp_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/arpTables/{devicePath}"} # type: ignore + + + @distributed_trace_async + async def begin_list_arp_table( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCircuitsArpTableListResult"]: + """Gets the currently advertised ARP table associated with the express route circuit in a resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + ExpressRouteCircuitsArpTableListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsArpTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsArpTableListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_arp_table_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsArpTableListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_arp_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/arpTables/{devicePath}"} # type: ignore + + async def _list_routes_table_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsRoutesTableListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsRoutesTableListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_list_routes_table_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_routes_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_routes_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTables/{devicePath}"} # type: ignore + + + @distributed_trace_async + async def begin_list_routes_table( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCircuitsRoutesTableListResult"]: + """Gets the currently advertised routes table associated with the express route circuit in a + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + ExpressRouteCircuitsRoutesTableListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsRoutesTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsRoutesTableListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_routes_table_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_routes_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTables/{devicePath}"} # type: ignore + + async def _list_routes_table_summary_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsRoutesTableSummaryListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsRoutesTableSummaryListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_list_routes_table_summary_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_routes_table_summary_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableSummaryListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_routes_table_summary_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTablesSummary/{devicePath}"} # type: ignore + + + @distributed_trace_async + async def begin_list_routes_table_summary( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCircuitsRoutesTableSummaryListResult"]: + """Gets the currently advertised routes table summary associated with the express route circuit in + a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + ExpressRouteCircuitsRoutesTableSummaryListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsRoutesTableSummaryListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsRoutesTableSummaryListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_routes_table_summary_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableSummaryListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_routes_table_summary.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTablesSummary/{devicePath}"} # type: ignore + + @distributed_trace_async + async def get_stats( + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitStats": + """Gets all the stats from an express route circuit in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitStats, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitStats + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitStats"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_get_stats_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get_stats.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitStats', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_stats.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/stats"} # type: ignore + + + @distributed_trace_async + async def get_peering_stats( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitStats": + """Gets all stats from an express route circuit in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitStats, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitStats + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitStats"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_get_peering_stats_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get_peering_stats.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitStats', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_peering_stats.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/stats"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRouteCircuitListResult"]: + """Gets all the express route circuits in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCircuitListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuits_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuits_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCircuitListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRouteCircuitListResult"]: + """Gets all the express route circuits in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCircuitListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuits_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuits_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCircuitListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteCircuits"} # type: ignore +class ExpressRouteServiceProvidersOperations: + """ExpressRouteServiceProvidersOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRouteServiceProviderListResult"]: + """Gets all the available express route service providers. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteServiceProviderListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteServiceProviderListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteServiceProviderListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_service_providers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_service_providers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteServiceProviderListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteServiceProviders"} # type: ignore +class ExpressRouteCrossConnectionsOperations: + """ExpressRouteCrossConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRouteCrossConnectionListResult"]: + """Retrieves all the ExpressRouteCrossConnections in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCrossConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_cross_connections_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_cross_connections_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCrossConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteCrossConnections"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRouteCrossConnectionListResult"]: + """Retrieves all the ExpressRouteCrossConnections in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCrossConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_cross_connections_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_cross_connections_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCrossConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + cross_connection_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnection": + """Gets details about the specified ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group (peering location of the circuit). + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection (service key of the + circuit). + :type cross_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCrossConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connections_get_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCrossConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + cross_connection_name: str, + parameters: "_models.ExpressRouteCrossConnection", + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ExpressRouteCrossConnection') + + request = build_express_route_cross_connections_create_or_update_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCrossConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + cross_connection_name: str, + parameters: "_models.ExpressRouteCrossConnection", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCrossConnection"]: + """Update the specified ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param parameters: Parameters supplied to the update express route crossConnection operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRouteCrossConnection or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCrossConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + cross_connection_name: str, + cross_connection_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnection": + """Updates an express route cross connection tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the cross connection. + :type cross_connection_name: str + :param cross_connection_parameters: Parameters supplied to update express route cross + connection tags. + :type cross_connection_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCrossConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(cross_connection_parameters, 'TagsObject') + + request = build_express_route_cross_connections_update_tags_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCrossConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}"} # type: ignore + + + async def _list_arp_table_initial( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsArpTableListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsArpTableListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connections_list_arp_table_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_arp_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsArpTableListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_arp_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/arpTables/{devicePath}"} # type: ignore + + + @distributed_trace_async + async def begin_list_arp_table( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCircuitsArpTableListResult"]: + """Gets the currently advertised ARP table associated with the express route cross connection in a + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + ExpressRouteCircuitsArpTableListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsArpTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsArpTableListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_arp_table_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsArpTableListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_arp_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/arpTables/{devicePath}"} # type: ignore + + async def _list_routes_table_summary_initial( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connections_list_routes_table_summary_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_routes_table_summary_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCrossConnectionsRoutesTableSummaryListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_routes_table_summary_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTablesSummary/{devicePath}"} # type: ignore + + + @distributed_trace_async + async def begin_list_routes_table_summary( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult"]: + """Gets the route table summary associated with the express route cross connection in a resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + ExpressRouteCrossConnectionsRoutesTableSummaryListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_routes_table_summary_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCrossConnectionsRoutesTableSummaryListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_routes_table_summary.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTablesSummary/{devicePath}"} # type: ignore + + async def _list_routes_table_initial( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsRoutesTableListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsRoutesTableListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connections_list_routes_table_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_routes_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_routes_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTables/{devicePath}"} # type: ignore + + + @distributed_trace_async + async def begin_list_routes_table( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCircuitsRoutesTableListResult"]: + """Gets the currently advertised routes table associated with the express route cross connection + in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + ExpressRouteCircuitsRoutesTableListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsRoutesTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsRoutesTableListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_routes_table_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_routes_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTables/{devicePath}"} # type: ignore +class ExpressRouteCrossConnectionPeeringsOperations: + """ExpressRouteCrossConnectionPeeringsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + cross_connection_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRouteCrossConnectionPeeringList"]: + """Gets all peerings in a specified ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCrossConnectionPeeringList or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeeringList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionPeeringList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_cross_connection_peerings_list_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_cross_connection_peerings_list_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCrossConnectionPeeringList", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connection_peerings_delete_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified peering from the ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnectionPeering": + """Gets the specified peering for the ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCrossConnectionPeering, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connection_peerings_get_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCrossConnectionPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + peering_parameters: "_models.ExpressRouteCrossConnectionPeering", + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnectionPeering": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(peering_parameters, 'ExpressRouteCrossConnectionPeering') + + request = build_express_route_cross_connection_peerings_create_or_update_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCrossConnectionPeering', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCrossConnectionPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + peering_parameters: "_models.ExpressRouteCrossConnectionPeering", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteCrossConnectionPeering"]: + """Creates or updates a peering in the specified ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param peering_parameters: Parameters supplied to the create or update + ExpressRouteCrossConnection peering operation. + :type peering_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRouteCrossConnectionPeering + or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionPeering"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + peering_parameters=peering_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCrossConnectionPeering', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore +class ExpressRoutePortsLocationsOperations: + """ExpressRoutePortsLocationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRoutePortsLocationListResult"]: + """Retrieves all ExpressRoutePort peering locations. Does not return available bandwidths for each + location. Available bandwidths can only be obtained when retrieving a specific peering + location. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRoutePortsLocationListResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsLocationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortsLocationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_ports_locations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_ports_locations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRoutePortsLocationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ExpressRoutePortsLocations"} # type: ignore + + @distributed_trace_async + async def get( + self, + location_name: str, + **kwargs: Any + ) -> "_models.ExpressRoutePortsLocation": + """Retrieves a single ExpressRoutePort peering location, including the list of available + bandwidths available at said peering location. + + :param location_name: Name of the requested ExpressRoutePort peering location. + :type location_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRoutePortsLocation, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsLocation + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortsLocation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_ports_locations_get_request( + subscription_id=self._config.subscription_id, + location_name=location_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRoutePortsLocation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ExpressRoutePortsLocations/{locationName}"} # type: ignore + +class ExpressRoutePortsOperations: + """ExpressRoutePortsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_ports_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> "_models.ExpressRoutePort": + """Retrieves the requested ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of ExpressRoutePort. + :type express_route_port_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRoutePort, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePort"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_ports_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + express_route_port_name: str, + parameters: "_models.ExpressRoutePort", + **kwargs: Any + ) -> "_models.ExpressRoutePort": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePort"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ExpressRoutePort') + + request = build_express_route_ports_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + express_route_port_name: str, + parameters: "_models.ExpressRoutePort", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRoutePort"]: + """Creates or updates the specified ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :param parameters: Parameters supplied to the create ExpressRoutePort operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRoutePort or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePort"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + express_route_port_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ExpressRoutePort": + """Update ExpressRoutePort tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :param parameters: Parameters supplied to update ExpressRoutePort resource tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRoutePort, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePort"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_express_route_ports_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRoutePortListResult"]: + """List all the ExpressRoutePort resources in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRoutePortListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_ports_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_ports_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRoutePortListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRoutePortListResult"]: + """List all the ExpressRoutePort resources in the specified subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRoutePortListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_ports_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_ports_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRoutePortListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ExpressRoutePorts"} # type: ignore + + @distributed_trace_async + async def generate_loa( + self, + resource_group_name: str, + express_route_port_name: str, + request: "_models.GenerateExpressRoutePortsLOARequest", + **kwargs: Any + ) -> "_models.GenerateExpressRoutePortsLOAResult": + """Generate a letter of authorization for the requested ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of ExpressRoutePort. + :type express_route_port_name: str + :param request: Request parameters supplied to generate a letter of authorization. + :type request: ~azure.mgmt.network.v2021_08_01.models.GenerateExpressRoutePortsLOARequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: GenerateExpressRoutePortsLOAResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.GenerateExpressRoutePortsLOAResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.GenerateExpressRoutePortsLOAResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'GenerateExpressRoutePortsLOARequest') + + request = build_express_route_ports_generate_loa_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.generate_loa.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('GenerateExpressRoutePortsLOAResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + generate_loa.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/generateLoa"} # type: ignore + +class ExpressRouteLinksOperations: + """ExpressRouteLinksOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + express_route_port_name: str, + link_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteLink": + """Retrieves the specified ExpressRouteLink resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :param link_name: The name of the ExpressRouteLink resource. + :type link_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteLink, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLink + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteLink"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_links_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + link_name=link_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteLink', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}/links/{linkName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRouteLinkListResult"]: + """Retrieve the ExpressRouteLink sub-resources of the specified ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteLinkListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteLinkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_links_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_links_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteLinkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}/links"} # type: ignore +class ExpressRoutePortAuthorizationsOperations: + """ExpressRoutePortAuthorizationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_port_authorizations_delete_request_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified authorization from the specified express route port. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the express route port. + :type express_route_port_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + **kwargs: Any + ) -> "_models.ExpressRoutePortAuthorization": + """Gets the specified authorization from the specified express route port. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the express route port. + :type express_route_port_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRoutePortAuthorization, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorization + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortAuthorization"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_port_authorizations_get_request( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRoutePortAuthorization', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + authorization_parameters: "_models.ExpressRoutePortAuthorization", + **kwargs: Any + ) -> "_models.ExpressRoutePortAuthorization": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortAuthorization"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(authorization_parameters, 'ExpressRoutePortAuthorization') + + request = build_express_route_port_authorizations_create_or_update_request_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRoutePortAuthorization', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRoutePortAuthorization', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + authorization_parameters: "_models.ExpressRoutePortAuthorization", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRoutePortAuthorization"]: + """Creates or updates an authorization in the specified express route port. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the express route port. + :type express_route_port_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :param authorization_parameters: Parameters supplied to the create or update express route port + authorization operation. + :type authorization_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorization + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRoutePortAuthorization or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorization] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortAuthorization"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + authorization_parameters=authorization_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRoutePortAuthorization', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ExpressRoutePortAuthorizationListResult"]: + """Gets all authorizations in an express route port. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the express route port. + :type express_route_port_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRoutePortAuthorizationListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorizationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortAuthorizationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_port_authorizations_list_request( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_port_authorizations_list_request( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRoutePortAuthorizationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations"} # type: ignore +class FirewallPoliciesOperations: + """FirewallPoliciesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policies_delete_request_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified Firewall Policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + firewall_policy_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.FirewallPolicy": + """Gets the specified Firewall Policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FirewallPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policies_get_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.FirewallPolicy", + **kwargs: Any + ) -> "_models.FirewallPolicy": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FirewallPolicy') + + request = build_firewall_policies_create_or_update_request_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.FirewallPolicy", + **kwargs: Any + ) -> AsyncLROPoller["_models.FirewallPolicy"]: + """Creates or updates the specified Firewall Policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: Parameters supplied to the create or update Firewall Policy operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicy + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either FirewallPolicy or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.FirewallPolicy] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicy"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.FirewallPolicy": + """Updates tags of a Azure Firewall Policy resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: Parameters supplied to update Azure Firewall Policy tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FirewallPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_firewall_policies_update_tags_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.FirewallPolicyListResult"]: + """Lists all Firewall Policies in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FirewallPolicyListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_firewall_policies_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_firewall_policies_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("FirewallPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.FirewallPolicyListResult"]: + """Gets all the Firewall Policies in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FirewallPolicyListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_firewall_policies_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_firewall_policies_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("FirewallPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/firewallPolicies"} # type: ignore +class FirewallPolicyRuleCollectionGroupsOperations: + """FirewallPolicyRuleCollectionGroupsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policy_rule_collection_groups_delete_request_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified FirewallPolicyRuleCollectionGroup. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param rule_collection_group_name: The name of the FirewallPolicyRuleCollectionGroup. + :type rule_collection_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + **kwargs: Any + ) -> "_models.FirewallPolicyRuleCollectionGroup": + """Gets the specified FirewallPolicyRuleCollectionGroup. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param rule_collection_group_name: The name of the FirewallPolicyRuleCollectionGroup. + :type rule_collection_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FirewallPolicyRuleCollectionGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyRuleCollectionGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policy_rule_collection_groups_get_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FirewallPolicyRuleCollectionGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + parameters: "_models.FirewallPolicyRuleCollectionGroup", + **kwargs: Any + ) -> "_models.FirewallPolicyRuleCollectionGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyRuleCollectionGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FirewallPolicyRuleCollectionGroup') + + request = build_firewall_policy_rule_collection_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FirewallPolicyRuleCollectionGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('FirewallPolicyRuleCollectionGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + parameters: "_models.FirewallPolicyRuleCollectionGroup", + **kwargs: Any + ) -> AsyncLROPoller["_models.FirewallPolicyRuleCollectionGroup"]: + """Creates or updates the specified FirewallPolicyRuleCollectionGroup. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param rule_collection_group_name: The name of the FirewallPolicyRuleCollectionGroup. + :type rule_collection_group_name: str + :param parameters: Parameters supplied to the create or update + FirewallPolicyRuleCollectionGroup operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either FirewallPolicyRuleCollectionGroup or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyRuleCollectionGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FirewallPolicyRuleCollectionGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.FirewallPolicyRuleCollectionGroupListResult"]: + """Lists all FirewallPolicyRuleCollectionGroups in a FirewallPolicy resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FirewallPolicyRuleCollectionGroupListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyRuleCollectionGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_firewall_policy_rule_collection_groups_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_firewall_policy_rule_collection_groups_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("FirewallPolicyRuleCollectionGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups"} # type: ignore +class FirewallPolicyIdpsSignaturesOperations: + """FirewallPolicyIdpsSignaturesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def list( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.IDPSQueryObject", + **kwargs: Any + ) -> "_models.QueryResults": + """Retrieves the current status of IDPS signatures for the relevant policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: + :type parameters: ~azure.mgmt.network.v2021_08_01.models.IDPSQueryObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: QueryResults, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.QueryResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.QueryResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'IDPSQueryObject') + + request = build_firewall_policy_idps_signatures_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('QueryResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/listIdpsSignatures"} # type: ignore + +class FirewallPolicyIdpsSignaturesOverridesOperations: + """FirewallPolicyIdpsSignaturesOverridesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def patch( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.SignaturesOverrides", + **kwargs: Any + ) -> "_models.SignaturesOverrides": + """Will update the status of policy's signature overrides for IDPS. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: Will contain all properties of the object to put. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignaturesOverrides, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignaturesOverrides"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SignaturesOverrides') + + request = build_firewall_policy_idps_signatures_overrides_patch_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.patch.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignaturesOverrides', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + patch.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides/default"} # type: ignore + + + @distributed_trace_async + async def put( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.SignaturesOverrides", + **kwargs: Any + ) -> "_models.SignaturesOverrides": + """Will override/create a new signature overrides for the policy's IDPS. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: Will contain all properties of the object to put. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignaturesOverrides, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignaturesOverrides"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SignaturesOverrides') + + request = build_firewall_policy_idps_signatures_overrides_put_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.put.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignaturesOverrides', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + put.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides/default"} # type: ignore + + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> "_models.SignaturesOverrides": + """Returns all signatures overrides for a specific policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignaturesOverrides, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignaturesOverrides"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policy_idps_signatures_overrides_get_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignaturesOverrides', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides/default"} # type: ignore + + + @distributed_trace_async + async def list( + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> "_models.SignaturesOverridesList": + """Returns all signatures overrides objects for a specific policy as a list containing a single + value. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignaturesOverridesList, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverridesList + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignaturesOverridesList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policy_idps_signatures_overrides_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignaturesOverridesList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides"} # type: ignore + +class FirewallPolicyIdpsSignaturesFilterValuesOperations: + """FirewallPolicyIdpsSignaturesFilterValuesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def list( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.SignatureOverridesFilterValuesQuery", + **kwargs: Any + ) -> "_models.SignatureOverridesFilterValuesResponse": + """Retrieves the current filter values for the signatures overrides. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SignatureOverridesFilterValuesQuery + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignatureOverridesFilterValuesResponse, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignatureOverridesFilterValuesResponse + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignatureOverridesFilterValuesResponse"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SignatureOverridesFilterValuesQuery') + + request = build_firewall_policy_idps_signatures_filter_values_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignatureOverridesFilterValuesResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/listIdpsFilterOptions"} # type: ignore + +class IpAllocationsOperations: + """IpAllocationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ip_allocation_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ip_allocations_delete_request_initial( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ip_allocation_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified IpAllocation. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_allocation_name: The name of the IpAllocation. + :type ip_allocation_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + ip_allocation_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.IpAllocation": + """Gets the specified IpAllocation by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_allocation_name: The name of the IpAllocation. + :type ip_allocation_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IpAllocation, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IpAllocation + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ip_allocations_get_request( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IpAllocation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + ip_allocation_name: str, + parameters: "_models.IpAllocation", + **kwargs: Any + ) -> "_models.IpAllocation": + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'IpAllocation') + + request = build_ip_allocations_create_or_update_request_initial( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('IpAllocation', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('IpAllocation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + ip_allocation_name: str, + parameters: "_models.IpAllocation", + **kwargs: Any + ) -> AsyncLROPoller["_models.IpAllocation"]: + """Creates or updates an IpAllocation in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_allocation_name: The name of the IpAllocation. + :type ip_allocation_name: str + :param parameters: Parameters supplied to the create or update virtual network operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.IpAllocation + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either IpAllocation or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.IpAllocation] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('IpAllocation', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + ip_allocation_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.IpAllocation": + """Updates a IpAllocation tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_allocation_name: The name of the IpAllocation. + :type ip_allocation_name: str + :param parameters: Parameters supplied to update IpAllocation tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IpAllocation, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IpAllocation + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_ip_allocations_update_tags_request( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IpAllocation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.IpAllocationListResult"]: + """Gets all IpAllocations in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either IpAllocationListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.IpAllocationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ip_allocations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ip_allocations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("IpAllocationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/IpAllocations"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.IpAllocationListResult"]: + """Gets all IpAllocations in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either IpAllocationListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.IpAllocationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ip_allocations_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ip_allocations_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("IpAllocationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations"} # type: ignore +class IpGroupsOperations: + """IpGroupsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + ip_groups_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.IpGroup": + """Gets the specified ipGroups. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_groups_name: The name of the ipGroups. + :type ip_groups_name: str + :param expand: Expands resourceIds (of Firewalls/Network Security Groups etc.) back referenced + by the IpGroups resource. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IpGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IpGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ip_groups_get_request( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IpGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + ip_groups_name: str, + parameters: "_models.IpGroup", + **kwargs: Any + ) -> "_models.IpGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'IpGroup') + + request = build_ip_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('IpGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('IpGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + ip_groups_name: str, + parameters: "_models.IpGroup", + **kwargs: Any + ) -> AsyncLROPoller["_models.IpGroup"]: + """Creates or updates an ipGroups in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_groups_name: The name of the ipGroups. + :type ip_groups_name: str + :param parameters: Parameters supplied to the create or update IpGroups operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.IpGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either IpGroup or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.IpGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('IpGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + @distributed_trace_async + async def update_groups( + self, + resource_group_name: str, + ip_groups_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.IpGroup": + """Updates tags of an IpGroups resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_groups_name: The name of the ipGroups. + :type ip_groups_name: str + :param parameters: Parameters supplied to the update ipGroups operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IpGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IpGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_ip_groups_update_groups_request( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_groups.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IpGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_groups.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ip_groups_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ip_groups_delete_request_initial( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ip_groups_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified ipGroups. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_groups_name: The name of the ipGroups. + :type ip_groups_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.IpGroupListResult"]: + """Gets all IpGroups in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either IpGroupListResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.IpGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ip_groups_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ip_groups_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("IpGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.IpGroupListResult"]: + """Gets all IpGroups in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either IpGroupListResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.IpGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ip_groups_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ip_groups_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("IpGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ipGroups"} # type: ignore +class LoadBalancersOperations: + """LoadBalancersOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancers_delete_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + load_balancer_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.LoadBalancer": + """Gets the specified load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LoadBalancer, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LoadBalancer + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancer"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancers_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LoadBalancer', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + load_balancer_name: str, + parameters: "_models.LoadBalancer", + **kwargs: Any + ) -> "_models.LoadBalancer": + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancer"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'LoadBalancer') + + request = build_load_balancers_create_or_update_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('LoadBalancer', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('LoadBalancer', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + load_balancer_name: str, + parameters: "_models.LoadBalancer", + **kwargs: Any + ) -> AsyncLROPoller["_models.LoadBalancer"]: + """Creates or updates a load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param parameters: Parameters supplied to the create or update load balancer operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.LoadBalancer + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either LoadBalancer or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.LoadBalancer] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancer"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('LoadBalancer', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + load_balancer_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.LoadBalancer": + """Updates a load balancer tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param parameters: Parameters supplied to update load balancer tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LoadBalancer, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LoadBalancer + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancer"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_load_balancers_update_tags_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LoadBalancer', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.LoadBalancerListResult"]: + """Gets all the load balancers in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancers_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancers_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/loadBalancers"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.LoadBalancerListResult"]: + """Gets all the load balancers in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancers_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancers_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers"} # type: ignore + + async def _swap_public_ip_addresses_initial( # pylint: disable=inconsistent-return-statements + self, + location: str, + parameters: "_models.LoadBalancerVipSwapRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'LoadBalancerVipSwapRequest') + + request = build_load_balancers_swap_public_ip_addresses_request_initial( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._swap_public_ip_addresses_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _swap_public_ip_addresses_initial.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/setLoadBalancerFrontendPublicIpAddresses"} # type: ignore + + + @distributed_trace_async + async def begin_swap_public_ip_addresses( # pylint: disable=inconsistent-return-statements + self, + location: str, + parameters: "_models.LoadBalancerVipSwapRequest", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Swaps VIPs between two load balancers. + + :param location: The region where load balancers are located at. + :type location: str + :param parameters: Parameters that define which VIPs should be swapped. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.LoadBalancerVipSwapRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._swap_public_ip_addresses_initial( + location=location, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_swap_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/setLoadBalancerFrontendPublicIpAddresses"} # type: ignore + + async def _list_inbound_nat_rule_port_mappings_initial( + self, + group_name: str, + load_balancer_name: str, + backend_pool_name: str, + parameters: "_models.QueryInboundNatRulePortMappingRequest", + **kwargs: Any + ) -> "_models.BackendAddressInboundNatRulePortMappings": + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressInboundNatRulePortMappings"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'QueryInboundNatRulePortMappingRequest') + + request = build_load_balancers_list_inbound_nat_rule_port_mappings_request_initial( + group_name=group_name, + load_balancer_name=load_balancer_name, + backend_pool_name=backend_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._list_inbound_nat_rule_port_mappings_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('BackendAddressInboundNatRulePortMappings', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('BackendAddressInboundNatRulePortMappings', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_inbound_nat_rule_port_mappings_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendPoolName}/queryInboundNatRulePortMapping"} # type: ignore + + + @distributed_trace_async + async def begin_list_inbound_nat_rule_port_mappings( + self, + group_name: str, + load_balancer_name: str, + backend_pool_name: str, + parameters: "_models.QueryInboundNatRulePortMappingRequest", + **kwargs: Any + ) -> AsyncLROPoller["_models.BackendAddressInboundNatRulePortMappings"]: + """List of inbound NAT rule port mappings. + + :param group_name: The name of the resource group. + :type group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param backend_pool_name: The name of the load balancer backend address pool. + :type backend_pool_name: str + :param parameters: Query inbound NAT rule port mapping request. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.QueryInboundNatRulePortMappingRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + BackendAddressInboundNatRulePortMappings or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.BackendAddressInboundNatRulePortMappings] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressInboundNatRulePortMappings"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_inbound_nat_rule_port_mappings_initial( + group_name=group_name, + load_balancer_name=load_balancer_name, + backend_pool_name=backend_pool_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BackendAddressInboundNatRulePortMappings', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_inbound_nat_rule_port_mappings.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendPoolName}/queryInboundNatRulePortMapping"} # type: ignore +class LoadBalancerBackendAddressPoolsOperations: + """LoadBalancerBackendAddressPoolsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.LoadBalancerBackendAddressPoolListResult"]: + """Gets all the load balancer backed address pools. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerBackendAddressPoolListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerBackendAddressPoolListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerBackendAddressPoolListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_backend_address_pools_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_backend_address_pools_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerBackendAddressPoolListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + **kwargs: Any + ) -> "_models.BackendAddressPool": + """Gets load balancer backend address pool. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param backend_address_pool_name: The name of the backend address pool. + :type backend_address_pool_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: BackendAddressPool, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.BackendAddressPool + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressPool"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_backend_address_pools_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('BackendAddressPool', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + parameters: "_models.BackendAddressPool", + **kwargs: Any + ) -> "_models.BackendAddressPool": + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressPool"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'BackendAddressPool') + + request = build_load_balancer_backend_address_pools_create_or_update_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('BackendAddressPool', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('BackendAddressPool', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + parameters: "_models.BackendAddressPool", + **kwargs: Any + ) -> AsyncLROPoller["_models.BackendAddressPool"]: + """Creates or updates a load balancer backend address pool. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param backend_address_pool_name: The name of the backend address pool. + :type backend_address_pool_name: str + :param parameters: Parameters supplied to the create or update load balancer backend address + pool operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.BackendAddressPool + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either BackendAddressPool or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.BackendAddressPool] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressPool"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BackendAddressPool', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_backend_address_pools_delete_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified load balancer backend address pool. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param backend_address_pool_name: The name of the backend address pool. + :type backend_address_pool_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore +class LoadBalancerFrontendIPConfigurationsOperations: + """LoadBalancerFrontendIPConfigurationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.LoadBalancerFrontendIPConfigurationListResult"]: + """Gets all the load balancer frontend IP configurations. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerFrontendIPConfigurationListResult or + the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerFrontendIPConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerFrontendIPConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_frontend_ip_configurations_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_frontend_ip_configurations_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerFrontendIPConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/frontendIPConfigurations"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + load_balancer_name: str, + frontend_ip_configuration_name: str, + **kwargs: Any + ) -> "_models.FrontendIPConfiguration": + """Gets load balancer frontend IP configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param frontend_ip_configuration_name: The name of the frontend IP configuration. + :type frontend_ip_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FrontendIPConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FrontendIPConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_frontend_ip_configurations_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + frontend_ip_configuration_name=frontend_ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FrontendIPConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/frontendIPConfigurations/{frontendIPConfigurationName}"} # type: ignore + +class InboundNatRulesOperations: + """InboundNatRulesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.InboundNatRuleListResult"]: + """Gets all the inbound NAT rules in a load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either InboundNatRuleListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.InboundNatRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundNatRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_inbound_nat_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_inbound_nat_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("InboundNatRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_inbound_nat_rules_delete_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified load balancer inbound NAT rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param inbound_nat_rule_name: The name of the inbound NAT rule. + :type inbound_nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.InboundNatRule": + """Gets the specified load balancer inbound NAT rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param inbound_nat_rule_name: The name of the inbound NAT rule. + :type inbound_nat_rule_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: InboundNatRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.InboundNatRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_inbound_nat_rules_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('InboundNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + inbound_nat_rule_parameters: "_models.InboundNatRule", + **kwargs: Any + ) -> "_models.InboundNatRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(inbound_nat_rule_parameters, 'InboundNatRule') + + request = build_inbound_nat_rules_create_or_update_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('InboundNatRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('InboundNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + inbound_nat_rule_parameters: "_models.InboundNatRule", + **kwargs: Any + ) -> AsyncLROPoller["_models.InboundNatRule"]: + """Creates or updates a load balancer inbound NAT rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param inbound_nat_rule_name: The name of the inbound NAT rule. + :type inbound_nat_rule_name: str + :param inbound_nat_rule_parameters: Parameters supplied to the create or update inbound NAT + rule operation. + :type inbound_nat_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.InboundNatRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either InboundNatRule or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.InboundNatRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundNatRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + inbound_nat_rule_parameters=inbound_nat_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('InboundNatRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore +class LoadBalancerLoadBalancingRulesOperations: + """LoadBalancerLoadBalancingRulesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.LoadBalancerLoadBalancingRuleListResult"]: + """Gets all the load balancing rules in a load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerLoadBalancingRuleListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerLoadBalancingRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerLoadBalancingRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_load_balancing_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_load_balancing_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerLoadBalancingRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + load_balancer_name: str, + load_balancing_rule_name: str, + **kwargs: Any + ) -> "_models.LoadBalancingRule": + """Gets the specified load balancer load balancing rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param load_balancing_rule_name: The name of the load balancing rule. + :type load_balancing_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LoadBalancingRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LoadBalancingRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancingRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_load_balancing_rules_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + load_balancing_rule_name=load_balancing_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LoadBalancingRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}"} # type: ignore + +class LoadBalancerOutboundRulesOperations: + """LoadBalancerOutboundRulesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.LoadBalancerOutboundRuleListResult"]: + """Gets all the outbound rules in a load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerOutboundRuleListResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerOutboundRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerOutboundRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_outbound_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_outbound_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerOutboundRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/outboundRules"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + load_balancer_name: str, + outbound_rule_name: str, + **kwargs: Any + ) -> "_models.OutboundRule": + """Gets the specified load balancer outbound rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param outbound_rule_name: The name of the outbound rule. + :type outbound_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: OutboundRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.OutboundRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.OutboundRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_outbound_rules_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + outbound_rule_name=outbound_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('OutboundRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/outboundRules/{outboundRuleName}"} # type: ignore + +class LoadBalancerNetworkInterfacesOperations: + """LoadBalancerNetworkInterfacesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceListResult"]: + """Gets associated load balancer network interfaces. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_network_interfaces_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_network_interfaces_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/networkInterfaces"} # type: ignore +class LoadBalancerProbesOperations: + """LoadBalancerProbesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.LoadBalancerProbeListResult"]: + """Gets all the load balancer probes. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerProbeListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerProbeListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerProbeListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_probes_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_probes_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerProbeListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + load_balancer_name: str, + probe_name: str, + **kwargs: Any + ) -> "_models.Probe": + """Gets load balancer probe. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param probe_name: The name of the probe. + :type probe_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Probe, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.Probe + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Probe"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_probes_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + probe_name=probe_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Probe', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}"} # type: ignore + +class NatGatewaysOperations: + """NatGatewaysOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + nat_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_nat_gateways_delete_request_initial( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + nat_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified nat gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param nat_gateway_name: The name of the nat gateway. + :type nat_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + nat_gateway_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NatGateway": + """Gets the specified nat gateway in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param nat_gateway_name: The name of the nat gateway. + :type nat_gateway_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NatGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NatGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_nat_gateways_get_request( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NatGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + nat_gateway_name: str, + parameters: "_models.NatGateway", + **kwargs: Any + ) -> Optional["_models.NatGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.NatGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NatGateway') + + request = build_nat_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('NatGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NatGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + nat_gateway_name: str, + parameters: "_models.NatGateway", + **kwargs: Any + ) -> AsyncLROPoller["_models.NatGateway"]: + """Creates or updates a nat gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param nat_gateway_name: The name of the nat gateway. + :type nat_gateway_name: str + :param parameters: Parameters supplied to the create or update nat gateway operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NatGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either NatGateway or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.NatGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NatGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + nat_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NatGateway": + """Updates nat gateway tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param nat_gateway_name: The name of the nat gateway. + :type nat_gateway_name: str + :param parameters: Parameters supplied to update nat gateway tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NatGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NatGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_nat_gateways_update_tags_request( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NatGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.NatGatewayListResult"]: + """Gets all the Nat Gateways in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NatGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NatGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_nat_gateways_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_nat_gateways_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NatGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/natGateways"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NatGatewayListResult"]: + """Gets all nat gateways in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NatGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NatGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_nat_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_nat_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NatGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways"} # type: ignore +class NetworkInterfaceIPConfigurationsOperations: + """NetworkInterfaceIPConfigurationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceIPConfigurationListResult"]: + """Get all ip configurations in a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceIPConfigurationListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceIPConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interface_ip_configurations_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interface_ip_configurations_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceIPConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/ipConfigurations"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_interface_name: str, + ip_configuration_name: str, + **kwargs: Any + ) -> "_models.NetworkInterfaceIPConfiguration": + """Gets the specified network interface ip configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param ip_configuration_name: The name of the ip configuration name. + :type ip_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterfaceIPConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceIPConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interface_ip_configurations_get_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterfaceIPConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/ipConfigurations/{ipConfigurationName}"} # type: ignore + +class NetworkInterfaceLoadBalancersOperations: + """NetworkInterfaceLoadBalancersOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceLoadBalancerListResult"]: + """List all load balancers in a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceLoadBalancerListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceLoadBalancerListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceLoadBalancerListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interface_load_balancers_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interface_load_balancers_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceLoadBalancerListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/loadBalancers"} # type: ignore +class NetworkInterfaceTapConfigurationsOperations: + """NetworkInterfaceTapConfigurationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interface_tap_configurations_delete_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified tap configuration from the NetworkInterface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param tap_configuration_name: The name of the tap configuration. + :type tap_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + **kwargs: Any + ) -> "_models.NetworkInterfaceTapConfiguration": + """Get the specified tap configuration on a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param tap_configuration_name: The name of the tap configuration. + :type tap_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterfaceTapConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceTapConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interface_tap_configurations_get_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterfaceTapConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + tap_configuration_parameters: "_models.NetworkInterfaceTapConfiguration", + **kwargs: Any + ) -> "_models.NetworkInterfaceTapConfiguration": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceTapConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(tap_configuration_parameters, 'NetworkInterfaceTapConfiguration') + + request = build_network_interface_tap_configurations_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkInterfaceTapConfiguration', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkInterfaceTapConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + tap_configuration_parameters: "_models.NetworkInterfaceTapConfiguration", + **kwargs: Any + ) -> AsyncLROPoller["_models.NetworkInterfaceTapConfiguration"]: + """Creates or updates a Tap configuration in the specified NetworkInterface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param tap_configuration_name: The name of the tap configuration. + :type tap_configuration_name: str + :param tap_configuration_parameters: Parameters supplied to the create or update tap + configuration operation. + :type tap_configuration_parameters: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either NetworkInterfaceTapConfiguration or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceTapConfiguration"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + tap_configuration_parameters=tap_configuration_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkInterfaceTapConfiguration', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkInterfaceTapConfigurationListResult"]: + """Get all Tap configurations in a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceTapConfigurationListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceTapConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interface_tap_configurations_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interface_tap_configurations_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceTapConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations"} # type: ignore +class NetworkProfilesOperations: + """NetworkProfilesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_profile_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_profiles_delete_request_initial( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_profile_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified network profile. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_profile_name: The name of the NetworkProfile. + :type network_profile_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_profile_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkProfile": + """Gets the specified network profile in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_profile_name: The name of the public IP prefix. + :type network_profile_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkProfile, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkProfile + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfile"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_profiles_get_request( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkProfile', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + + @distributed_trace_async + async def create_or_update( + self, + resource_group_name: str, + network_profile_name: str, + parameters: "_models.NetworkProfile", + **kwargs: Any + ) -> "_models.NetworkProfile": + """Creates or updates a network profile. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_profile_name: The name of the network profile. + :type network_profile_name: str + :param parameters: Parameters supplied to the create or update network profile operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkProfile + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkProfile, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkProfile + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfile"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkProfile') + + request = build_network_profiles_create_or_update_request( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.create_or_update.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkProfile', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkProfile', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + network_profile_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkProfile": + """Updates network profile tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_profile_name: The name of the network profile. + :type network_profile_name: str + :param parameters: Parameters supplied to update network profile tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkProfile, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkProfile + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfile"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_profiles_update_tags_request( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkProfile', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkProfileListResult"]: + """Gets all the network profiles in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkProfileListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkProfileListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfileListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_profiles_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_profiles_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkProfileListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkProfiles"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkProfileListResult"]: + """Gets all network profiles in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkProfileListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkProfileListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfileListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_profiles_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_profiles_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkProfileListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles"} # type: ignore +class NetworkSecurityGroupsOperations: + """NetworkSecurityGroupsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_security_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_security_groups_delete_request_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_security_group_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_security_group_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkSecurityGroup": + """Gets the specified network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkSecurityGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_security_groups_get_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + network_security_group_name: str, + parameters: "_models.NetworkSecurityGroup", + **kwargs: Any + ) -> "_models.NetworkSecurityGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkSecurityGroup') + + request = build_network_security_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + network_security_group_name: str, + parameters: "_models.NetworkSecurityGroup", + **kwargs: Any + ) -> AsyncLROPoller["_models.NetworkSecurityGroup"]: + """Creates or updates a network security group in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param parameters: Parameters supplied to the create or update network security group + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either NetworkSecurityGroup or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + network_security_group_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkSecurityGroup": + """Updates a network security group tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param parameters: Parameters supplied to update network security group tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkSecurityGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_security_groups_update_tags_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkSecurityGroupListResult"]: + """Gets all network security groups in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkSecurityGroupListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_security_groups_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_security_groups_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkSecurityGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkSecurityGroups"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkSecurityGroupListResult"]: + """Gets all network security groups in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkSecurityGroupListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_security_groups_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_security_groups_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkSecurityGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups"} # type: ignore +class SecurityRulesOperations: + """SecurityRulesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_security_rules_delete_request_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified network security rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param security_rule_name: The name of the security rule. + :type security_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + **kwargs: Any + ) -> "_models.SecurityRule": + """Get the specified network security rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param security_rule_name: The name of the security rule. + :type security_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SecurityRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SecurityRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_security_rules_get_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SecurityRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + security_rule_parameters: "_models.SecurityRule", + **kwargs: Any + ) -> "_models.SecurityRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(security_rule_parameters, 'SecurityRule') + + request = build_security_rules_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('SecurityRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('SecurityRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + security_rule_parameters: "_models.SecurityRule", + **kwargs: Any + ) -> AsyncLROPoller["_models.SecurityRule"]: + """Creates or updates a security rule in the specified network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param security_rule_name: The name of the security rule. + :type security_rule_name: str + :param security_rule_parameters: Parameters supplied to the create or update network security + rule operation. + :type security_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.SecurityRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either SecurityRule or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + security_rule_parameters=security_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('SecurityRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_security_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.SecurityRuleListResult"]: + """Gets all security rules in a network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SecurityRuleListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.SecurityRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_security_rules_list_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_security_rules_list_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("SecurityRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules"} # type: ignore +class DefaultSecurityRulesOperations: + """DefaultSecurityRulesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + network_security_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.SecurityRuleListResult"]: + """Gets all default security rules in a network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SecurityRuleListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.SecurityRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_default_security_rules_list_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_default_security_rules_list_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("SecurityRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/defaultSecurityRules"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_security_group_name: str, + default_security_rule_name: str, + **kwargs: Any + ) -> "_models.SecurityRule": + """Get the specified default network security rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param default_security_rule_name: The name of the default security rule. + :type default_security_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SecurityRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SecurityRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_default_security_rules_get_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + default_security_rule_name=default_security_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SecurityRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/defaultSecurityRules/{defaultSecurityRuleName}"} # type: ignore + +class NetworkVirtualAppliancesOperations: + """NetworkVirtualAppliancesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_virtual_appliance_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_virtual_appliances_delete_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_virtual_appliance_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified Network Virtual Appliance. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of Network Virtual Appliance. + :type network_virtual_appliance_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkVirtualAppliance": + """Gets the specified Network Virtual Appliance. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkVirtualAppliance, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualAppliance"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_virtual_appliances_get_request( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkVirtualAppliance": + """Updates a Network Virtual Appliance. + + :param resource_group_name: The resource group name of Network Virtual Appliance. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of Network Virtual Appliance being updated. + :type network_virtual_appliance_name: str + :param parameters: Parameters supplied to Update Network Virtual Appliance Tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkVirtualAppliance, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualAppliance"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_virtual_appliances_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + parameters: "_models.NetworkVirtualAppliance", + **kwargs: Any + ) -> "_models.NetworkVirtualAppliance": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualAppliance"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkVirtualAppliance') + + request = build_network_virtual_appliances_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + parameters: "_models.NetworkVirtualAppliance", + **kwargs: Any + ) -> AsyncLROPoller["_models.NetworkVirtualAppliance"]: + """Creates or updates the specified Network Virtual Appliance. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param parameters: Parameters supplied to the create or update Network Virtual Appliance. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either NetworkVirtualAppliance or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualAppliance"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkVirtualApplianceListResult"]: + """Lists all Network Virtual Appliances in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkVirtualApplianceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_virtual_appliances_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_virtual_appliances_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkVirtualApplianceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkVirtualApplianceListResult"]: + """Gets all Network Virtual Appliances in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkVirtualApplianceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_virtual_appliances_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_virtual_appliances_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkVirtualApplianceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkVirtualAppliances"} # type: ignore +class VirtualApplianceSitesOperations: + """VirtualApplianceSitesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_appliance_sites_delete_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified site from a Virtual Appliance. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param site_name: The name of the site. + :type site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + **kwargs: Any + ) -> "_models.VirtualApplianceSite": + """Gets the specified Virtual Appliance Site. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param site_name: The name of the site. + :type site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualApplianceSite, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSite + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualApplianceSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_appliance_sites_get_request( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualApplianceSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + parameters: "_models.VirtualApplianceSite", + **kwargs: Any + ) -> "_models.VirtualApplianceSite": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualApplianceSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualApplianceSite') + + request = build_virtual_appliance_sites_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualApplianceSite', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualApplianceSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + parameters: "_models.VirtualApplianceSite", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualApplianceSite"]: + """Creates or updates the specified Network Virtual Appliance Site. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param site_name: The name of the site. + :type site_name: str + :param parameters: Parameters supplied to the create or update Network Virtual Appliance Site + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSite + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualApplianceSite or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSite] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualApplianceSite"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualApplianceSite', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkVirtualApplianceSiteListResult"]: + """Lists all Network Virtual Appliance Sites in a Network Virtual Appliance resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkVirtualApplianceSiteListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSiteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceSiteListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_appliance_sites_list_request( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_appliance_sites_list_request( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkVirtualApplianceSiteListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites"} # type: ignore +class VirtualApplianceSkusOperations: + """VirtualApplianceSkusOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkVirtualApplianceSkuListResult"]: + """List all SKUs available for a virtual appliance. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkVirtualApplianceSkuListResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSkuListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceSkuListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_appliance_skus_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_appliance_skus_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkVirtualApplianceSkuListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkVirtualApplianceSkus"} # type: ignore + + @distributed_trace_async + async def get( + self, + sku_name: str, + **kwargs: Any + ) -> "_models.NetworkVirtualApplianceSku": + """Retrieves a single available sku for network virtual appliance. + + :param sku_name: Name of the Sku. + :type sku_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkVirtualApplianceSku, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSku + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceSku"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_appliance_skus_get_request( + subscription_id=self._config.subscription_id, + sku_name=sku_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkVirtualApplianceSku', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkVirtualApplianceSkus/{skuName}"} # type: ignore + +class InboundSecurityRuleOperations: + """InboundSecurityRuleOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + rule_collection_name: str, + parameters: "_models.InboundSecurityRule", + **kwargs: Any + ) -> "_models.InboundSecurityRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundSecurityRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'InboundSecurityRule') + + request = build_inbound_security_rule_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + rule_collection_name=rule_collection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('InboundSecurityRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('InboundSecurityRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/inboundSecurityRules/{ruleCollectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + rule_collection_name: str, + parameters: "_models.InboundSecurityRule", + **kwargs: Any + ) -> AsyncLROPoller["_models.InboundSecurityRule"]: + """Creates or updates the specified Network Virtual Appliance Inbound Security Rules. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param rule_collection_name: The name of security rule collection. + :type rule_collection_name: str + :param parameters: Parameters supplied to the create or update Network Virtual Appliance + Inbound Security Rules operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.InboundSecurityRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either InboundSecurityRule or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.InboundSecurityRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundSecurityRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + rule_collection_name=rule_collection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('InboundSecurityRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/inboundSecurityRules/{ruleCollectionName}"} # type: ignore +class NetworkWatchersOperations: # pylint: disable=too-many-public-methods + """NetworkWatchersOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def create_or_update( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NetworkWatcher", + **kwargs: Any + ) -> "_models.NetworkWatcher": + """Creates or updates a network watcher in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the network watcher resource. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkWatcher + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkWatcher, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkWatcher + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcher"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkWatcher') + + request = build_network_watchers_create_or_update_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.create_or_update.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkWatcher', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkWatcher', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> "_models.NetworkWatcher": + """Gets the specified network watcher by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkWatcher, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkWatcher + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcher"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_watchers_get_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkWatcher', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_watchers_delete_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified network watcher resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkWatcher": + """Updates a network watcher tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters supplied to update network watcher tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkWatcher, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkWatcher + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcher"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_watchers_update_tags_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkWatcher', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkWatcherListResult"]: + """Gets all network watchers by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkWatcherListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkWatcherListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcherListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_watchers_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_watchers_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkWatcherListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.NetworkWatcherListResult"]: + """Gets all network watchers by subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkWatcherListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkWatcherListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcherListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_watchers_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_watchers_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkWatcherListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkWatchers"} # type: ignore + + @distributed_trace_async + async def get_topology( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.TopologyParameters", + **kwargs: Any + ) -> "_models.Topology": + """Gets the current network topology by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the representation of topology. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TopologyParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Topology, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.Topology + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Topology"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TopologyParameters') + + request = build_network_watchers_get_topology_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.get_topology.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Topology', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_topology.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/topology"} # type: ignore + + + async def _verify_ip_flow_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.VerificationIPFlowParameters", + **kwargs: Any + ) -> "_models.VerificationIPFlowResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VerificationIPFlowResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VerificationIPFlowParameters') + + request = build_network_watchers_verify_ip_flow_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._verify_ip_flow_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VerificationIPFlowResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('VerificationIPFlowResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _verify_ip_flow_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/ipFlowVerify"} # type: ignore + + + @distributed_trace_async + async def begin_verify_ip_flow( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.VerificationIPFlowParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.VerificationIPFlowResult"]: + """Verify IP flow from the specified VM to a location given the currently configured NSG rules. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the IP flow to be verified. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VerificationIPFlowParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VerificationIPFlowResult or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VerificationIPFlowResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VerificationIPFlowResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._verify_ip_flow_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VerificationIPFlowResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_verify_ip_flow.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/ipFlowVerify"} # type: ignore + + async def _get_next_hop_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NextHopParameters", + **kwargs: Any + ) -> "_models.NextHopResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NextHopResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NextHopParameters') + + request = build_network_watchers_get_next_hop_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_next_hop_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NextHopResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('NextHopResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_next_hop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/nextHop"} # type: ignore + + + @distributed_trace_async + async def begin_get_next_hop( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NextHopParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.NextHopResult"]: + """Gets the next hop from the specified VM. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the source and destination endpoint. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NextHopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either NextHopResult or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.NextHopResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NextHopResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_next_hop_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NextHopResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_next_hop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/nextHop"} # type: ignore + + async def _get_vm_security_rules_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.SecurityGroupViewParameters", + **kwargs: Any + ) -> "_models.SecurityGroupViewResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityGroupViewResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SecurityGroupViewParameters') + + request = build_network_watchers_get_vm_security_rules_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_vm_security_rules_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('SecurityGroupViewResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('SecurityGroupViewResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_vm_security_rules_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/securityGroupView"} # type: ignore + + + @distributed_trace_async + async def begin_get_vm_security_rules( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.SecurityGroupViewParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.SecurityGroupViewResult"]: + """Gets the configured and effective security group rules on the specified VM. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the VM to check security groups for. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SecurityGroupViewParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either SecurityGroupViewResult or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.SecurityGroupViewResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityGroupViewResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_vm_security_rules_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('SecurityGroupViewResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_vm_security_rules.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/securityGroupView"} # type: ignore + + async def _get_troubleshooting_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.TroubleshootingParameters", + **kwargs: Any + ) -> "_models.TroubleshootingResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.TroubleshootingResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TroubleshootingParameters') + + request = build_network_watchers_get_troubleshooting_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_troubleshooting_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_troubleshooting_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/troubleshoot"} # type: ignore + + + @distributed_trace_async + async def begin_get_troubleshooting( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.TroubleshootingParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.TroubleshootingResult"]: + """Initiate troubleshooting on a specified resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that define the resource to troubleshoot. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TroubleshootingParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either TroubleshootingResult or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.TroubleshootingResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.TroubleshootingResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_troubleshooting_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_troubleshooting.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/troubleshoot"} # type: ignore + + async def _get_troubleshooting_result_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.QueryTroubleshootingParameters", + **kwargs: Any + ) -> "_models.TroubleshootingResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.TroubleshootingResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'QueryTroubleshootingParameters') + + request = build_network_watchers_get_troubleshooting_result_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_troubleshooting_result_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_troubleshooting_result_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryTroubleshootResult"} # type: ignore + + + @distributed_trace_async + async def begin_get_troubleshooting_result( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.QueryTroubleshootingParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.TroubleshootingResult"]: + """Get the last completed troubleshooting result on a specified resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that define the resource to query the troubleshooting result. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.QueryTroubleshootingParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either TroubleshootingResult or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.TroubleshootingResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.TroubleshootingResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_troubleshooting_result_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_troubleshooting_result.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryTroubleshootResult"} # type: ignore + + async def _set_flow_log_configuration_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.FlowLogInformation", + **kwargs: Any + ) -> "_models.FlowLogInformation": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogInformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FlowLogInformation') + + request = build_network_watchers_set_flow_log_configuration_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._set_flow_log_configuration_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _set_flow_log_configuration_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/configureFlowLog"} # type: ignore + + + @distributed_trace_async + async def begin_set_flow_log_configuration( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.FlowLogInformation", + **kwargs: Any + ) -> AsyncLROPoller["_models.FlowLogInformation"]: + """Configures flow log and traffic analytics (optional) on a specified resource. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that define the configuration of flow log. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FlowLogInformation + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either FlowLogInformation or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.FlowLogInformation] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogInformation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._set_flow_log_configuration_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_set_flow_log_configuration.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/configureFlowLog"} # type: ignore + + async def _get_flow_log_status_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.FlowLogStatusParameters", + **kwargs: Any + ) -> "_models.FlowLogInformation": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogInformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FlowLogStatusParameters') + + request = build_network_watchers_get_flow_log_status_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_flow_log_status_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_flow_log_status_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryFlowLogStatus"} # type: ignore + + + @distributed_trace_async + async def begin_get_flow_log_status( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.FlowLogStatusParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.FlowLogInformation"]: + """Queries status of flow log and traffic analytics (optional) on a specified resource. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that define a resource to query flow log and traffic analytics + (optional) status. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FlowLogStatusParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either FlowLogInformation or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.FlowLogInformation] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogInformation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_flow_log_status_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_flow_log_status.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryFlowLogStatus"} # type: ignore + + async def _check_connectivity_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.ConnectivityParameters", + **kwargs: Any + ) -> "_models.ConnectivityInformation": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectivityInformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ConnectivityParameters') + + request = build_network_watchers_check_connectivity_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._check_connectivity_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ConnectivityInformation', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ConnectivityInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _check_connectivity_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectivityCheck"} # type: ignore + + + @distributed_trace_async + async def begin_check_connectivity( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.ConnectivityParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.ConnectivityInformation"]: + """Verifies the possibility of establishing a direct TCP connection from a virtual machine to a + given endpoint including another VM or an arbitrary remote server. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that determine how the connectivity check will be performed. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ConnectivityParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ConnectivityInformation or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectivityInformation] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectivityInformation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._check_connectivity_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectivityInformation', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_check_connectivity.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectivityCheck"} # type: ignore + + async def _get_azure_reachability_report_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.AzureReachabilityReportParameters", + **kwargs: Any + ) -> "_models.AzureReachabilityReport": + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureReachabilityReport"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'AzureReachabilityReportParameters') + + request = build_network_watchers_get_azure_reachability_report_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_azure_reachability_report_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('AzureReachabilityReport', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('AzureReachabilityReport', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_azure_reachability_report_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/azureReachabilityReport"} # type: ignore + + + @distributed_trace_async + async def begin_get_azure_reachability_report( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.AzureReachabilityReportParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.AzureReachabilityReport"]: + """NOTE: This feature is currently in preview and still being tested for stability. Gets the + relative latency score for internet service providers from a specified location to Azure + regions. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that determine Azure reachability report configuration. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either AzureReachabilityReport or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReport] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureReachabilityReport"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_azure_reachability_report_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('AzureReachabilityReport', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_azure_reachability_report.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/azureReachabilityReport"} # type: ignore + + async def _list_available_providers_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.AvailableProvidersListParameters", + **kwargs: Any + ) -> "_models.AvailableProvidersList": + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableProvidersList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'AvailableProvidersListParameters') + + request = build_network_watchers_list_available_providers_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._list_available_providers_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('AvailableProvidersList', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('AvailableProvidersList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_available_providers_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/availableProvidersList"} # type: ignore + + + @distributed_trace_async + async def begin_list_available_providers( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.AvailableProvidersListParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.AvailableProvidersList"]: + """NOTE: This feature is currently in preview and still being tested for stability. Lists all + available internet service providers for a specified Azure region. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that scope the list of available providers. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.AvailableProvidersListParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either AvailableProvidersList or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.AvailableProvidersList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableProvidersList"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_available_providers_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('AvailableProvidersList', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_available_providers.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/availableProvidersList"} # type: ignore + + async def _get_network_configuration_diagnostic_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NetworkConfigurationDiagnosticParameters", + **kwargs: Any + ) -> "_models.NetworkConfigurationDiagnosticResponse": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkConfigurationDiagnosticResponse"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkConfigurationDiagnosticParameters') + + request = build_network_watchers_get_network_configuration_diagnostic_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_network_configuration_diagnostic_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkConfigurationDiagnosticResponse', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('NetworkConfigurationDiagnosticResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_network_configuration_diagnostic_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/networkConfigurationDiagnostic"} # type: ignore + + + @distributed_trace_async + async def begin_get_network_configuration_diagnostic( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NetworkConfigurationDiagnosticParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.NetworkConfigurationDiagnosticResponse"]: + """Gets Network Configuration Diagnostic data to help customers understand and debug network + behavior. It provides detailed information on what security rules were applied to a specified + traffic flow and the result of evaluating these rules. Customers must provide details of a flow + like source, destination, protocol, etc. The API returns whether traffic was allowed or denied, + the rules evaluated for the specified flow and the evaluation results. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters to get network configuration diagnostic. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.NetworkConfigurationDiagnosticParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + NetworkConfigurationDiagnosticResponse or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkConfigurationDiagnosticResponse] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkConfigurationDiagnosticResponse"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_network_configuration_diagnostic_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkConfigurationDiagnosticResponse', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_network_configuration_diagnostic.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/networkConfigurationDiagnostic"} # type: ignore +class PacketCapturesOperations: + """PacketCapturesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_initial( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + parameters: "_models.PacketCapture", + **kwargs: Any + ) -> "_models.PacketCaptureResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PacketCapture') + + request = build_packet_captures_create_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PacketCaptureResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + + @distributed_trace_async + async def begin_create( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + parameters: "_models.PacketCapture", + **kwargs: Any + ) -> AsyncLROPoller["_models.PacketCaptureResult"]: + """Create and start a packet capture on the specified VM. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param packet_capture_name: The name of the packet capture session. + :type packet_capture_name: str + :param parameters: Parameters that define the create packet capture operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PacketCapture + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PacketCaptureResult or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PacketCaptureResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PacketCaptureResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> "_models.PacketCaptureResult": + """Gets a packet capture session by name. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param packet_capture_name: The name of the packet capture session. + :type packet_capture_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PacketCaptureResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PacketCaptureResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_packet_captures_get_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PacketCaptureResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_packet_captures_delete_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified packet capture session. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param packet_capture_name: The name of the packet capture session. + :type packet_capture_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + async def _stop_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_packet_captures_stop_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._stop_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _stop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/stop"} # type: ignore + + + @distributed_trace_async + async def begin_stop( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Stops a specified packet capture session. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param packet_capture_name: The name of the packet capture session. + :type packet_capture_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._stop_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/stop"} # type: ignore + + async def _get_status_initial( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> "_models.PacketCaptureQueryStatusResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureQueryStatusResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_packet_captures_get_status_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_status_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PacketCaptureQueryStatusResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('PacketCaptureQueryStatusResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_status_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/queryStatus"} # type: ignore + + + @distributed_trace_async + async def begin_get_status( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.PacketCaptureQueryStatusResult"]: + """Query the status of a running packet capture session. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param packet_capture_name: The name given to the packet capture session. + :type packet_capture_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PacketCaptureQueryStatusResult or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PacketCaptureQueryStatusResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureQueryStatusResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_status_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PacketCaptureQueryStatusResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_status.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/queryStatus"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PacketCaptureListResult"]: + """Lists all packet capture sessions within the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PacketCaptureListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PacketCaptureListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_packet_captures_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_packet_captures_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PacketCaptureListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures"} # type: ignore +class ConnectionMonitorsOperations: + """ConnectionMonitorsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + parameters: "_models.ConnectionMonitor", + migrate: Optional[str] = None, + **kwargs: Any + ) -> "_models.ConnectionMonitorResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ConnectionMonitor') + + request = build_connection_monitors_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + migrate=migrate, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + parameters: "_models.ConnectionMonitor", + migrate: Optional[str] = None, + **kwargs: Any + ) -> AsyncLROPoller["_models.ConnectionMonitorResult"]: + """Create or update a connection monitor. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :param parameters: Parameters that define the operation to create a connection monitor. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitor + :param migrate: Value indicating whether connection monitor V1 should be migrated to V2 format. + Default value is None. + :type migrate: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ConnectionMonitorResult or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + parameters=parameters, + migrate=migrate, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> "_models.ConnectionMonitorResult": + """Gets a connection monitor by name. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ConnectionMonitorResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_get_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_delete_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified connection monitor. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ConnectionMonitorResult": + """Update tags of the specified connection monitor. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :param parameters: Parameters supplied to update connection monitor tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ConnectionMonitorResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_connection_monitors_update_tags_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + + async def _stop_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_stop_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._stop_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _stop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/stop"} # type: ignore + + + @distributed_trace_async + async def begin_stop( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Stops the specified connection monitor. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._stop_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/stop"} # type: ignore + + async def _start_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_start_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._start_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _start_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/start"} # type: ignore + + + @distributed_trace_async + async def begin_start( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Starts the specified connection monitor. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._start_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/start"} # type: ignore + + async def _query_initial( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> "_models.ConnectionMonitorQueryResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorQueryResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_query_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._query_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ConnectionMonitorQueryResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ConnectionMonitorQueryResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _query_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/query"} # type: ignore + + + @distributed_trace_async + async def begin_query( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.ConnectionMonitorQueryResult"]: + """Query a snapshot of the most recent connection states. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name given to the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ConnectionMonitorQueryResult or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorQueryResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorQueryResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._query_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectionMonitorQueryResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_query.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/query"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ConnectionMonitorListResult"]: + """Lists all connection monitors for the specified Network Watcher. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ConnectionMonitorListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_connection_monitors_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_connection_monitors_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ConnectionMonitorListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors"} # type: ignore +class FlowLogsOperations: + """FlowLogsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + parameters: "_models.FlowLog", + **kwargs: Any + ) -> "_models.FlowLog": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLog"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FlowLog') + + request = build_flow_logs_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FlowLog', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('FlowLog', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + parameters: "_models.FlowLog", + **kwargs: Any + ) -> AsyncLROPoller["_models.FlowLog"]: + """Create or update a flow log for the specified network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param flow_log_name: The name of the flow log. + :type flow_log_name: str + :param parameters: Parameters that define the create or update flow log resource. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FlowLog + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either FlowLog or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.FlowLog] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLog"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FlowLog', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.FlowLog": + """Update tags of the specified flow log. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param flow_log_name: The name of the flow log. + :type flow_log_name: str + :param parameters: Parameters supplied to update flow log tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FlowLog, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FlowLog + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLog"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_flow_logs_update_tags_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FlowLog', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + **kwargs: Any + ) -> "_models.FlowLog": + """Gets a flow log resource by name. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param flow_log_name: The name of the flow log resource. + :type flow_log_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FlowLog, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FlowLog + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLog"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_flow_logs_get_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FlowLog', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_flow_logs_delete_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified flow log resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param flow_log_name: The name of the flow log resource. + :type flow_log_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.FlowLogListResult"]: + """Lists all flow log resources for the specified Network Watcher. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FlowLogListResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.FlowLogListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_flow_logs_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_flow_logs_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("FlowLogListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs"} # type: ignore +class Operations: + """Operations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.OperationListResult"]: + """Lists all of the available Network Rest API operations. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OperationListResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.OperationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_operations_list_request( + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_operations_list_request( + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("OperationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/providers/Microsoft.Network/operations"} # type: ignore +class PrivateEndpointsOperations: + """PrivateEndpointsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + private_endpoint_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_endpoints_delete_request_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + private_endpoint_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified private endpoint. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + private_endpoint_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PrivateEndpoint": + """Gets the specified private endpoint by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpoint, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_endpoints_get_request( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + private_endpoint_name: str, + parameters: "_models.PrivateEndpoint", + **kwargs: Any + ) -> "_models.PrivateEndpoint": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PrivateEndpoint') + + request = build_private_endpoints_create_or_update_request_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PrivateEndpoint', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + private_endpoint_name: str, + parameters: "_models.PrivateEndpoint", + **kwargs: Any + ) -> AsyncLROPoller["_models.PrivateEndpoint"]: + """Creates or updates an private endpoint in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param parameters: Parameters supplied to the create or update private endpoint operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PrivateEndpoint or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpoint"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateEndpoint', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PrivateEndpointListResult"]: + """Gets all private endpoints in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_endpoints_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_endpoints_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateEndpointListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints"} # type: ignore + + @distributed_trace + def list_by_subscription( + self, + **kwargs: Any + ) -> AsyncIterable["_models.PrivateEndpointListResult"]: + """Gets all private endpoints in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_endpoints_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_subscription.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_endpoints_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateEndpointListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_subscription.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/privateEndpoints"} # type: ignore +class AvailablePrivateEndpointTypesOperations: + """AvailablePrivateEndpointTypesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> AsyncIterable["_models.AvailablePrivateEndpointTypesResult"]: + """Returns all of the resource types that can be linked to a Private Endpoint in this subscription + in this region. + + :param location: The location of the domain name. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailablePrivateEndpointTypesResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailablePrivateEndpointTypesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailablePrivateEndpointTypesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_private_endpoint_types_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_private_endpoint_types_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AvailablePrivateEndpointTypesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availablePrivateEndpointTypes"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + location: str, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.AvailablePrivateEndpointTypesResult"]: + """Returns all of the resource types that can be linked to a Private Endpoint in this subscription + in this region. + + :param location: The location of the domain name. + :type location: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailablePrivateEndpointTypesResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailablePrivateEndpointTypesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailablePrivateEndpointTypesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_private_endpoint_types_list_by_resource_group_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_private_endpoint_types_list_by_resource_group_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AvailablePrivateEndpointTypesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availablePrivateEndpointTypes"} # type: ignore +class PrivateDnsZoneGroupsOperations: + """PrivateDnsZoneGroupsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_dns_zone_groups_delete_request_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified private dns zone group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param private_dns_zone_group_name: The name of the private dns zone group. + :type private_dns_zone_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + **kwargs: Any + ) -> "_models.PrivateDnsZoneGroup": + """Gets the private dns zone group resource by specified private dns zone group name. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param private_dns_zone_group_name: The name of the private dns zone group. + :type private_dns_zone_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateDnsZoneGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateDnsZoneGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_dns_zone_groups_get_request( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateDnsZoneGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + parameters: "_models.PrivateDnsZoneGroup", + **kwargs: Any + ) -> "_models.PrivateDnsZoneGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateDnsZoneGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PrivateDnsZoneGroup') + + request = build_private_dns_zone_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PrivateDnsZoneGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PrivateDnsZoneGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + parameters: "_models.PrivateDnsZoneGroup", + **kwargs: Any + ) -> AsyncLROPoller["_models.PrivateDnsZoneGroup"]: + """Creates or updates a private dns zone group in the specified private endpoint. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param private_dns_zone_group_name: The name of the private dns zone group. + :type private_dns_zone_group_name: str + :param parameters: Parameters supplied to the create or update private dns zone group + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PrivateDnsZoneGroup or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateDnsZoneGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateDnsZoneGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + @distributed_trace + def list( + self, + private_endpoint_name: str, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PrivateDnsZoneGroupListResult"]: + """Gets all private dns zone groups in a private endpoint. + + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateDnsZoneGroupListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateDnsZoneGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_dns_zone_groups_list_request( + private_endpoint_name=private_endpoint_name, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_dns_zone_groups_list_request( + private_endpoint_name=private_endpoint_name, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateDnsZoneGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups"} # type: ignore +class PrivateLinkServicesOperations: + """PrivateLinkServicesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_link_services_delete_request_initial( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified private link service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + service_name=service_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + service_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PrivateLinkService": + """Gets the specified private link service by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateLinkService, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateLinkService + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_link_services_get_request( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateLinkService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + service_name: str, + parameters: "_models.PrivateLinkService", + **kwargs: Any + ) -> "_models.PrivateLinkService": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PrivateLinkService') + + request = build_private_link_services_create_or_update_request_initial( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PrivateLinkService', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PrivateLinkService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + service_name: str, + parameters: "_models.PrivateLinkService", + **kwargs: Any + ) -> AsyncLROPoller["_models.PrivateLinkService"]: + """Creates or updates an private link service in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param parameters: Parameters supplied to the create or update private link service operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PrivateLinkService + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PrivateLinkService or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateLinkService] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkService"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + service_name=service_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateLinkService', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PrivateLinkServiceListResult"]: + """Gets all private link services in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateLinkServiceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkServiceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateLinkServiceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices"} # type: ignore + + @distributed_trace + def list_by_subscription( + self, + **kwargs: Any + ) -> AsyncIterable["_models.PrivateLinkServiceListResult"]: + """Gets all private link service in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateLinkServiceListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkServiceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_subscription.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateLinkServiceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_subscription.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/privateLinkServices"} # type: ignore + + @distributed_trace_async + async def get_private_endpoint_connection( + self, + resource_group_name: str, + service_name: str, + pe_connection_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PrivateEndpointConnection": + """Get the specific private end point connection by specific private link service in the resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param pe_connection_name: The name of the private end point connection. + :type pe_connection_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpointConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_link_services_get_private_endpoint_connection_request( + resource_group_name=resource_group_name, + service_name=service_name, + pe_connection_name=pe_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_private_endpoint_connection.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_private_endpoint_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}"} # type: ignore + + + @distributed_trace_async + async def update_private_endpoint_connection( + self, + resource_group_name: str, + service_name: str, + pe_connection_name: str, + parameters: "_models.PrivateEndpointConnection", + **kwargs: Any + ) -> "_models.PrivateEndpointConnection": + """Approve or reject private end point connection for a private link service in a subscription. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param pe_connection_name: The name of the private end point connection. + :type pe_connection_name: str + :param parameters: Parameters supplied to approve or reject the private end point connection. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpointConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PrivateEndpointConnection') + + request = build_private_link_services_update_private_endpoint_connection_request( + resource_group_name=resource_group_name, + service_name=service_name, + pe_connection_name=pe_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_private_endpoint_connection.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_private_endpoint_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}"} # type: ignore + + + async def _delete_private_endpoint_connection_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_name: str, + pe_connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_link_services_delete_private_endpoint_connection_request_initial( + resource_group_name=resource_group_name, + service_name=service_name, + pe_connection_name=pe_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_private_endpoint_connection_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_private_endpoint_connection_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete_private_endpoint_connection( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_name: str, + pe_connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Delete private end point connection for a private link service in a subscription. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param pe_connection_name: The name of the private end point connection. + :type pe_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_private_endpoint_connection_initial( + resource_group_name=resource_group_name, + service_name=service_name, + pe_connection_name=pe_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete_private_endpoint_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}"} # type: ignore + + @distributed_trace + def list_private_endpoint_connections( + self, + resource_group_name: str, + service_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PrivateEndpointConnectionListResult"]: + """Gets all private end point connections for a specific private link service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointConnectionListResult or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_private_endpoint_connections_request( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_private_endpoint_connections.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_private_endpoint_connections_request( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateEndpointConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_private_endpoint_connections.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections"} # type: ignore + + async def _check_private_link_service_visibility_initial( + self, + location: str, + parameters: "_models.CheckPrivateLinkServiceVisibilityRequest", + **kwargs: Any + ) -> Optional["_models.PrivateLinkServiceVisibility"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.PrivateLinkServiceVisibility"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'CheckPrivateLinkServiceVisibilityRequest') + + request = build_private_link_services_check_private_link_service_visibility_request_initial( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._check_private_link_service_visibility_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PrivateLinkServiceVisibility', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _check_private_link_service_visibility_initial.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility"} # type: ignore + + + @distributed_trace_async + async def begin_check_private_link_service_visibility( + self, + location: str, + parameters: "_models.CheckPrivateLinkServiceVisibilityRequest", + **kwargs: Any + ) -> AsyncLROPoller["_models.PrivateLinkServiceVisibility"]: + """Checks whether the subscription is visible to private link service. + + :param location: The location of the domain name. + :type location: str + :param parameters: The request body of CheckPrivateLinkService API call. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.CheckPrivateLinkServiceVisibilityRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PrivateLinkServiceVisibility or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceVisibility] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkServiceVisibility"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._check_private_link_service_visibility_initial( + location=location, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateLinkServiceVisibility', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_check_private_link_service_visibility.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility"} # type: ignore + + async def _check_private_link_service_visibility_by_resource_group_initial( + self, + location: str, + resource_group_name: str, + parameters: "_models.CheckPrivateLinkServiceVisibilityRequest", + **kwargs: Any + ) -> Optional["_models.PrivateLinkServiceVisibility"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.PrivateLinkServiceVisibility"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'CheckPrivateLinkServiceVisibilityRequest') + + request = build_private_link_services_check_private_link_service_visibility_by_resource_group_request_initial( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._check_private_link_service_visibility_by_resource_group_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PrivateLinkServiceVisibility', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _check_private_link_service_visibility_by_resource_group_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility"} # type: ignore + + + @distributed_trace_async + async def begin_check_private_link_service_visibility_by_resource_group( + self, + location: str, + resource_group_name: str, + parameters: "_models.CheckPrivateLinkServiceVisibilityRequest", + **kwargs: Any + ) -> AsyncLROPoller["_models.PrivateLinkServiceVisibility"]: + """Checks whether the subscription is visible to private link service in the specified resource + group. + + :param location: The location of the domain name. + :type location: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param parameters: The request body of CheckPrivateLinkService API call. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.CheckPrivateLinkServiceVisibilityRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PrivateLinkServiceVisibility or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceVisibility] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkServiceVisibility"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._check_private_link_service_visibility_by_resource_group_initial( + location=location, + resource_group_name=resource_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateLinkServiceVisibility', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_check_private_link_service_visibility_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility"} # type: ignore + + @distributed_trace + def list_auto_approved_private_link_services( + self, + location: str, + **kwargs: Any + ) -> AsyncIterable["_models.AutoApprovedPrivateLinkServicesResult"]: + """Returns all of the private link service ids that can be linked to a Private Endpoint with auto + approved in this subscription in this region. + + :param location: The location of the domain name. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AutoApprovedPrivateLinkServicesResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AutoApprovedPrivateLinkServicesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AutoApprovedPrivateLinkServicesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_auto_approved_private_link_services_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_auto_approved_private_link_services.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_auto_approved_private_link_services_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AutoApprovedPrivateLinkServicesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_auto_approved_private_link_services.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/autoApprovedPrivateLinkServices"} # type: ignore + + @distributed_trace + def list_auto_approved_private_link_services_by_resource_group( + self, + location: str, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.AutoApprovedPrivateLinkServicesResult"]: + """Returns all of the private link service ids that can be linked to a Private Endpoint with auto + approved in this subscription in this region. + + :param location: The location of the domain name. + :type location: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AutoApprovedPrivateLinkServicesResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.AutoApprovedPrivateLinkServicesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AutoApprovedPrivateLinkServicesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_auto_approved_private_link_services_by_resource_group_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_auto_approved_private_link_services_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_auto_approved_private_link_services_by_resource_group_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AutoApprovedPrivateLinkServicesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_auto_approved_private_link_services_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/autoApprovedPrivateLinkServices"} # type: ignore +class PublicIPPrefixesOperations: + """PublicIPPrefixesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + public_ip_prefix_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_prefixes_delete_request_initial( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + public_ip_prefix_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified public IP prefix. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_prefix_name: The name of the PublicIpPrefix. + :type public_ip_prefix_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + public_ip_prefix_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PublicIPPrefix": + """Gets the specified public IP prefix in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_prefix_name: The name of the public IP prefix. + :type public_ip_prefix_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPPrefix, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_prefixes_get_request( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + public_ip_prefix_name: str, + parameters: "_models.PublicIPPrefix", + **kwargs: Any + ) -> "_models.PublicIPPrefix": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PublicIPPrefix') + + request = build_public_ip_prefixes_create_or_update_request_initial( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + public_ip_prefix_name: str, + parameters: "_models.PublicIPPrefix", + **kwargs: Any + ) -> AsyncLROPoller["_models.PublicIPPrefix"]: + """Creates or updates a static or dynamic public IP prefix. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_prefix_name: The name of the public IP prefix. + :type public_ip_prefix_name: str + :param parameters: Parameters supplied to the create or update public IP prefix operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PublicIPPrefix or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefix"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + public_ip_prefix_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.PublicIPPrefix": + """Updates public IP prefix tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_prefix_name: The name of the public IP prefix. + :type public_ip_prefix_name: str + :param parameters: Parameters supplied to update public IP prefix tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPPrefix, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_public_ip_prefixes_update_tags_request( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.PublicIPPrefixListResult"]: + """Gets all the public IP prefixes in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPPrefixListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefixListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_prefixes_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_prefixes_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPPrefixListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/publicIPPrefixes"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.PublicIPPrefixListResult"]: + """Gets all public IP prefixes in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPPrefixListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefixListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_prefixes_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_prefixes_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPPrefixListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes"} # type: ignore +class RouteFiltersOperations: + """RouteFiltersOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_filter_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_filters_delete_request_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_filter_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + route_filter_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.RouteFilter": + """Gets the specified route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param expand: Expands referenced express route bgp peering resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteFilter, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteFilter + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_filters_get_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteFilter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + route_filter_name: str, + route_filter_parameters: "_models.RouteFilter", + **kwargs: Any + ) -> "_models.RouteFilter": + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(route_filter_parameters, 'RouteFilter') + + request = build_route_filters_create_or_update_request_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('RouteFilter', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('RouteFilter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + route_filter_name: str, + route_filter_parameters: "_models.RouteFilter", + **kwargs: Any + ) -> AsyncLROPoller["_models.RouteFilter"]: + """Creates or updates a route filter in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param route_filter_parameters: Parameters supplied to the create or update route filter + operation. + :type route_filter_parameters: ~azure.mgmt.network.v2021_08_01.models.RouteFilter + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either RouteFilter or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.RouteFilter] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilter"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + route_filter_parameters=route_filter_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('RouteFilter', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + route_filter_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.RouteFilter": + """Updates tags of a route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param parameters: Parameters supplied to update route filter tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteFilter, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteFilter + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_route_filters_update_tags_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteFilter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.RouteFilterListResult"]: + """Gets all route filters in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteFilterListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteFilterListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_filters_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_filters_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("RouteFilterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.RouteFilterListResult"]: + """Gets all route filters in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteFilterListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteFilterListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_filters_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_filters_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("RouteFilterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/routeFilters"} # type: ignore +class RouteFilterRulesOperations: + """RouteFilterRulesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_filter_rules_delete_request_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified rule from a route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param rule_name: The name of the rule. + :type rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + **kwargs: Any + ) -> "_models.RouteFilterRule": + """Gets the specified rule from a route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param rule_name: The name of the rule. + :type rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteFilterRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteFilterRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_filter_rules_get_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteFilterRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + route_filter_rule_parameters: "_models.RouteFilterRule", + **kwargs: Any + ) -> "_models.RouteFilterRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(route_filter_rule_parameters, 'RouteFilterRule') + + request = build_route_filter_rules_create_or_update_request_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('RouteFilterRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('RouteFilterRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + route_filter_rule_parameters: "_models.RouteFilterRule", + **kwargs: Any + ) -> AsyncLROPoller["_models.RouteFilterRule"]: + """Creates or updates a route in the specified route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param rule_name: The name of the route filter rule. + :type rule_name: str + :param route_filter_rule_parameters: Parameters supplied to the create or update route filter + rule operation. + :type route_filter_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.RouteFilterRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either RouteFilterRule or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.RouteFilterRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + route_filter_rule_parameters=route_filter_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('RouteFilterRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + @distributed_trace + def list_by_route_filter( + self, + resource_group_name: str, + route_filter_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.RouteFilterRuleListResult"]: + """Gets all RouteFilterRules in a route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteFilterRuleListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteFilterRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_filter_rules_list_by_route_filter_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_route_filter.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_filter_rules_list_by_route_filter_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("RouteFilterRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_route_filter.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules"} # type: ignore +class RouteTablesOperations: + """RouteTablesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_table_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_tables_delete_request_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_table_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + route_table_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.RouteTable": + """Gets the specified route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteTable, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteTable + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_tables_get_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + route_table_name: str, + parameters: "_models.RouteTable", + **kwargs: Any + ) -> "_models.RouteTable": + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'RouteTable') + + request = build_route_tables_create_or_update_request_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('RouteTable', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('RouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + route_table_name: str, + parameters: "_models.RouteTable", + **kwargs: Any + ) -> AsyncLROPoller["_models.RouteTable"]: + """Create or updates a route table in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param parameters: Parameters supplied to the create or update route table operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.RouteTable + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either RouteTable or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.RouteTable] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTable"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('RouteTable', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + route_table_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.RouteTable": + """Updates a route table tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param parameters: Parameters supplied to update route table tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteTable, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteTable + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_route_tables_update_tags_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.RouteTableListResult"]: + """Gets all route tables in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteTableListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTableListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_tables_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_tables_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("RouteTableListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.RouteTableListResult"]: + """Gets all route tables in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteTableListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTableListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_tables_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_tables_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("RouteTableListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/routeTables"} # type: ignore +class RoutesOperations: + """RoutesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_routes_delete_request_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified route from a route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param route_name: The name of the route. + :type route_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + **kwargs: Any + ) -> "_models.Route": + """Gets the specified route from a route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param route_name: The name of the route. + :type route_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Route, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.Route + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Route"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_routes_get_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Route', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + route_parameters: "_models.Route", + **kwargs: Any + ) -> "_models.Route": + cls = kwargs.pop('cls', None) # type: ClsType["_models.Route"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(route_parameters, 'Route') + + request = build_routes_create_or_update_request_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('Route', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('Route', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + route_parameters: "_models.Route", + **kwargs: Any + ) -> AsyncLROPoller["_models.Route"]: + """Creates or updates a route in the specified route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param route_name: The name of the route. + :type route_name: str + :param route_parameters: Parameters supplied to the create or update route operation. + :type route_parameters: ~azure.mgmt.network.v2021_08_01.models.Route + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either Route or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.Route] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.Route"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + route_parameters=route_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('Route', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + route_table_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.RouteListResult"]: + """Gets all routes in a route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteListResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_routes_list_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_routes_list_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("RouteListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes"} # type: ignore +class SecurityPartnerProvidersOperations: + """SecurityPartnerProvidersOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + security_partner_provider_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_security_partner_providers_delete_request_initial( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + security_partner_provider_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified Security Partner Provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param security_partner_provider_name: The name of the Security Partner Provider. + :type security_partner_provider_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + security_partner_provider_name: str, + **kwargs: Any + ) -> "_models.SecurityPartnerProvider": + """Gets the specified Security Partner Provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param security_partner_provider_name: The name of the Security Partner Provider. + :type security_partner_provider_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SecurityPartnerProvider, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProvider"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_security_partner_providers_get_request( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + security_partner_provider_name: str, + parameters: "_models.SecurityPartnerProvider", + **kwargs: Any + ) -> "_models.SecurityPartnerProvider": + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProvider"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SecurityPartnerProvider') + + request = build_security_partner_providers_create_or_update_request_initial( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + security_partner_provider_name: str, + parameters: "_models.SecurityPartnerProvider", + **kwargs: Any + ) -> AsyncLROPoller["_models.SecurityPartnerProvider"]: + """Creates or updates the specified Security Partner Provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param security_partner_provider_name: The name of the Security Partner Provider. + :type security_partner_provider_name: str + :param parameters: Parameters supplied to the create or update Security Partner Provider + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either SecurityPartnerProvider or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProvider"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + security_partner_provider_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.SecurityPartnerProvider": + """Updates tags of a Security Partner Provider resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param security_partner_provider_name: The name of the Security Partner Provider. + :type security_partner_provider_name: str + :param parameters: Parameters supplied to update Security Partner Provider tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SecurityPartnerProvider, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProvider"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_security_partner_providers_update_tags_request( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.SecurityPartnerProviderListResult"]: + """Lists all Security Partner Providers in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SecurityPartnerProviderListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProviderListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProviderListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_security_partner_providers_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_security_partner_providers_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("SecurityPartnerProviderListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.SecurityPartnerProviderListResult"]: + """Gets all the Security Partner Providers in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SecurityPartnerProviderListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProviderListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProviderListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_security_partner_providers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_security_partner_providers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("SecurityPartnerProviderListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/securityPartnerProviders"} # type: ignore +class BgpServiceCommunitiesOperations: + """BgpServiceCommunitiesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.BgpServiceCommunityListResult"]: + """Gets all the available bgp service communities. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BgpServiceCommunityListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.BgpServiceCommunityListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpServiceCommunityListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_bgp_service_communities_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_bgp_service_communities_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("BgpServiceCommunityListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/bgpServiceCommunities"} # type: ignore +class ServiceEndpointPoliciesOperations: + """ServiceEndpointPoliciesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_endpoint_policy_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_endpoint_policies_delete_request_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_endpoint_policy_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified service endpoint policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.ServiceEndpointPolicy": + """Gets the specified service Endpoint Policies in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceEndpointPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_endpoint_policies_get_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + parameters: "_models.ServiceEndpointPolicy", + **kwargs: Any + ) -> "_models.ServiceEndpointPolicy": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ServiceEndpointPolicy') + + request = build_service_endpoint_policies_create_or_update_request_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + parameters: "_models.ServiceEndpointPolicy", + **kwargs: Any + ) -> AsyncLROPoller["_models.ServiceEndpointPolicy"]: + """Creates or updates a service Endpoint Policies. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :param parameters: Parameters supplied to the create or update service endpoint policy + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ServiceEndpointPolicy or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicy"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ServiceEndpointPolicy": + """Updates tags of a service endpoint policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :param parameters: Parameters supplied to update service endpoint policy tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceEndpointPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_service_endpoint_policies_update_tags_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ServiceEndpointPolicyListResult"]: + """Gets all the service endpoint policies in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServiceEndpointPolicyListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_service_endpoint_policies_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_service_endpoint_policies_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ServiceEndpointPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ServiceEndpointPolicies"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ServiceEndpointPolicyListResult"]: + """Gets all service endpoint Policies in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServiceEndpointPolicyListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_service_endpoint_policies_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_service_endpoint_policies_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ServiceEndpointPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies"} # type: ignore +class ServiceEndpointPolicyDefinitionsOperations: + """ServiceEndpointPolicyDefinitionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_endpoint_policy_definitions_delete_request_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified ServiceEndpoint policy definitions. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the Service Endpoint Policy. + :type service_endpoint_policy_name: str + :param service_endpoint_policy_definition_name: The name of the service endpoint policy + definition. + :type service_endpoint_policy_definition_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + **kwargs: Any + ) -> "_models.ServiceEndpointPolicyDefinition": + """Get the specified service endpoint policy definitions from service endpoint policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy name. + :type service_endpoint_policy_name: str + :param service_endpoint_policy_definition_name: The name of the service endpoint policy + definition name. + :type service_endpoint_policy_definition_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceEndpointPolicyDefinition, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyDefinition"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_endpoint_policy_definitions_get_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceEndpointPolicyDefinition', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + service_endpoint_policy_definitions: "_models.ServiceEndpointPolicyDefinition", + **kwargs: Any + ) -> "_models.ServiceEndpointPolicyDefinition": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyDefinition"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(service_endpoint_policy_definitions, 'ServiceEndpointPolicyDefinition') + + request = build_service_endpoint_policy_definitions_create_or_update_request_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ServiceEndpointPolicyDefinition', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ServiceEndpointPolicyDefinition', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + service_endpoint_policy_definitions: "_models.ServiceEndpointPolicyDefinition", + **kwargs: Any + ) -> AsyncLROPoller["_models.ServiceEndpointPolicyDefinition"]: + """Creates or updates a service endpoint policy definition in the specified service endpoint + policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :param service_endpoint_policy_definition_name: The name of the service endpoint policy + definition name. + :type service_endpoint_policy_definition_name: str + :param service_endpoint_policy_definitions: Parameters supplied to the create or update service + endpoint policy operation. + :type service_endpoint_policy_definitions: + ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ServiceEndpointPolicyDefinition or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyDefinition"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + service_endpoint_policy_definitions=service_endpoint_policy_definitions, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ServiceEndpointPolicyDefinition', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ServiceEndpointPolicyDefinitionListResult"]: + """Gets all service endpoint policy definitions in a service end point policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy name. + :type service_endpoint_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServiceEndpointPolicyDefinitionListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinitionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyDefinitionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_service_endpoint_policy_definitions_list_by_resource_group_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_service_endpoint_policy_definitions_list_by_resource_group_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ServiceEndpointPolicyDefinitionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions"} # type: ignore +class ServiceTagsOperations: + """ServiceTagsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def list( + self, + location: str, + **kwargs: Any + ) -> "_models.ServiceTagsListResult": + """Gets a list of service tag information resources. + + :param location: The location that will be used as a reference for version (not as a filter + based on location, you will get the list of service tags with prefix details across all regions + but limited to the cloud that your subscription belongs to). + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceTagsListResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceTagsListResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceTagsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_tags_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceTagsListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/serviceTags"} # type: ignore + +class ServiceTagInformationOperations: + """ServiceTagInformationOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + no_address_prefixes: Optional[bool] = None, + tag_name: Optional[str] = None, + **kwargs: Any + ) -> AsyncIterable["_models.ServiceTagInformationListResult"]: + """Gets a list of service tag information resources with pagination. + + :param location: The location that will be used as a reference for cloud (not as a filter based + on location, you will get the list of service tags with prefix details across all regions but + limited to the cloud that your subscription belongs to). + :type location: str + :param no_address_prefixes: Do not return address prefixes for the tag(s). Default value is + None. + :type no_address_prefixes: bool + :param tag_name: Return tag information for a particular tag. Default value is None. + :type tag_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServiceTagInformationListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ServiceTagInformationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceTagInformationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_service_tag_information_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + no_address_prefixes=no_address_prefixes, + tag_name=tag_name, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_service_tag_information_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + no_address_prefixes=no_address_prefixes, + tag_name=tag_name, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ServiceTagInformationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/serviceTagDetails"} # type: ignore +class UsagesOperations: + """UsagesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> AsyncIterable["_models.UsagesListResult"]: + """List network usages for a subscription. + + :param location: The location where resource usage is queried. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either UsagesListResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.UsagesListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.UsagesListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_usages_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_usages_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("UsagesListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/usages"} # type: ignore +class VirtualNetworksOperations: + """VirtualNetworksOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_networks_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_network_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.VirtualNetwork": + """Gets the specified virtual network by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetwork, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetwork + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_networks_get_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_name: str, + parameters: "_models.VirtualNetwork", + **kwargs: Any + ) -> "_models.VirtualNetwork": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualNetwork') + + request = build_virtual_networks_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_name: str, + parameters: "_models.VirtualNetwork", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualNetwork"]: + """Creates or updates a virtual network in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param parameters: Parameters supplied to the create or update virtual network operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetwork + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualNetwork or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetwork] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + virtual_network_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VirtualNetwork": + """Updates a virtual network tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param parameters: Parameters supplied to update virtual network tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetwork, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetwork + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_virtual_networks_update_tags_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualNetworkListResult"]: + """Gets all virtual networks in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_networks_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_networks_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualNetworks"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualNetworkListResult"]: + """Gets all virtual networks in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_networks_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_networks_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks"} # type: ignore + + @distributed_trace_async + async def check_ip_address_availability( + self, + resource_group_name: str, + virtual_network_name: str, + ip_address: str, + **kwargs: Any + ) -> "_models.IPAddressAvailabilityResult": + """Checks whether a private IP address is available for use. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param ip_address: The private IP address to be verified. + :type ip_address: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IPAddressAvailabilityResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IPAddressAvailabilityResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IPAddressAvailabilityResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_networks_check_ip_address_availability_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + ip_address=ip_address, + template_url=self.check_ip_address_availability.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IPAddressAvailabilityResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + check_ip_address_availability.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/CheckIPAddressAvailability"} # type: ignore + + + @distributed_trace + def list_usage( + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualNetworkListUsageResult"]: + """Lists usage stats. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkListUsageResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkListUsageResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkListUsageResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_networks_list_usage_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_usage.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_networks_list_usage_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkListUsageResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_usage.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/usages"} # type: ignore +class SubnetsOperations: + """SubnetsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_subnets_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified subnet. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.Subnet": + """Gets the specified subnet by virtual network and resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Subnet, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.Subnet + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Subnet"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_subnets_get_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Subnet', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subnet_parameters: "_models.Subnet", + **kwargs: Any + ) -> "_models.Subnet": + cls = kwargs.pop('cls', None) # type: ClsType["_models.Subnet"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(subnet_parameters, 'Subnet') + + request = build_subnets_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('Subnet', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('Subnet', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subnet_parameters: "_models.Subnet", + **kwargs: Any + ) -> AsyncLROPoller["_models.Subnet"]: + """Creates or updates a subnet in the specified virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :param subnet_parameters: Parameters supplied to the create or update subnet operation. + :type subnet_parameters: ~azure.mgmt.network.v2021_08_01.models.Subnet + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either Subnet or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.Subnet] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.Subnet"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subnet_parameters=subnet_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('Subnet', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + async def _prepare_network_policies_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + prepare_network_policies_request_parameters: "_models.PrepareNetworkPoliciesRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(prepare_network_policies_request_parameters, 'PrepareNetworkPoliciesRequest') + + request = build_subnets_prepare_network_policies_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._prepare_network_policies_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _prepare_network_policies_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/PrepareNetworkPolicies"} # type: ignore + + + @distributed_trace_async + async def begin_prepare_network_policies( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + prepare_network_policies_request_parameters: "_models.PrepareNetworkPoliciesRequest", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Prepares a subnet by applying network intent policies. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :param prepare_network_policies_request_parameters: Parameters supplied to prepare subnet by + applying network intent policies. + :type prepare_network_policies_request_parameters: + ~azure.mgmt.network.v2021_08_01.models.PrepareNetworkPoliciesRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._prepare_network_policies_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + prepare_network_policies_request_parameters=prepare_network_policies_request_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_prepare_network_policies.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/PrepareNetworkPolicies"} # type: ignore + + async def _unprepare_network_policies_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + unprepare_network_policies_request_parameters: "_models.UnprepareNetworkPoliciesRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(unprepare_network_policies_request_parameters, 'UnprepareNetworkPoliciesRequest') + + request = build_subnets_unprepare_network_policies_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._unprepare_network_policies_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _unprepare_network_policies_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/UnprepareNetworkPolicies"} # type: ignore + + + @distributed_trace_async + async def begin_unprepare_network_policies( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + unprepare_network_policies_request_parameters: "_models.UnprepareNetworkPoliciesRequest", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Unprepares a subnet by removing network intent policies. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :param unprepare_network_policies_request_parameters: Parameters supplied to unprepare subnet + to remove network intent policies. + :type unprepare_network_policies_request_parameters: + ~azure.mgmt.network.v2021_08_01.models.UnprepareNetworkPoliciesRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._unprepare_network_policies_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + unprepare_network_policies_request_parameters=unprepare_network_policies_request_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_unprepare_network_policies.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/UnprepareNetworkPolicies"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.SubnetListResult"]: + """Gets all subnets in a virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SubnetListResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.SubnetListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SubnetListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_subnets_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_subnets_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("SubnetListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets"} # type: ignore +class ResourceNavigationLinksOperations: + """ResourceNavigationLinksOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def list( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + **kwargs: Any + ) -> "_models.ResourceNavigationLinksListResult": + """Gets a list of resource navigation links for a subnet. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ResourceNavigationLinksListResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ResourceNavigationLinksListResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourceNavigationLinksListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_resource_navigation_links_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ResourceNavigationLinksListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/ResourceNavigationLinks"} # type: ignore + +class ServiceAssociationLinksOperations: + """ServiceAssociationLinksOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def list( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + **kwargs: Any + ) -> "_models.ServiceAssociationLinksListResult": + """Gets a list of service association links for a subnet. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceAssociationLinksListResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceAssociationLinksListResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceAssociationLinksListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_association_links_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceAssociationLinksListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/ServiceAssociationLinks"} # type: ignore + +class VirtualNetworkPeeringsOperations: + """VirtualNetworkPeeringsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_peerings_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified virtual network peering. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param virtual_network_peering_name: The name of the virtual network peering. + :type virtual_network_peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkPeering": + """Gets the specified virtual network peering. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param virtual_network_peering_name: The name of the virtual network peering. + :type virtual_network_peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkPeering, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_peerings_get_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + virtual_network_peering_parameters: "_models.VirtualNetworkPeering", + sync_remote_address_space: Optional[Union[str, "_models.SyncRemoteAddressSpace"]] = None, + **kwargs: Any + ) -> "_models.VirtualNetworkPeering": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(virtual_network_peering_parameters, 'VirtualNetworkPeering') + + request = build_virtual_network_peerings_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + sync_remote_address_space=sync_remote_address_space, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkPeering', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + virtual_network_peering_parameters: "_models.VirtualNetworkPeering", + sync_remote_address_space: Optional[Union[str, "_models.SyncRemoteAddressSpace"]] = None, + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualNetworkPeering"]: + """Creates or updates a peering in the specified virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param virtual_network_peering_name: The name of the peering. + :type virtual_network_peering_name: str + :param virtual_network_peering_parameters: Parameters supplied to the create or update virtual + network peering operation. + :type virtual_network_peering_parameters: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering + :param sync_remote_address_space: Parameter indicates the intention to sync the peering with + the current address space on the remote vNet after it's updated. Default value is None. + :type sync_remote_address_space: str or + ~azure.mgmt.network.v2021_08_01.models.SyncRemoteAddressSpace + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualNetworkPeering or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkPeering"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + virtual_network_peering_parameters=virtual_network_peering_parameters, + sync_remote_address_space=sync_remote_address_space, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkPeering', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualNetworkPeeringListResult"]: + """Gets all virtual network peerings in a virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkPeeringListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeeringListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkPeeringListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_peerings_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_peerings_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkPeeringListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings"} # type: ignore +class VirtualNetworkGatewaysOperations: # pylint: disable=too-many-public-methods + """VirtualNetworkGatewaysOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VirtualNetworkGateway", + **kwargs: Any + ) -> "_models.VirtualNetworkGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualNetworkGateway') + + request = build_virtual_network_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VirtualNetworkGateway", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualNetworkGateway"]: + """Creates or updates a virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Parameters supplied to create or update virtual network gateway operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualNetworkGateway or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkGateway": + """Gets the specified virtual network gateway by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_request( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified virtual network gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + async def _update_tags_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.VirtualNetworkGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VirtualNetworkGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_virtual_network_gateways_update_tags_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_update_tags( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualNetworkGateway"]: + """Updates a virtual network gateway tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Parameters supplied to update virtual network gateway tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualNetworkGateway or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_tags_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualNetworkGatewayListResult"]: + """Gets all virtual network gateways by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways"} # type: ignore + + @distributed_trace + def list_connections( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualNetworkGatewayListConnectionsResult"]: + """Gets all the connections in a virtual network gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkGatewayListConnectionsResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayListConnectionsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayListConnectionsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_gateways_list_connections_request( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_connections.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_gateways_list_connections_request( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkGatewayListConnectionsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_connections.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/connections"} # type: ignore + + async def _reset_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + gateway_vip: Optional[str] = None, + **kwargs: Any + ) -> Optional["_models.VirtualNetworkGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VirtualNetworkGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_reset_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + gateway_vip=gateway_vip, + template_url=self._reset_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _reset_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/reset"} # type: ignore + + + @distributed_trace_async + async def begin_reset( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + gateway_vip: Optional[str] = None, + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualNetworkGateway"]: + """Resets the primary of the virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param gateway_vip: Virtual network gateway vip address supplied to the begin reset of the + active-active feature enabled gateway. Default value is None. + :type gateway_vip: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualNetworkGateway or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._reset_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + gateway_vip=gateway_vip, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/reset"} # type: ignore + + async def _reset_vpn_client_shared_key_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_reset_vpn_client_shared_key_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._reset_vpn_client_shared_key_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reset_vpn_client_shared_key_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/resetvpnclientsharedkey"} # type: ignore + + + @distributed_trace_async + async def begin_reset_vpn_client_shared_key( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Resets the VPN client shared key of the virtual network gateway in the specified resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._reset_vpn_client_shared_key_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset_vpn_client_shared_key.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/resetvpnclientsharedkey"} # type: ignore + + async def _generatevpnclientpackage_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnClientParameters", + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnClientParameters') + + request = build_virtual_network_gateways_generatevpnclientpackage_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._generatevpnclientpackage_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _generatevpnclientpackage_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnclientpackage"} # type: ignore + + + @distributed_trace_async + async def begin_generatevpnclientpackage( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnClientParameters", + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Generates VPN client package for P2S client of the virtual network gateway in the specified + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Parameters supplied to the generate virtual network gateway VPN client + package operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnClientParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._generatevpnclientpackage_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_generatevpnclientpackage.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnclientpackage"} # type: ignore + + async def _generate_vpn_profile_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnClientParameters", + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnClientParameters') + + request = build_virtual_network_gateways_generate_vpn_profile_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._generate_vpn_profile_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _generate_vpn_profile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile"} # type: ignore + + + @distributed_trace_async + async def begin_generate_vpn_profile( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnClientParameters", + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Generates VPN profile for P2S client of the virtual network gateway in the specified resource + group. Used for IKEV2 and radius based authentication. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Parameters supplied to the generate virtual network gateway VPN client + package operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnClientParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._generate_vpn_profile_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_generate_vpn_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile"} # type: ignore + + async def _get_vpn_profile_package_url_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_vpn_profile_package_url_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_vpn_profile_package_url_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_vpn_profile_package_url_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl"} # type: ignore + + + @distributed_trace_async + async def begin_get_vpn_profile_package_url( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Gets pre-generated VPN profile for P2S client of the virtual network gateway in the specified + resource group. The profile needs to be generated first using generateVpnProfile. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_vpn_profile_package_url_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_vpn_profile_package_url.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl"} # type: ignore + + async def _get_bgp_peer_status_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + peer: Optional[str] = None, + **kwargs: Any + ) -> Optional["_models.BgpPeerStatusListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BgpPeerStatusListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_bgp_peer_status_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + peer=peer, + template_url=self._get_bgp_peer_status_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BgpPeerStatusListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_bgp_peer_status_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getBgpPeerStatus"} # type: ignore + + + @distributed_trace_async + async def begin_get_bgp_peer_status( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + peer: Optional[str] = None, + **kwargs: Any + ) -> AsyncLROPoller["_models.BgpPeerStatusListResult"]: + """The GetBgpPeerStatus operation retrieves the status of all BGP peers. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param peer: The IP address of the peer to retrieve the status of. Default value is None. + :type peer: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either BgpPeerStatusListResult or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.BgpPeerStatusListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpPeerStatusListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_bgp_peer_status_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + peer=peer, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BgpPeerStatusListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_bgp_peer_status.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getBgpPeerStatus"} # type: ignore + + @distributed_trace_async + async def supported_vpn_devices( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> str: + """Gets a xml format representation for supported vpn devices. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: str, or the result of cls(response) + :rtype: str + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[str] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_supported_vpn_devices_request( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.supported_vpn_devices.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + supported_vpn_devices.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/supportedvpndevices"} # type: ignore + + + async def _get_learned_routes_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> Optional["_models.GatewayRouteListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.GatewayRouteListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_learned_routes_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_learned_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('GatewayRouteListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_learned_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getLearnedRoutes"} # type: ignore + + + @distributed_trace_async + async def begin_get_learned_routes( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.GatewayRouteListResult"]: + """This operation retrieves a list of routes the virtual network gateway has learned, including + routes learned from BGP peers. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either GatewayRouteListResult or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.GatewayRouteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.GatewayRouteListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_learned_routes_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('GatewayRouteListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_learned_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getLearnedRoutes"} # type: ignore + + async def _get_advertised_routes_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + peer: str, + **kwargs: Any + ) -> Optional["_models.GatewayRouteListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.GatewayRouteListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_advertised_routes_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + peer=peer, + template_url=self._get_advertised_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('GatewayRouteListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_advertised_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getAdvertisedRoutes"} # type: ignore + + + @distributed_trace_async + async def begin_get_advertised_routes( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + peer: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.GatewayRouteListResult"]: + """This operation retrieves a list of routes the virtual network gateway is advertising to the + specified peer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param peer: The IP address of the peer. + :type peer: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either GatewayRouteListResult or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.GatewayRouteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.GatewayRouteListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_advertised_routes_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + peer=peer, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('GatewayRouteListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_advertised_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getAdvertisedRoutes"} # type: ignore + + async def _set_vpnclient_ipsec_parameters_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + vpnclient_ipsec_params: "_models.VpnClientIPsecParameters", + **kwargs: Any + ) -> Optional["_models.VpnClientIPsecParameters"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnClientIPsecParameters"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpnclient_ipsec_params, 'VpnClientIPsecParameters') + + request = build_virtual_network_gateways_set_vpnclient_ipsec_parameters_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._set_vpnclient_ipsec_parameters_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnClientIPsecParameters', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _set_vpnclient_ipsec_parameters_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/setvpnclientipsecparameters"} # type: ignore + + + @distributed_trace_async + async def begin_set_vpnclient_ipsec_parameters( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + vpnclient_ipsec_params: "_models.VpnClientIPsecParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnClientIPsecParameters"]: + """The Set VpnclientIpsecParameters operation sets the vpnclient ipsec policy for P2S client of + virtual network gateway in the specified resource group through Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param vpnclient_ipsec_params: Parameters supplied to the Begin Set vpnclient ipsec parameters + of Virtual Network Gateway P2S client operation through Network resource provider. + :type vpnclient_ipsec_params: ~azure.mgmt.network.v2021_08_01.models.VpnClientIPsecParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnClientIPsecParameters or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnClientIPsecParameters] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnClientIPsecParameters"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._set_vpnclient_ipsec_parameters_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + vpnclient_ipsec_params=vpnclient_ipsec_params, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnClientIPsecParameters', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_set_vpnclient_ipsec_parameters.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/setvpnclientipsecparameters"} # type: ignore + + async def _get_vpnclient_ipsec_parameters_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> "_models.VpnClientIPsecParameters": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnClientIPsecParameters"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_vpnclient_ipsec_parameters_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_vpnclient_ipsec_parameters_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnClientIPsecParameters', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_vpnclient_ipsec_parameters_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnclientipsecparameters"} # type: ignore + + + @distributed_trace_async + async def begin_get_vpnclient_ipsec_parameters( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnClientIPsecParameters"]: + """The Get VpnclientIpsecParameters operation retrieves information about the vpnclient ipsec + policy for P2S client of virtual network gateway in the specified resource group through + Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The virtual network gateway name. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnClientIPsecParameters or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnClientIPsecParameters] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnClientIPsecParameters"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_vpnclient_ipsec_parameters_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnClientIPsecParameters', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_vpnclient_ipsec_parameters.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnclientipsecparameters"} # type: ignore + + @distributed_trace_async + async def vpn_device_configuration_script( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VpnDeviceScriptParameters", + **kwargs: Any + ) -> str: + """Gets a xml format representation for vpn device configuration script. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection for which the configuration script is generated. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to the generate vpn device script operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnDeviceScriptParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: str, or the result of cls(response) + :rtype: str + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[str] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnDeviceScriptParameters') + + request = build_virtual_network_gateways_vpn_device_configuration_script_request( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.vpn_device_configuration_script.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + vpn_device_configuration_script.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/vpndeviceconfigurationscript"} # type: ignore + + + async def _start_packet_capture_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: Optional["_models.VpnPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnPacketCaptureStartParameters') + else: + _json = None + + request = build_virtual_network_gateways_start_packet_capture_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._start_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _start_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/startPacketCapture"} # type: ignore + + + @distributed_trace_async + async def begin_start_packet_capture( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: Optional["_models.VpnPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Starts packet capture on virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Virtual network gateway packet capture parameters supplied to start packet + capture on gateway. Default value is None. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnPacketCaptureStartParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._start_packet_capture_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/startPacketCapture"} # type: ignore + + async def _stop_packet_capture_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnPacketCaptureStopParameters", + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnPacketCaptureStopParameters') + + request = build_virtual_network_gateways_stop_packet_capture_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._stop_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _stop_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/stopPacketCapture"} # type: ignore + + + @distributed_trace_async + async def begin_stop_packet_capture( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnPacketCaptureStopParameters", + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Stops packet capture on virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Virtual network gateway packet capture parameters supplied to stop packet + capture on gateway. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnPacketCaptureStopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._stop_packet_capture_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/stopPacketCapture"} # type: ignore + + async def _get_vpnclient_connection_health_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> Optional["_models.VpnClientConnectionHealthDetailListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnClientConnectionHealthDetailListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_vpnclient_connection_health_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_vpnclient_connection_health_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnClientConnectionHealthDetailListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_vpnclient_connection_health_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getVpnClientConnectionHealth"} # type: ignore + + + @distributed_trace_async + async def begin_get_vpnclient_connection_health( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnClientConnectionHealthDetailListResult"]: + """Get VPN client connection health detail per P2S client connection of the virtual network + gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either + VpnClientConnectionHealthDetailListResult or the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnClientConnectionHealthDetailListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnClientConnectionHealthDetailListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_vpnclient_connection_health_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnClientConnectionHealthDetailListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_vpnclient_connection_health.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getVpnClientConnectionHealth"} # type: ignore + + async def _disconnect_virtual_network_gateway_vpn_connections_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + request: "_models.P2SVpnConnectionRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'P2SVpnConnectionRequest') + + request = build_virtual_network_gateways_disconnect_virtual_network_gateway_vpn_connections_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._disconnect_virtual_network_gateway_vpn_connections_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _disconnect_virtual_network_gateway_vpn_connections_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/disconnectVirtualNetworkGatewayVpnConnections"} # type: ignore + + + @distributed_trace_async + async def begin_disconnect_virtual_network_gateway_vpn_connections( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + request: "_models.P2SVpnConnectionRequest", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Disconnect vpn connections of virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param request: The parameters are supplied to disconnect vpn connections. + :type request: ~azure.mgmt.network.v2021_08_01.models.P2SVpnConnectionRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._disconnect_virtual_network_gateway_vpn_connections_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + request=request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_disconnect_virtual_network_gateway_vpn_connections.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/disconnectVirtualNetworkGatewayVpnConnections"} # type: ignore +class VirtualNetworkGatewayConnectionsOperations: # pylint: disable=too-many-public-methods + """VirtualNetworkGatewayConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VirtualNetworkGatewayConnection", + **kwargs: Any + ) -> "_models.VirtualNetworkGatewayConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualNetworkGatewayConnection') + + request = build_virtual_network_gateway_connections_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VirtualNetworkGatewayConnection", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualNetworkGatewayConnection"]: + """Creates or updates a virtual network gateway connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to the create or update virtual network gateway + connection operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualNetworkGatewayConnection or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkGatewayConnection": + """Gets the specified virtual network gateway connection by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkGatewayConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_get_request( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified virtual network Gateway connection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + async def _update_tags_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.VirtualNetworkGatewayConnection"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VirtualNetworkGatewayConnection"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_virtual_network_gateway_connections_update_tags_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_update_tags( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualNetworkGatewayConnection"]: + """Updates a virtual network gateway connection tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to update virtual network gateway connection tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualNetworkGatewayConnection or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_tags_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + async def _set_shared_key_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.ConnectionSharedKey", + **kwargs: Any + ) -> "_models.ConnectionSharedKey": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionSharedKey"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ConnectionSharedKey') + + request = build_virtual_network_gateway_connections_set_shared_key_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._set_shared_key_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ConnectionSharedKey', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ConnectionSharedKey', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _set_shared_key_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey"} # type: ignore + + + @distributed_trace_async + async def begin_set_shared_key( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.ConnectionSharedKey", + **kwargs: Any + ) -> AsyncLROPoller["_models.ConnectionSharedKey"]: + """The Put VirtualNetworkGatewayConnectionSharedKey operation sets the virtual network gateway + connection shared key for passed virtual network gateway connection in the specified resource + group through Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The virtual network gateway connection name. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to the Begin Set Virtual Network Gateway connection + Shared key operation throughNetwork resource provider. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ConnectionSharedKey + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ConnectionSharedKey or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectionSharedKey] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionSharedKey"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._set_shared_key_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectionSharedKey', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_set_shared_key.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey"} # type: ignore + + @distributed_trace_async + async def get_shared_key( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> "_models.ConnectionSharedKey": + """The Get VirtualNetworkGatewayConnectionSharedKey operation retrieves information about the + specified virtual network gateway connection shared key through Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The virtual network gateway connection shared + key name. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ConnectionSharedKey, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ConnectionSharedKey + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionSharedKey"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_get_shared_key_request( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get_shared_key.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ConnectionSharedKey', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_shared_key.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualNetworkGatewayConnectionListResult"]: + """The List VirtualNetworkGatewayConnections operation retrieves all the virtual network gateways + connections created. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkGatewayConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_gateway_connections_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_gateway_connections_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkGatewayConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections"} # type: ignore + + async def _reset_shared_key_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.ConnectionResetSharedKey", + **kwargs: Any + ) -> Optional["_models.ConnectionResetSharedKey"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ConnectionResetSharedKey"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ConnectionResetSharedKey') + + request = build_virtual_network_gateway_connections_reset_shared_key_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._reset_shared_key_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ConnectionResetSharedKey', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _reset_shared_key_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey/reset"} # type: ignore + + + @distributed_trace_async + async def begin_reset_shared_key( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.ConnectionResetSharedKey", + **kwargs: Any + ) -> AsyncLROPoller["_models.ConnectionResetSharedKey"]: + """The VirtualNetworkGatewayConnectionResetSharedKey operation resets the virtual network gateway + connection shared key for passed virtual network gateway connection in the specified resource + group through Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The virtual network gateway connection reset + shared key Name. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to the begin reset virtual network gateway connection + shared key operation through network resource provider. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ConnectionResetSharedKey + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ConnectionResetSharedKey or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectionResetSharedKey] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionResetSharedKey"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._reset_shared_key_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectionResetSharedKey', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset_shared_key.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey/reset"} # type: ignore + + async def _start_packet_capture_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: Optional["_models.VpnPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnPacketCaptureStartParameters') + else: + _json = None + + request = build_virtual_network_gateway_connections_start_packet_capture_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._start_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _start_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/startPacketCapture"} # type: ignore + + + @distributed_trace_async + async def begin_start_packet_capture( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: Optional["_models.VpnPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Starts packet capture on virtual network gateway connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :param parameters: Virtual network gateway packet capture parameters supplied to start packet + capture on gateway connection. Default value is None. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnPacketCaptureStartParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._start_packet_capture_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/startPacketCapture"} # type: ignore + + async def _stop_packet_capture_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VpnPacketCaptureStopParameters", + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnPacketCaptureStopParameters') + + request = build_virtual_network_gateway_connections_stop_packet_capture_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._stop_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _stop_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/stopPacketCapture"} # type: ignore + + + @distributed_trace_async + async def begin_stop_packet_capture( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VpnPacketCaptureStopParameters", + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Stops packet capture on virtual network gateway connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + Connection. + :type virtual_network_gateway_connection_name: str + :param parameters: Virtual network gateway packet capture parameters supplied to stop packet + capture on gateway connection. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnPacketCaptureStopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._stop_packet_capture_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/stopPacketCapture"} # type: ignore + + async def _get_ike_sas_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_get_ike_sas_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_ike_sas_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_ike_sas_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/getikesas"} # type: ignore + + + @distributed_trace_async + async def begin_get_ike_sas( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Lists IKE Security Associations for the virtual network gateway connection in the specified + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + Connection. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_ike_sas_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_ike_sas.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/getikesas"} # type: ignore + + async def _reset_connection_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_reset_connection_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._reset_connection_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reset_connection_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/resetconnection"} # type: ignore + + + @distributed_trace_async + async def begin_reset_connection( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Resets the virtual network gateway connection specified. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + Connection. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._reset_connection_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/resetconnection"} # type: ignore +class LocalNetworkGatewaysOperations: + """LocalNetworkGatewaysOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + local_network_gateway_name: str, + parameters: "_models.LocalNetworkGateway", + **kwargs: Any + ) -> "_models.LocalNetworkGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'LocalNetworkGateway') + + request = build_local_network_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + local_network_gateway_name: str, + parameters: "_models.LocalNetworkGateway", + **kwargs: Any + ) -> AsyncLROPoller["_models.LocalNetworkGateway"]: + """Creates or updates a local network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param local_network_gateway_name: The name of the local network gateway. + :type local_network_gateway_name: str + :param parameters: Parameters supplied to the create or update local network gateway operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either LocalNetworkGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + local_network_gateway_name: str, + **kwargs: Any + ) -> "_models.LocalNetworkGateway": + """Gets the specified local network gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param local_network_gateway_name: The name of the local network gateway. + :type local_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LocalNetworkGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_local_network_gateways_get_request( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + local_network_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_local_network_gateways_delete_request_initial( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + local_network_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified local network gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param local_network_gateway_name: The name of the local network gateway. + :type local_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + local_network_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.LocalNetworkGateway": + """Updates a local network gateway tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param local_network_gateway_name: The name of the local network gateway. + :type local_network_gateway_name: str + :param parameters: Parameters supplied to update local network gateway tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LocalNetworkGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_local_network_gateways_update_tags_request( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.LocalNetworkGatewayListResult"]: + """Gets all the local network gateways in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LocalNetworkGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.LocalNetworkGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_local_network_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_local_network_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("LocalNetworkGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways"} # type: ignore +class VirtualNetworkGatewayNatRulesOperations: + """VirtualNetworkGatewayNatRulesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkGatewayNatRule": + """Retrieves the details of a nat rule. + + :param resource_group_name: The resource group name of the Virtual Network Gateway. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the gateway. + :type virtual_network_gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkGatewayNatRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_nat_rules_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkGatewayNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + nat_rule_parameters: "_models.VirtualNetworkGatewayNatRule", + **kwargs: Any + ) -> "_models.VirtualNetworkGatewayNatRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(nat_rule_parameters, 'VirtualNetworkGatewayNatRule') + + request = build_virtual_network_gateway_nat_rules_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGatewayNatRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkGatewayNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + nat_rule_parameters: "_models.VirtualNetworkGatewayNatRule", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualNetworkGatewayNatRule"]: + """Creates a nat rule to a scalable virtual network gateway if it doesn't exist else updates the + existing nat rules. + + :param resource_group_name: The resource group name of the Virtual Network Gateway. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the gateway. + :type virtual_network_gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :param nat_rule_parameters: Parameters supplied to create or Update a Nat Rule. + :type nat_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualNetworkGatewayNatRule or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayNatRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + nat_rule_parameters=nat_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGatewayNatRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_nat_rules_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a nat rule. + + :param resource_group_name: The resource group name of the Virtual Network Gateway. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the gateway. + :type virtual_network_gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + @distributed_trace + def list_by_virtual_network_gateway( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVirtualNetworkGatewayNatRulesResult"]: + """Retrieves all nat rules for a particular virtual network gateway. + + :param resource_group_name: The resource group name of the virtual network gateway. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualNetworkGatewayNatRulesResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualNetworkGatewayNatRulesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualNetworkGatewayNatRulesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_gateway_nat_rules_list_by_virtual_network_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + template_url=self.list_by_virtual_network_gateway.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_gateway_nat_rules_list_by_virtual_network_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualNetworkGatewayNatRulesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_virtual_network_gateway.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules"} # type: ignore +class VirtualNetworkTapsOperations: + """VirtualNetworkTapsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + tap_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_taps_delete_request_initial( + resource_group_name=resource_group_name, + tap_name=tap_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + tap_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified virtual network tap. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param tap_name: The name of the virtual network tap. + :type tap_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + tap_name=tap_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + tap_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkTap": + """Gets information about the specified virtual network tap. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param tap_name: The name of virtual network tap. + :type tap_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkTap, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTap"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_taps_get_request( + resource_group_name=resource_group_name, + tap_name=tap_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + tap_name: str, + parameters: "_models.VirtualNetworkTap", + **kwargs: Any + ) -> "_models.VirtualNetworkTap": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTap"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualNetworkTap') + + request = build_virtual_network_taps_create_or_update_request_initial( + resource_group_name=resource_group_name, + tap_name=tap_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + tap_name: str, + parameters: "_models.VirtualNetworkTap", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualNetworkTap"]: + """Creates or updates a Virtual Network Tap. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param tap_name: The name of the virtual network tap. + :type tap_name: str + :param parameters: Parameters supplied to the create or update virtual network tap operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualNetworkTap or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTap"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + tap_name=tap_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + tap_name: str, + tap_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VirtualNetworkTap": + """Updates an VirtualNetworkTap tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param tap_name: The name of the tap. + :type tap_name: str + :param tap_parameters: Parameters supplied to update VirtualNetworkTap tags. + :type tap_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkTap, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTap"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(tap_parameters, 'TagsObject') + + request = build_virtual_network_taps_update_tags_request( + resource_group_name=resource_group_name, + tap_name=tap_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualNetworkTapListResult"]: + """Gets all the VirtualNetworkTaps in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkTapListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTapListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTapListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_taps_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_taps_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkTapListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualNetworkTaps"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualNetworkTapListResult"]: + """Gets all the VirtualNetworkTaps in a subscription. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkTapListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTapListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTapListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_taps_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_taps_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkTapListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps"} # type: ignore +class VirtualRoutersOperations: + """VirtualRoutersOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_router_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_routers_delete_request_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_router_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified Virtual Router. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_router_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.VirtualRouter": + """Gets the specified Virtual Router. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualRouter, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualRouter + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_routers_get_request( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualRouter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_router_name: str, + parameters: "_models.VirtualRouter", + **kwargs: Any + ) -> "_models.VirtualRouter": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualRouter') + + request = build_virtual_routers_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualRouter', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualRouter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_router_name: str, + parameters: "_models.VirtualRouter", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualRouter"]: + """Creates or updates the specified Virtual Router. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param parameters: Parameters supplied to the create or update Virtual Router. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualRouter + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualRouter or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualRouter] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouter"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualRouter', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualRouterListResult"]: + """Lists all Virtual Routers in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualRouterListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualRouterListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_routers_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_routers_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualRouterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualRouterListResult"]: + """Gets all the Virtual Routers in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualRouterListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualRouterListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_routers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_routers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualRouterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualRouters"} # type: ignore +class VirtualRouterPeeringsOperations: + """VirtualRouterPeeringsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_router_peerings_delete_request_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified peering from a Virtual Router. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + **kwargs: Any + ) -> "_models.VirtualRouterPeering": + """Gets the specified Virtual Router Peering. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param peering_name: The name of the Virtual Router Peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualRouterPeering, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeering + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_router_peerings_get_request( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualRouterPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + parameters: "_models.VirtualRouterPeering", + **kwargs: Any + ) -> "_models.VirtualRouterPeering": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualRouterPeering') + + request = build_virtual_router_peerings_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualRouterPeering', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualRouterPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + parameters: "_models.VirtualRouterPeering", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualRouterPeering"]: + """Creates or updates the specified Virtual Router Peering. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param peering_name: The name of the Virtual Router Peering. + :type peering_name: str + :param parameters: Parameters supplied to the create or update Virtual Router Peering + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeering + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualRouterPeering or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeering] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterPeering"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualRouterPeering', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_router_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.VirtualRouterPeeringListResult"]: + """Lists all Virtual Router Peerings in a Virtual Router resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualRouterPeeringListResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeeringListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterPeeringListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_router_peerings_list_request( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_router_peerings_list_request( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualRouterPeeringListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings"} # type: ignore +class VirtualWansOperations: + """VirtualWansOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> "_models.VirtualWAN": + """Retrieves the details of a VirtualWAN. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN being retrieved. + :type virtual_wan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualWAN, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualWAN + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWAN"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_wans_get_request( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualWAN', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_wan_name: str, + wan_parameters: "_models.VirtualWAN", + **kwargs: Any + ) -> "_models.VirtualWAN": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWAN"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(wan_parameters, 'VirtualWAN') + + request = build_virtual_wans_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualWAN', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualWAN', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_wan_name: str, + wan_parameters: "_models.VirtualWAN", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualWAN"]: + """Creates a VirtualWAN resource if it doesn't exist else updates the existing VirtualWAN. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN being created or updated. + :type virtual_wan_name: str + :param wan_parameters: Parameters supplied to create or update VirtualWAN. + :type wan_parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualWAN + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualWAN or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualWAN] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWAN"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + wan_parameters=wan_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualWAN', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + virtual_wan_name: str, + wan_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VirtualWAN": + """Updates a VirtualWAN tags. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN being updated. + :type virtual_wan_name: str + :param wan_parameters: Parameters supplied to Update VirtualWAN tags. + :type wan_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualWAN, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualWAN + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWAN"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(wan_parameters, 'TagsObject') + + request = build_virtual_wans_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualWAN', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_wans_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a VirtualWAN. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN being deleted. + :type virtual_wan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVirtualWANsResult"]: + """Lists all the VirtualWANs in a resource group. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualWANsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualWANsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualWANsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_wans_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_wans_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualWANsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ListVirtualWANsResult"]: + """Lists all the VirtualWANs in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualWANsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualWANsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualWANsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_wans_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_wans_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualWANsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualWans"} # type: ignore +class VpnSitesOperations: + """VpnSitesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any + ) -> "_models.VpnSite": + """Retrieves the details of a VPN site. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite being retrieved. + :type vpn_site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnSite, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnSite + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_sites_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + vpn_site_name: str, + vpn_site_parameters: "_models.VpnSite", + **kwargs: Any + ) -> "_models.VpnSite": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_site_parameters, 'VpnSite') + + request = build_vpn_sites_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnSite', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + vpn_site_name: str, + vpn_site_parameters: "_models.VpnSite", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnSite"]: + """Creates a VpnSite resource if it doesn't exist else updates the existing VpnSite. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite being created or updated. + :type vpn_site_name: str + :param vpn_site_parameters: Parameters supplied to create or update VpnSite. + :type vpn_site_parameters: ~azure.mgmt.network.v2021_08_01.models.VpnSite + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnSite or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnSite] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSite"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + vpn_site_parameters=vpn_site_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnSite', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + vpn_site_name: str, + vpn_site_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VpnSite": + """Updates VpnSite tags. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite being updated. + :type vpn_site_name: str + :param vpn_site_parameters: Parameters supplied to update VpnSite tags. + :type vpn_site_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnSite, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnSite + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_site_parameters, 'TagsObject') + + request = build_vpn_sites_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_sites_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a VpnSite. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite being deleted. + :type vpn_site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnSitesResult"]: + """Lists all the vpnSites in a resource group. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnSitesResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnSitesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnSitesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_sites_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_sites_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnSitesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnSitesResult"]: + """Lists all the VpnSites in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnSitesResult or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnSitesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnSitesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_sites_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_sites_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnSitesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/vpnSites"} # type: ignore +class VpnSiteLinksOperations: + """VpnSiteLinksOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + vpn_site_name: str, + vpn_site_link_name: str, + **kwargs: Any + ) -> "_models.VpnSiteLink": + """Retrieves the details of a VPN site link. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite. + :type vpn_site_name: str + :param vpn_site_link_name: The name of the VpnSiteLink being retrieved. + :type vpn_site_link_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnSiteLink, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnSiteLink + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSiteLink"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_site_links_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + vpn_site_link_name=vpn_site_link_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnSiteLink', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}/vpnSiteLinks/{vpnSiteLinkName}"} # type: ignore + + + @distributed_trace + def list_by_vpn_site( + self, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnSiteLinksResult"]: + """Lists all the vpnSiteLinks in a resource group for a vpn site. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite. + :type vpn_site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnSiteLinksResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnSiteLinksResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnSiteLinksResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_site_links_list_by_vpn_site_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + template_url=self.list_by_vpn_site.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_site_links_list_by_vpn_site_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnSiteLinksResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_vpn_site.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}/vpnSiteLinks"} # type: ignore +class VpnSitesConfigurationOperations: + """VpnSitesConfigurationOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _download_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_wan_name: str, + request: "_models.GetVpnSitesConfigurationRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'GetVpnSitesConfigurationRequest') + + request = build_vpn_sites_configuration_download_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._download_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _download_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnConfiguration"} # type: ignore + + + @distributed_trace_async + async def begin_download( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_wan_name: str, + request: "_models.GetVpnSitesConfigurationRequest", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Gives the sas-url to download the configurations for vpn-sites in a resource group. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN for which configuration of all vpn-sites is + needed. + :type virtual_wan_name: str + :param request: Parameters supplied to download vpn-sites configuration. + :type request: ~azure.mgmt.network.v2021_08_01.models.GetVpnSitesConfigurationRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._download_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + request=request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_download.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnConfiguration"} # type: ignore +class VpnServerConfigurationsOperations: + """VpnServerConfigurationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any + ) -> "_models.VpnServerConfiguration": + """Retrieves the details of a VpnServerConfiguration. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration being retrieved. + :type vpn_server_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnServerConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_server_configurations_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + vpn_server_configuration_parameters: "_models.VpnServerConfiguration", + **kwargs: Any + ) -> "_models.VpnServerConfiguration": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_server_configuration_parameters, 'VpnServerConfiguration') + + request = build_vpn_server_configurations_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + vpn_server_configuration_parameters: "_models.VpnServerConfiguration", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnServerConfiguration"]: + """Creates a VpnServerConfiguration resource if it doesn't exist else updates the existing + VpnServerConfiguration. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration being created or + updated. + :type vpn_server_configuration_name: str + :param vpn_server_configuration_parameters: Parameters supplied to create or update + VpnServerConfiguration. + :type vpn_server_configuration_parameters: + ~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnServerConfiguration or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfiguration"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + vpn_server_configuration_parameters=vpn_server_configuration_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + vpn_server_configuration_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VpnServerConfiguration": + """Updates VpnServerConfiguration tags. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration being updated. + :type vpn_server_configuration_name: str + :param vpn_server_configuration_parameters: Parameters supplied to update + VpnServerConfiguration tags. + :type vpn_server_configuration_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnServerConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_server_configuration_parameters, 'TagsObject') + + request = build_vpn_server_configurations_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_server_configurations_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a VpnServerConfiguration. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration being deleted. + :type vpn_server_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnServerConfigurationsResult"]: + """Lists all the vpnServerConfigurations in a resource group. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnServerConfigurationsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnServerConfigurationsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnServerConfigurationsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_server_configurations_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_server_configurations_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnServerConfigurationsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnServerConfigurationsResult"]: + """Lists all the VpnServerConfigurations in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnServerConfigurationsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnServerConfigurationsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnServerConfigurationsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_server_configurations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_server_configurations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnServerConfigurationsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/vpnServerConfigurations"} # type: ignore +class ConfigurationPolicyGroupsOperations: + """ConfigurationPolicyGroupsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + vpn_server_configuration_policy_group_parameters: "_models.VpnServerConfigurationPolicyGroup", + **kwargs: Any + ) -> "_models.VpnServerConfigurationPolicyGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfigurationPolicyGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_server_configuration_policy_group_parameters, 'VpnServerConfigurationPolicyGroup') + + request = build_configuration_policy_groups_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnServerConfigurationPolicyGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnServerConfigurationPolicyGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + vpn_server_configuration_policy_group_parameters: "_models.VpnServerConfigurationPolicyGroup", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnServerConfigurationPolicyGroup"]: + """Creates a ConfigurationPolicyGroup if it doesn't exist else updates the existing one. + + :param resource_group_name: The resource group name of the ConfigurationPolicyGroup. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration. + :type vpn_server_configuration_name: str + :param configuration_policy_group_name: The name of the ConfigurationPolicyGroup. + :type configuration_policy_group_name: str + :param vpn_server_configuration_policy_group_parameters: Parameters supplied to create or + update a VpnServerConfiguration PolicyGroup. + :type vpn_server_configuration_policy_group_parameters: + ~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnServerConfigurationPolicyGroup or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfigurationPolicyGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + vpn_server_configuration_policy_group_parameters=vpn_server_configuration_policy_group_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnServerConfigurationPolicyGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_configuration_policy_groups_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a ConfigurationPolicyGroup. + + :param resource_group_name: The resource group name of the ConfigurationPolicyGroup. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration. + :type vpn_server_configuration_name: str + :param configuration_policy_group_name: The name of the ConfigurationPolicyGroup. + :type configuration_policy_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + **kwargs: Any + ) -> "_models.VpnServerConfigurationPolicyGroup": + """Retrieves the details of a ConfigurationPolicyGroup. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration. + :type vpn_server_configuration_name: str + :param configuration_policy_group_name: The name of the ConfigurationPolicyGroup being + retrieved. + :type configuration_policy_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnServerConfigurationPolicyGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfigurationPolicyGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_configuration_policy_groups_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnServerConfigurationPolicyGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + + @distributed_trace + def list_by_vpn_server_configuration( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnServerConfigurationPolicyGroupsResult"]: + """Lists all the configurationPolicyGroups in a resource group for a vpnServerConfiguration. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration. + :type vpn_server_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnServerConfigurationPolicyGroupsResult or + the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnServerConfigurationPolicyGroupsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnServerConfigurationPolicyGroupsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_configuration_policy_groups_list_by_vpn_server_configuration_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + template_url=self.list_by_vpn_server_configuration.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_configuration_policy_groups_list_by_vpn_server_configuration_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnServerConfigurationPolicyGroupsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_vpn_server_configuration.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups"} # type: ignore +class VirtualHubsOperations: + """VirtualHubsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> "_models.VirtualHub": + """Retrieves the details of a VirtualHub. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualHub, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualHub + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHub"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hubs_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualHub', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + virtual_hub_parameters: "_models.VirtualHub", + **kwargs: Any + ) -> "_models.VirtualHub": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHub"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(virtual_hub_parameters, 'VirtualHub') + + request = build_virtual_hubs_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualHub', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualHub', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + virtual_hub_parameters: "_models.VirtualHub", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualHub"]: + """Creates a VirtualHub resource if it doesn't exist else updates the existing VirtualHub. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param virtual_hub_parameters: Parameters supplied to create or update VirtualHub. + :type virtual_hub_parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualHub + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualHub or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualHub] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHub"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + virtual_hub_parameters=virtual_hub_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualHub', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + virtual_hub_name: str, + virtual_hub_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VirtualHub": + """Updates VirtualHub tags. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param virtual_hub_parameters: Parameters supplied to update VirtualHub tags. + :type virtual_hub_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualHub, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualHub + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHub"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(virtual_hub_parameters, 'TagsObject') + + request = build_virtual_hubs_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualHub', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hubs_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a VirtualHub. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVirtualHubsResult"]: + """Lists all the VirtualHubs in a resource group. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hubs_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hubs_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ListVirtualHubsResult"]: + """Lists all the VirtualHubs in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hubs_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hubs_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualHubs"} # type: ignore + + async def _get_effective_virtual_hub_routes_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + effective_routes_parameters: Optional["_models.EffectiveRoutesParameters"] = None, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if effective_routes_parameters is not None: + _json = self._serialize.body(effective_routes_parameters, 'EffectiveRoutesParameters') + else: + _json = None + + request = build_virtual_hubs_get_effective_virtual_hub_routes_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_effective_virtual_hub_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _get_effective_virtual_hub_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/effectiveRoutes"} # type: ignore + + + @distributed_trace_async + async def begin_get_effective_virtual_hub_routes( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + effective_routes_parameters: Optional["_models.EffectiveRoutesParameters"] = None, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Gets the effective routes configured for the Virtual Hub resource or the specified resource . + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param effective_routes_parameters: Parameters supplied to get the effective routes for a + specific resource. Default value is None. + :type effective_routes_parameters: + ~azure.mgmt.network.v2021_08_01.models.EffectiveRoutesParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_effective_virtual_hub_routes_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + effective_routes_parameters=effective_routes_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_effective_virtual_hub_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/effectiveRoutes"} # type: ignore +class HubVirtualNetworkConnectionsOperations: + """HubVirtualNetworkConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + hub_virtual_network_connection_parameters: "_models.HubVirtualNetworkConnection", + **kwargs: Any + ) -> "_models.HubVirtualNetworkConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubVirtualNetworkConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(hub_virtual_network_connection_parameters, 'HubVirtualNetworkConnection') + + request = build_hub_virtual_network_connections_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('HubVirtualNetworkConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('HubVirtualNetworkConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + hub_virtual_network_connection_parameters: "_models.HubVirtualNetworkConnection", + **kwargs: Any + ) -> AsyncLROPoller["_models.HubVirtualNetworkConnection"]: + """Creates a hub virtual network connection if it doesn't exist else updates the existing one. + + :param resource_group_name: The resource group name of the HubVirtualNetworkConnection. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the HubVirtualNetworkConnection. + :type connection_name: str + :param hub_virtual_network_connection_parameters: Parameters supplied to create or update a hub + virtual network connection. + :type hub_virtual_network_connection_parameters: + ~azure.mgmt.network.v2021_08_01.models.HubVirtualNetworkConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either HubVirtualNetworkConnection or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.HubVirtualNetworkConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubVirtualNetworkConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + hub_virtual_network_connection_parameters=hub_virtual_network_connection_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('HubVirtualNetworkConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_hub_virtual_network_connections_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a HubVirtualNetworkConnection. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the HubVirtualNetworkConnection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.HubVirtualNetworkConnection": + """Retrieves the details of a HubVirtualNetworkConnection. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: HubVirtualNetworkConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.HubVirtualNetworkConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubVirtualNetworkConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_hub_virtual_network_connections_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('HubVirtualNetworkConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListHubVirtualNetworkConnectionsResult"]: + """Retrieves the details of all HubVirtualNetworkConnections. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListHubVirtualNetworkConnectionsResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListHubVirtualNetworkConnectionsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListHubVirtualNetworkConnectionsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_hub_virtual_network_connections_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_hub_virtual_network_connections_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListHubVirtualNetworkConnectionsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections"} # type: ignore +class VpnGatewaysOperations: + """VpnGatewaysOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> "_models.VpnGateway": + """Retrieves the details of a virtual wan vpn gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_gateways_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + gateway_name: str, + vpn_gateway_parameters: "_models.VpnGateway", + **kwargs: Any + ) -> "_models.VpnGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_gateway_parameters, 'VpnGateway') + + request = build_vpn_gateways_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + gateway_name: str, + vpn_gateway_parameters: "_models.VpnGateway", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnGateway"]: + """Creates a virtual wan vpn gateway if it doesn't exist else updates the existing gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param vpn_gateway_parameters: Parameters supplied to create or Update a virtual wan vpn + gateway. + :type vpn_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.VpnGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnGateway or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_gateway_parameters=vpn_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + async def _update_tags_initial( + self, + resource_group_name: str, + gateway_name: str, + vpn_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.VpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_gateway_parameters, 'TagsObject') + + request = build_vpn_gateways_update_tags_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_update_tags( + self, + resource_group_name: str, + gateway_name: str, + vpn_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnGateway"]: + """Updates virtual wan vpn gateway tags. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param vpn_gateway_parameters: Parameters supplied to update a virtual wan vpn gateway tags. + :type vpn_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnGateway or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_tags_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_gateway_parameters=vpn_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_gateways_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a virtual wan vpn gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + async def _reset_initial( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> Optional["_models.VpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_gateways_reset_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._reset_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _reset_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/reset"} # type: ignore + + + @distributed_trace_async + async def begin_reset( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnGateway"]: + """Resets the primary of the vpn gateway in the specified resource group. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnGateway or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._reset_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/reset"} # type: ignore + + async def _start_packet_capture_initial( + self, + resource_group_name: str, + gateway_name: str, + parameters: Optional["_models.VpnGatewayPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnGatewayPacketCaptureStartParameters') + else: + _json = None + + request = build_vpn_gateways_start_packet_capture_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._start_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _start_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/startpacketcapture"} # type: ignore + + + @distributed_trace_async + async def begin_start_packet_capture( + self, + resource_group_name: str, + gateway_name: str, + parameters: Optional["_models.VpnGatewayPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Starts packet capture on vpn gateway in the specified resource group. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param parameters: Vpn gateway packet capture parameters supplied to start packet capture on + vpn gateway. Default value is None. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnGatewayPacketCaptureStartParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._start_packet_capture_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/startpacketcapture"} # type: ignore + + async def _stop_packet_capture_initial( + self, + resource_group_name: str, + gateway_name: str, + parameters: Optional["_models.VpnGatewayPacketCaptureStopParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnGatewayPacketCaptureStopParameters') + else: + _json = None + + request = build_vpn_gateways_stop_packet_capture_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._stop_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _stop_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/stoppacketcapture"} # type: ignore + + + @distributed_trace_async + async def begin_stop_packet_capture( + self, + resource_group_name: str, + gateway_name: str, + parameters: Optional["_models.VpnGatewayPacketCaptureStopParameters"] = None, + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Stops packet capture on vpn gateway in the specified resource group. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param parameters: Vpn gateway packet capture parameters supplied to stop packet capture on vpn + gateway. Default value is None. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnGatewayPacketCaptureStopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._stop_packet_capture_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/stoppacketcapture"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnGatewaysResult"]: + """Lists all the VpnGateways in a resource group. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnGatewaysResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnGatewaysResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnGatewaysResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_gateways_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_gateways_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnGatewaysResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnGatewaysResult"]: + """Lists all the VpnGateways in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnGatewaysResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnGatewaysResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnGatewaysResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_gateways_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_gateways_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnGatewaysResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/vpnGateways"} # type: ignore +class VpnLinkConnectionsOperations: + """VpnLinkConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _reset_connection_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_link_connections_reset_connection_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + template_url=self._reset_connection_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reset_connection_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/resetconnection"} # type: ignore + + + @distributed_trace_async + async def begin_reset_connection( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Resets the VpnLink connection specified. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :param link_connection_name: The name of the vpn link connection. + :type link_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._reset_connection_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/resetconnection"} # type: ignore + + async def _get_ike_sas_initial( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_link_connections_get_ike_sas_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + template_url=self._get_ike_sas_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_ike_sas_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/getikesas"} # type: ignore + + + @distributed_trace_async + async def begin_get_ike_sas( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Lists IKE Security Associations for Vpn Site Link Connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :param link_connection_name: The name of the vpn link connection. + :type link_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_ike_sas_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_ike_sas.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/getikesas"} # type: ignore + + @distributed_trace + def list_by_vpn_connection( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnSiteLinkConnectionsResult"]: + """Retrieves all vpn site link connections for a particular virtual wan vpn gateway vpn + connection. + + :param resource_group_name: The resource group name of the vpn gateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnSiteLinkConnectionsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnSiteLinkConnectionsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnSiteLinkConnectionsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_link_connections_list_by_vpn_connection_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + template_url=self.list_by_vpn_connection.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_link_connections_list_by_vpn_connection_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnSiteLinkConnectionsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_vpn_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections"} # type: ignore +class VpnConnectionsOperations: + """VpnConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.VpnConnection": + """Retrieves the details of a vpn connection. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_connections_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + vpn_connection_parameters: "_models.VpnConnection", + **kwargs: Any + ) -> "_models.VpnConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_connection_parameters, 'VpnConnection') + + request = build_vpn_connections_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + vpn_connection_parameters: "_models.VpnConnection", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnConnection"]: + """Creates a vpn connection to a scalable vpn gateway if it doesn't exist else updates the + existing connection. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :param vpn_connection_parameters: Parameters supplied to create or Update a VPN Connection. + :type vpn_connection_parameters: ~azure.mgmt.network.v2021_08_01.models.VpnConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnConnection or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + vpn_connection_parameters=vpn_connection_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_connections_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a vpn connection. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + async def _start_packet_capture_initial( + self, + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + parameters: Optional["_models.VpnConnectionPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnConnectionPacketCaptureStartParameters') + else: + _json = None + + request = build_vpn_connections_start_packet_capture_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_connection_name=vpn_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._start_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _start_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/startpacketcapture"} # type: ignore + + + @distributed_trace_async + async def begin_start_packet_capture( + self, + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + parameters: Optional["_models.VpnConnectionPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Starts packet capture on Vpn connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param vpn_connection_name: The name of the vpn connection. + :type vpn_connection_name: str + :param parameters: Vpn Connection packet capture parameters supplied to start packet capture on + gateway connection. Default value is None. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.VpnConnectionPacketCaptureStartParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._start_packet_capture_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_connection_name=vpn_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/startpacketcapture"} # type: ignore + + async def _stop_packet_capture_initial( + self, + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + parameters: Optional["_models.VpnConnectionPacketCaptureStopParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnConnectionPacketCaptureStopParameters') + else: + _json = None + + request = build_vpn_connections_stop_packet_capture_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_connection_name=vpn_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._stop_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _stop_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/stoppacketcapture"} # type: ignore + + + @distributed_trace_async + async def begin_stop_packet_capture( + self, + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + parameters: Optional["_models.VpnConnectionPacketCaptureStopParameters"] = None, + **kwargs: Any + ) -> AsyncLROPoller[str]: + """Stops packet capture on Vpn connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param vpn_connection_name: The name of the vpn connection. + :type vpn_connection_name: str + :param parameters: Vpn Connection packet capture parameters supplied to stop packet capture on + gateway connection. Default value is None. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.VpnConnectionPacketCaptureStopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._stop_packet_capture_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_connection_name=vpn_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/stoppacketcapture"} # type: ignore + + @distributed_trace + def list_by_vpn_gateway( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnConnectionsResult"]: + """Retrieves all vpn connections for a particular virtual wan vpn gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnConnectionsResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnConnectionsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnConnectionsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_connections_list_by_vpn_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self.list_by_vpn_gateway.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_connections_list_by_vpn_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnConnectionsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_vpn_gateway.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections"} # type: ignore +class VpnSiteLinkConnectionsOperations: + """VpnSiteLinkConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> "_models.VpnSiteLinkConnection": + """Retrieves the details of a vpn site link connection. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :param link_connection_name: The name of the vpn connection. + :type link_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnSiteLinkConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnSiteLinkConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSiteLinkConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_site_link_connections_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnSiteLinkConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}"} # type: ignore + +class NatRulesOperations: + """NatRulesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> "_models.VpnGatewayNatRule": + """Retrieves the details of a nat ruleGet. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnGatewayNatRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGatewayNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_nat_rules_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnGatewayNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + nat_rule_parameters: "_models.VpnGatewayNatRule", + **kwargs: Any + ) -> "_models.VpnGatewayNatRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGatewayNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(nat_rule_parameters, 'VpnGatewayNatRule') + + request = build_nat_rules_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnGatewayNatRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnGatewayNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + nat_rule_parameters: "_models.VpnGatewayNatRule", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnGatewayNatRule"]: + """Creates a nat rule to a scalable vpn gateway if it doesn't exist else updates the existing nat + rules. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :param nat_rule_parameters: Parameters supplied to create or Update a Nat Rule. + :type nat_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnGatewayNatRule or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGatewayNatRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + nat_rule_parameters=nat_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnGatewayNatRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_nat_rules_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a nat rule. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + @distributed_trace + def list_by_vpn_gateway( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVpnGatewayNatRulesResult"]: + """Retrieves all nat rules for a particular virtual wan vpn gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnGatewayNatRulesResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnGatewayNatRulesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnGatewayNatRulesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_nat_rules_list_by_vpn_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self.list_by_vpn_gateway.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_nat_rules_list_by_vpn_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnGatewayNatRulesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_vpn_gateway.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules"} # type: ignore +class P2SVpnGatewaysOperations: + """P2SVpnGatewaysOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> "_models.P2SVpnGateway": + """Retrieves the details of a virtual wan p2s vpn gateway. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: P2SVpnGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_p2_svpn_gateways_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + gateway_name: str, + p2_s_vpn_gateway_parameters: "_models.P2SVpnGateway", + **kwargs: Any + ) -> "_models.P2SVpnGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(p2_s_vpn_gateway_parameters, 'P2SVpnGateway') + + request = build_p2_svpn_gateways_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + gateway_name: str, + p2_s_vpn_gateway_parameters: "_models.P2SVpnGateway", + **kwargs: Any + ) -> AsyncLROPoller["_models.P2SVpnGateway"]: + """Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param p2_s_vpn_gateway_parameters: Parameters supplied to create or Update a virtual wan p2s + vpn gateway. + :type p2_s_vpn_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either P2SVpnGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + p2_s_vpn_gateway_parameters=p2_s_vpn_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + async def _update_tags_initial( + self, + resource_group_name: str, + gateway_name: str, + p2_s_vpn_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.P2SVpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.P2SVpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(p2_s_vpn_gateway_parameters, 'TagsObject') + + request = build_p2_svpn_gateways_update_tags_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_update_tags( + self, + resource_group_name: str, + gateway_name: str, + p2_s_vpn_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> AsyncLROPoller["_models.P2SVpnGateway"]: + """Updates virtual wan p2s vpn gateway tags. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param p2_s_vpn_gateway_parameters: Parameters supplied to update a virtual wan p2s vpn gateway + tags. + :type p2_s_vpn_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either P2SVpnGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_tags_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + p2_s_vpn_gateway_parameters=p2_s_vpn_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_p2_svpn_gateways_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a virtual wan p2s vpn gateway. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListP2SVpnGatewaysResult"]: + """Lists all the P2SVpnGateways in a resource group. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListP2SVpnGatewaysResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListP2SVpnGatewaysResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListP2SVpnGatewaysResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_p2_svpn_gateways_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_p2_svpn_gateways_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListP2SVpnGatewaysResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.ListP2SVpnGatewaysResult"]: + """Lists all the P2SVpnGateways in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListP2SVpnGatewaysResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListP2SVpnGatewaysResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListP2SVpnGatewaysResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_p2_svpn_gateways_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_p2_svpn_gateways_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListP2SVpnGatewaysResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/p2svpnGateways"} # type: ignore + + async def _reset_initial( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> Optional["_models.P2SVpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.P2SVpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_p2_svpn_gateways_reset_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._reset_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _reset_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/reset"} # type: ignore + + + @distributed_trace_async + async def begin_reset( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.P2SVpnGateway"]: + """Resets the primary of the p2s vpn gateway in the specified resource group. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either P2SVpnGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._reset_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/reset"} # type: ignore + + async def _generate_vpn_profile_initial( + self, + resource_group_name: str, + gateway_name: str, + parameters: "_models.P2SVpnProfileParameters", + **kwargs: Any + ) -> Optional["_models.VpnProfileResponse"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnProfileResponse"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'P2SVpnProfileParameters') + + request = build_p2_svpn_gateways_generate_vpn_profile_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._generate_vpn_profile_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnProfileResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _generate_vpn_profile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/generatevpnprofile"} # type: ignore + + + @distributed_trace_async + async def begin_generate_vpn_profile( + self, + resource_group_name: str, + gateway_name: str, + parameters: "_models.P2SVpnProfileParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnProfileResponse"]: + """Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the P2SVpnGateway. + :type gateway_name: str + :param parameters: Parameters supplied to the generate P2SVpnGateway VPN client package + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.P2SVpnProfileParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnProfileResponse or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnProfileResponse] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnProfileResponse"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._generate_vpn_profile_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnProfileResponse', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_generate_vpn_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/generatevpnprofile"} # type: ignore + + async def _get_p2_s_vpn_connection_health_initial( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> Optional["_models.P2SVpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.P2SVpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_p2_svpn_gateways_get_p2_s_vpn_connection_health_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_p2_s_vpn_connection_health_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_p2_s_vpn_connection_health_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealth"} # type: ignore + + + @distributed_trace_async + async def begin_get_p2_s_vpn_connection_health( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.P2SVpnGateway"]: + """Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the P2SVpnGateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either P2SVpnGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_p2_s_vpn_connection_health_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_p2_s_vpn_connection_health.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealth"} # type: ignore + + async def _get_p2_s_vpn_connection_health_detailed_initial( + self, + resource_group_name: str, + gateway_name: str, + request: "_models.P2SVpnConnectionHealthRequest", + **kwargs: Any + ) -> Optional["_models.P2SVpnConnectionHealth"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.P2SVpnConnectionHealth"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'P2SVpnConnectionHealthRequest') + + request = build_p2_svpn_gateways_get_p2_s_vpn_connection_health_detailed_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_p2_s_vpn_connection_health_detailed_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnConnectionHealth', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_p2_s_vpn_connection_health_detailed_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealthDetailed"} # type: ignore + + + @distributed_trace_async + async def begin_get_p2_s_vpn_connection_health_detailed( + self, + resource_group_name: str, + gateway_name: str, + request: "_models.P2SVpnConnectionHealthRequest", + **kwargs: Any + ) -> AsyncLROPoller["_models.P2SVpnConnectionHealth"]: + """Gets the sas url to get the connection health detail of P2S clients of the virtual wan + P2SVpnGateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the P2SVpnGateway. + :type gateway_name: str + :param request: Request parameters supplied to get p2s vpn connections detailed health. + :type request: ~azure.mgmt.network.v2021_08_01.models.P2SVpnConnectionHealthRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either P2SVpnConnectionHealth or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnConnectionHealth] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnConnectionHealth"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._get_p2_s_vpn_connection_health_detailed_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + request=request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnConnectionHealth', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_p2_s_vpn_connection_health_detailed.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealthDetailed"} # type: ignore + + async def _disconnect_p2_s_vpn_connections_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + p2_s_vpn_gateway_name: str, + request: "_models.P2SVpnConnectionRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'P2SVpnConnectionRequest') + + request = build_p2_svpn_gateways_disconnect_p2_s_vpn_connections_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + p2_s_vpn_gateway_name=p2_s_vpn_gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._disconnect_p2_s_vpn_connections_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _disconnect_p2_s_vpn_connections_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{p2sVpnGatewayName}/disconnectP2sVpnConnections"} # type: ignore + + + @distributed_trace_async + async def begin_disconnect_p2_s_vpn_connections( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + p2_s_vpn_gateway_name: str, + request: "_models.P2SVpnConnectionRequest", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param p2_s_vpn_gateway_name: The name of the P2S Vpn Gateway. + :type p2_s_vpn_gateway_name: str + :param request: The parameters are supplied to disconnect p2s vpn connections. + :type request: ~azure.mgmt.network.v2021_08_01.models.P2SVpnConnectionRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._disconnect_p2_s_vpn_connections_initial( + resource_group_name=resource_group_name, + p2_s_vpn_gateway_name=p2_s_vpn_gateway_name, + request=request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_disconnect_p2_s_vpn_connections.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{p2sVpnGatewayName}/disconnectP2sVpnConnections"} # type: ignore +class VpnServerConfigurationsAssociatedWithVirtualWanOperations: + """VpnServerConfigurationsAssociatedWithVirtualWanOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _list_initial( + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> Optional["_models.VpnServerConfigurationsResponse"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnServerConfigurationsResponse"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_server_configurations_associated_with_virtual_wan_list_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + template_url=self._list_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnServerConfigurationsResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnServerConfigurations"} # type: ignore + + + @distributed_trace_async + async def begin_list( + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.VpnServerConfigurationsResponse"]: + """Gives the list of VpnServerConfigurations associated with Virtual Wan in a resource group. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN whose associated VpnServerConfigurations is + needed. + :type virtual_wan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VpnServerConfigurationsResponse or + the result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationsResponse] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfigurationsResponse"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnServerConfigurationsResponse', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnServerConfigurations"} # type: ignore +class VirtualHubRouteTableV2SOperations: + """VirtualHubRouteTableV2SOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> "_models.VirtualHubRouteTableV2": + """Retrieves the details of a VirtualHubRouteTableV2. + + :param resource_group_name: The resource group name of the VirtualHubRouteTableV2. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the VirtualHubRouteTableV2. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualHubRouteTableV2, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2 + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHubRouteTableV2"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_route_table_v2_s_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualHubRouteTableV2', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + virtual_hub_route_table_v2_parameters: "_models.VirtualHubRouteTableV2", + **kwargs: Any + ) -> "_models.VirtualHubRouteTableV2": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHubRouteTableV2"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(virtual_hub_route_table_v2_parameters, 'VirtualHubRouteTableV2') + + request = build_virtual_hub_route_table_v2_s_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualHubRouteTableV2', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualHubRouteTableV2', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + virtual_hub_route_table_v2_parameters: "_models.VirtualHubRouteTableV2", + **kwargs: Any + ) -> AsyncLROPoller["_models.VirtualHubRouteTableV2"]: + """Creates a VirtualHubRouteTableV2 resource if it doesn't exist else updates the existing + VirtualHubRouteTableV2. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the VirtualHubRouteTableV2. + :type route_table_name: str + :param virtual_hub_route_table_v2_parameters: Parameters supplied to create or update + VirtualHubRouteTableV2. + :type virtual_hub_route_table_v2_parameters: + ~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2 + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either VirtualHubRouteTableV2 or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHubRouteTableV2"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + virtual_hub_route_table_v2_parameters=virtual_hub_route_table_v2_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualHubRouteTableV2', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_route_table_v2_s_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a VirtualHubRouteTableV2. + + :param resource_group_name: The resource group name of the VirtualHubRouteTableV2. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the VirtualHubRouteTableV2. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVirtualHubRouteTableV2SResult"]: + """Retrieves the details of all VirtualHubRouteTableV2s. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubRouteTableV2SResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubRouteTableV2SResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubRouteTableV2SResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hub_route_table_v2_s_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hub_route_table_v2_s_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubRouteTableV2SResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables"} # type: ignore +class ExpressRouteGatewaysOperations: + """ExpressRouteGatewaysOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def list_by_subscription( + self, + **kwargs: Any + ) -> "_models.ExpressRouteGatewayList": + """Lists ExpressRoute gateways under a given subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteGatewayList, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGatewayList + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGatewayList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_gateways_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_subscription.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteGatewayList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_by_subscription.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteGateways"} # type: ignore + + + @distributed_trace_async + async def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteGatewayList": + """Lists ExpressRoute gateways in a given resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteGatewayList, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGatewayList + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGatewayList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_gateways_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteGatewayList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + express_route_gateway_name: str, + put_express_route_gateway_parameters: "_models.ExpressRouteGateway", + **kwargs: Any + ) -> "_models.ExpressRouteGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(put_express_route_gateway_parameters, 'ExpressRouteGateway') + + request = build_express_route_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + express_route_gateway_name: str, + put_express_route_gateway_parameters: "_models.ExpressRouteGateway", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteGateway"]: + """Creates or updates a ExpressRoute gateway in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :param put_express_route_gateway_parameters: Parameters required in an ExpressRoute gateway PUT + operation. + :type put_express_route_gateway_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRouteGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + put_express_route_gateway_parameters=put_express_route_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + async def _update_tags_initial( + self, + resource_group_name: str, + express_route_gateway_name: str, + express_route_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.ExpressRouteGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(express_route_gateway_parameters, 'TagsObject') + + request = build_express_route_gateways_update_tags_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_update_tags( + self, + resource_group_name: str, + express_route_gateway_name: str, + express_route_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteGateway"]: + """Updates express route gateway tags. + + :param resource_group_name: The resource group name of the ExpressRouteGateway. + :type resource_group_name: str + :param express_route_gateway_name: The name of the gateway. + :type express_route_gateway_name: str + :param express_route_gateway_parameters: Parameters supplied to update a virtual wan express + route gateway tags. + :type express_route_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRouteGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_tags_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + express_route_gateway_parameters=express_route_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + express_route_gateway_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteGateway": + """Fetches the details of a ExpressRoute gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_gateways_get_request( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_gateways_delete_request_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_gateway_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway + resource can only be deleted when there are no connection subresources. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore +class ExpressRouteConnectionsOperations: + """ExpressRouteConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + put_express_route_connection_parameters: "_models.ExpressRouteConnection", + **kwargs: Any + ) -> "_models.ExpressRouteConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(put_express_route_connection_parameters, 'ExpressRouteConnection') + + request = build_express_route_connections_create_or_update_request_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + put_express_route_connection_parameters: "_models.ExpressRouteConnection", + **kwargs: Any + ) -> AsyncLROPoller["_models.ExpressRouteConnection"]: + """Creates a connection between an ExpressRoute gateway and an ExpressRoute circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :param connection_name: The name of the connection subresource. + :type connection_name: str + :param put_express_route_connection_parameters: Parameters required in an + ExpressRouteConnection PUT operation. + :type put_express_route_connection_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ExpressRouteConnection or the result + of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + put_express_route_connection_parameters=put_express_route_connection_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteConnection": + """Gets the specified ExpressRouteConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :param connection_name: The name of the ExpressRoute connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_connections_get_request( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_connections_delete_request_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a connection to a ExpressRoute circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :param connection_name: The name of the connection subresource. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + @distributed_trace_async + async def list( + self, + resource_group_name: str, + express_route_gateway_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteConnectionList": + """Lists ExpressRouteConnections. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteConnectionList, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnectionList + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteConnectionList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_connections_list_request( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteConnectionList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections"} # type: ignore + +class VirtualHubBgpConnectionOperations: + """VirtualHubBgpConnectionOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.BgpConnection": + """Retrieves the details of a Virtual Hub Bgp Connection. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: BgpConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.BgpConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_bgp_connection_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('BgpConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + parameters: "_models.BgpConnection", + **kwargs: Any + ) -> "_models.BgpConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'BgpConnection') + + request = build_virtual_hub_bgp_connection_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('BgpConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('BgpConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + parameters: "_models.BgpConnection", + **kwargs: Any + ) -> AsyncLROPoller["_models.BgpConnection"]: + """Creates a VirtualHubBgpConnection resource if it doesn't exist else updates the existing + VirtualHubBgpConnection. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :param parameters: Parameters of Bgp connection. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.BgpConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either BgpConnection or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.BgpConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BgpConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_bgp_connection_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a VirtualHubBgpConnection. + + :param resource_group_name: The resource group name of the VirtualHubBgpConnection. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore +class VirtualHubBgpConnectionsOperations: + """VirtualHubBgpConnectionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVirtualHubBgpConnectionResults"]: + """Retrieves the details of all VirtualHubBgpConnections. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubBgpConnectionResults or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubBgpConnectionResults] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubBgpConnectionResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hub_bgp_connections_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hub_bgp_connections_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubBgpConnectionResults", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections"} # type: ignore + + async def _list_learned_routes_initial( + self, + resource_group_name: str, + hub_name: str, + connection_name: str, + **kwargs: Any + ) -> Optional["_models.PeerRouteList"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.PeerRouteList"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_bgp_connections_list_learned_routes_request_initial( + resource_group_name=resource_group_name, + hub_name=hub_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_learned_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PeerRouteList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_learned_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/learnedRoutes"} # type: ignore + + + @distributed_trace_async + async def begin_list_learned_routes( + self, + resource_group_name: str, + hub_name: str, + connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.PeerRouteList"]: + """Retrieves a list of routes the virtual hub bgp connection has learned. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param hub_name: The name of the virtual hub. + :type hub_name: str + :param connection_name: The name of the virtual hub bgp connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PeerRouteList or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PeerRouteList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PeerRouteList"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_learned_routes_initial( + resource_group_name=resource_group_name, + hub_name=hub_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PeerRouteList', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_learned_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/learnedRoutes"} # type: ignore + + async def _list_advertised_routes_initial( + self, + resource_group_name: str, + hub_name: str, + connection_name: str, + **kwargs: Any + ) -> Optional["_models.PeerRouteList"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.PeerRouteList"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_bgp_connections_list_advertised_routes_request_initial( + resource_group_name=resource_group_name, + hub_name=hub_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_advertised_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PeerRouteList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_advertised_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/advertisedRoutes"} # type: ignore + + + @distributed_trace_async + async def begin_list_advertised_routes( + self, + resource_group_name: str, + hub_name: str, + connection_name: str, + **kwargs: Any + ) -> AsyncLROPoller["_models.PeerRouteList"]: + """Retrieves a list of routes the virtual hub bgp connection is advertising to the specified peer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param hub_name: The name of the virtual hub. + :type hub_name: str + :param connection_name: The name of the virtual hub bgp connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either PeerRouteList or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.PeerRouteList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PeerRouteList"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._list_advertised_routes_initial( + resource_group_name=resource_group_name, + hub_name=hub_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PeerRouteList', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_advertised_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/advertisedRoutes"} # type: ignore +class VirtualHubIpConfigurationOperations: + """VirtualHubIpConfigurationOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + **kwargs: Any + ) -> "_models.HubIpConfiguration": + """Retrieves the details of a Virtual Hub Ip configuration. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param ip_config_name: The name of the ipconfig. + :type ip_config_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: HubIpConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.HubIpConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubIpConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_ip_configuration_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('HubIpConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + parameters: "_models.HubIpConfiguration", + **kwargs: Any + ) -> "_models.HubIpConfiguration": + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubIpConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'HubIpConfiguration') + + request = build_virtual_hub_ip_configuration_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('HubIpConfiguration', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('HubIpConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + parameters: "_models.HubIpConfiguration", + **kwargs: Any + ) -> AsyncLROPoller["_models.HubIpConfiguration"]: + """Creates a VirtualHubIpConfiguration resource if it doesn't exist else updates the existing + VirtualHubIpConfiguration. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param ip_config_name: The name of the ipconfig. + :type ip_config_name: str + :param parameters: Hub Ip Configuration parameters. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.HubIpConfiguration + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either HubIpConfiguration or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.HubIpConfiguration] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubIpConfiguration"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('HubIpConfiguration', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_ip_configuration_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a VirtualHubIpConfiguration. + + :param resource_group_name: The resource group name of the VirtualHubBgpConnection. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param ip_config_name: The name of the ipconfig. + :type ip_config_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListVirtualHubIpConfigurationResults"]: + """Retrieves the details of all VirtualHubIpConfigurations. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubIpConfigurationResults or the result + of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubIpConfigurationResults] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubIpConfigurationResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hub_ip_configuration_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hub_ip_configuration_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubIpConfigurationResults", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations"} # type: ignore +class HubRouteTablesOperations: + """HubRouteTablesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + route_table_parameters: "_models.HubRouteTable", + **kwargs: Any + ) -> "_models.HubRouteTable": + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubRouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(route_table_parameters, 'HubRouteTable') + + request = build_hub_route_tables_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('HubRouteTable', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('HubRouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + route_table_parameters: "_models.HubRouteTable", + **kwargs: Any + ) -> AsyncLROPoller["_models.HubRouteTable"]: + """Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the RouteTable. + :type route_table_name: str + :param route_table_parameters: Parameters supplied to create or update RouteTable. + :type route_table_parameters: ~azure.mgmt.network.v2021_08_01.models.HubRouteTable + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either HubRouteTable or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.HubRouteTable] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubRouteTable"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + route_table_parameters=route_table_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('HubRouteTable', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> "_models.HubRouteTable": + """Retrieves the details of a RouteTable. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the RouteTable. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: HubRouteTable, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.HubRouteTable + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubRouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_hub_route_tables_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('HubRouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_hub_route_tables_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a RouteTable. + + :param resource_group_name: The resource group name of the RouteTable. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the RouteTable. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListHubRouteTablesResult"]: + """Retrieves the details of all RouteTables. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListHubRouteTablesResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListHubRouteTablesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListHubRouteTablesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_hub_route_tables_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_hub_route_tables_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListHubRouteTablesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables"} # type: ignore +class RoutingIntentOperations: + """RoutingIntentOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + routing_intent_parameters: "_models.RoutingIntent", + **kwargs: Any + ) -> "_models.RoutingIntent": + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoutingIntent"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(routing_intent_parameters, 'RoutingIntent') + + request = build_routing_intent_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('RoutingIntent', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('RoutingIntent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + routing_intent_parameters: "_models.RoutingIntent", + **kwargs: Any + ) -> AsyncLROPoller["_models.RoutingIntent"]: + """Creates a RoutingIntent resource if it doesn't exist else updates the existing RoutingIntent. + + :param resource_group_name: The resource group name of the RoutingIntent. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param routing_intent_name: The name of the per VirtualHub singleton Routing Intent resource. + :type routing_intent_name: str + :param routing_intent_parameters: Parameters supplied to create or update RoutingIntent. + :type routing_intent_parameters: ~azure.mgmt.network.v2021_08_01.models.RoutingIntent + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either RoutingIntent or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.network.v2021_08_01.models.RoutingIntent] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoutingIntent"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + routing_intent_parameters=routing_intent_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('RoutingIntent', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + **kwargs: Any + ) -> "_models.RoutingIntent": + """Retrieves the details of a RoutingIntent. + + :param resource_group_name: The resource group name of the RoutingIntent. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param routing_intent_name: The name of the RoutingIntent. + :type routing_intent_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RoutingIntent, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RoutingIntent + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoutingIntent"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_routing_intent_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RoutingIntent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_routing_intent_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a RoutingIntent. + + :param resource_group_name: The resource group name of the RoutingIntent. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param routing_intent_name: The name of the RoutingIntent. + :type routing_intent_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ListRoutingIntentResult"]: + """Retrieves the details of all RoutingIntent child resources of the VirtualHub. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListRoutingIntentResult or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.ListRoutingIntentResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListRoutingIntentResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_routing_intent_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_routing_intent_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ListRoutingIntentResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent"} # type: ignore +class WebApplicationFirewallPoliciesOperations: + """WebApplicationFirewallPoliciesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.WebApplicationFirewallPolicyListResult"]: + """Lists all of the protection policies within a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either WebApplicationFirewallPolicyListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.WebApplicationFirewallPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_web_application_firewall_policies_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_web_application_firewall_policies_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("WebApplicationFirewallPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> AsyncIterable["_models.WebApplicationFirewallPolicyListResult"]: + """Gets all the WAF policies in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either WebApplicationFirewallPolicyListResult or the + result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.WebApplicationFirewallPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_web_application_firewall_policies_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_web_application_firewall_policies_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("WebApplicationFirewallPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies"} # type: ignore + + @distributed_trace_async + async def get( + self, + resource_group_name: str, + policy_name: str, + **kwargs: Any + ) -> "_models.WebApplicationFirewallPolicy": + """Retrieve protection policy with specified name within a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param policy_name: The name of the policy. + :type policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: WebApplicationFirewallPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.WebApplicationFirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_web_application_firewall_policies_get_request( + resource_group_name=resource_group_name, + policy_name=policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('WebApplicationFirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}"} # type: ignore + + + @distributed_trace_async + async def create_or_update( + self, + resource_group_name: str, + policy_name: str, + parameters: "_models.WebApplicationFirewallPolicy", + **kwargs: Any + ) -> "_models.WebApplicationFirewallPolicy": + """Creates or update policy with specified rule set name within a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param policy_name: The name of the policy. + :type policy_name: str + :param parameters: Policy to be created. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicy + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: WebApplicationFirewallPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.WebApplicationFirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'WebApplicationFirewallPolicy') + + request = build_web_application_firewall_policies_create_or_update_request( + resource_group_name=resource_group_name, + policy_name=policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.create_or_update.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('WebApplicationFirewallPolicy', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('WebApplicationFirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}"} # type: ignore + + + async def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + policy_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_web_application_firewall_policies_delete_request_initial( + resource_group_name=resource_group_name, + policy_name=policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = await self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}"} # type: ignore + + + @distributed_trace_async + async def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + policy_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes Policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param policy_name: The name of the policy. + :type policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for + this operation to not poll, or pass in your own initialized polling object for a personal + polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + policy_name=policy_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}"} # type: ignore diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/__init__.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/__init__.py new file mode 100644 index 00000000000..ce8e118c2c5 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/__init__.py @@ -0,0 +1,1567 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._models_py3 import AadAuthenticationParameters +from ._models_py3 import AddressSpace +from ._models_py3 import ApplicationGateway +from ._models_py3 import ApplicationGatewayAuthenticationCertificate +from ._models_py3 import ApplicationGatewayAutoscaleConfiguration +from ._models_py3 import ApplicationGatewayAvailableSslOptions +from ._models_py3 import ApplicationGatewayAvailableSslPredefinedPolicies +from ._models_py3 import ApplicationGatewayAvailableWafRuleSetsResult +from ._models_py3 import ApplicationGatewayBackendAddress +from ._models_py3 import ApplicationGatewayBackendAddressPool +from ._models_py3 import ApplicationGatewayBackendHealth +from ._models_py3 import ApplicationGatewayBackendHealthHttpSettings +from ._models_py3 import ApplicationGatewayBackendHealthOnDemand +from ._models_py3 import ApplicationGatewayBackendHealthPool +from ._models_py3 import ApplicationGatewayBackendHealthServer +from ._models_py3 import ApplicationGatewayBackendHttpSettings +from ._models_py3 import ApplicationGatewayBackendSettings +from ._models_py3 import ApplicationGatewayClientAuthConfiguration +from ._models_py3 import ApplicationGatewayConnectionDraining +from ._models_py3 import ApplicationGatewayCustomError +from ._models_py3 import ApplicationGatewayFirewallDisabledRuleGroup +from ._models_py3 import ApplicationGatewayFirewallExclusion +from ._models_py3 import ApplicationGatewayFirewallRule +from ._models_py3 import ApplicationGatewayFirewallRuleGroup +from ._models_py3 import ApplicationGatewayFirewallRuleSet +from ._models_py3 import ApplicationGatewayFrontendIPConfiguration +from ._models_py3 import ApplicationGatewayFrontendPort +from ._models_py3 import ApplicationGatewayGlobalConfiguration +from ._models_py3 import ApplicationGatewayHeaderConfiguration +from ._models_py3 import ApplicationGatewayHttpListener +from ._models_py3 import ApplicationGatewayIPConfiguration +from ._models_py3 import ApplicationGatewayListResult +from ._models_py3 import ApplicationGatewayListener +from ._models_py3 import ApplicationGatewayLoadDistributionPolicy +from ._models_py3 import ApplicationGatewayLoadDistributionTarget +from ._models_py3 import ApplicationGatewayOnDemandProbe +from ._models_py3 import ApplicationGatewayPathRule +from ._models_py3 import ApplicationGatewayPrivateEndpointConnection +from ._models_py3 import ApplicationGatewayPrivateEndpointConnectionListResult +from ._models_py3 import ApplicationGatewayPrivateLinkConfiguration +from ._models_py3 import ApplicationGatewayPrivateLinkIpConfiguration +from ._models_py3 import ApplicationGatewayPrivateLinkResource +from ._models_py3 import ApplicationGatewayPrivateLinkResourceListResult +from ._models_py3 import ApplicationGatewayProbe +from ._models_py3 import ApplicationGatewayProbeHealthResponseMatch +from ._models_py3 import ApplicationGatewayRedirectConfiguration +from ._models_py3 import ApplicationGatewayRequestRoutingRule +from ._models_py3 import ApplicationGatewayRewriteRule +from ._models_py3 import ApplicationGatewayRewriteRuleActionSet +from ._models_py3 import ApplicationGatewayRewriteRuleCondition +from ._models_py3 import ApplicationGatewayRewriteRuleSet +from ._models_py3 import ApplicationGatewayRoutingRule +from ._models_py3 import ApplicationGatewaySku +from ._models_py3 import ApplicationGatewaySslCertificate +from ._models_py3 import ApplicationGatewaySslPolicy +from ._models_py3 import ApplicationGatewaySslPredefinedPolicy +from ._models_py3 import ApplicationGatewaySslProfile +from ._models_py3 import ApplicationGatewayTrustedClientCertificate +from ._models_py3 import ApplicationGatewayTrustedRootCertificate +from ._models_py3 import ApplicationGatewayUrlConfiguration +from ._models_py3 import ApplicationGatewayUrlPathMap +from ._models_py3 import ApplicationGatewayWebApplicationFirewallConfiguration +from ._models_py3 import ApplicationRule +from ._models_py3 import ApplicationSecurityGroup +from ._models_py3 import ApplicationSecurityGroupListResult +from ._models_py3 import AuthorizationListResult +from ._models_py3 import AutoApprovedPrivateLinkService +from ._models_py3 import AutoApprovedPrivateLinkServicesResult +from ._models_py3 import Availability +from ._models_py3 import AvailableDelegation +from ._models_py3 import AvailableDelegationsResult +from ._models_py3 import AvailablePrivateEndpointType +from ._models_py3 import AvailablePrivateEndpointTypesResult +from ._models_py3 import AvailableProvidersList +from ._models_py3 import AvailableProvidersListCity +from ._models_py3 import AvailableProvidersListCountry +from ._models_py3 import AvailableProvidersListParameters +from ._models_py3 import AvailableProvidersListState +from ._models_py3 import AvailableServiceAlias +from ._models_py3 import AvailableServiceAliasesResult +from ._models_py3 import AzureAsyncOperationResult +from ._models_py3 import AzureFirewall +from ._models_py3 import AzureFirewallApplicationRule +from ._models_py3 import AzureFirewallApplicationRuleCollection +from ._models_py3 import AzureFirewallApplicationRuleProtocol +from ._models_py3 import AzureFirewallFqdnTag +from ._models_py3 import AzureFirewallFqdnTagListResult +from ._models_py3 import AzureFirewallIPConfiguration +from ._models_py3 import AzureFirewallIpGroups +from ._models_py3 import AzureFirewallListResult +from ._models_py3 import AzureFirewallNatRCAction +from ._models_py3 import AzureFirewallNatRule +from ._models_py3 import AzureFirewallNatRuleCollection +from ._models_py3 import AzureFirewallNetworkRule +from ._models_py3 import AzureFirewallNetworkRuleCollection +from ._models_py3 import AzureFirewallPublicIPAddress +from ._models_py3 import AzureFirewallRCAction +from ._models_py3 import AzureFirewallSku +from ._models_py3 import AzureReachabilityReport +from ._models_py3 import AzureReachabilityReportItem +from ._models_py3 import AzureReachabilityReportLatencyInfo +from ._models_py3 import AzureReachabilityReportLocation +from ._models_py3 import AzureReachabilityReportParameters +from ._models_py3 import AzureWebCategory +from ._models_py3 import AzureWebCategoryListResult +from ._models_py3 import BGPCommunity +from ._models_py3 import BackendAddressInboundNatRulePortMappings +from ._models_py3 import BackendAddressPool +from ._models_py3 import BastionActiveSession +from ._models_py3 import BastionActiveSessionListResult +from ._models_py3 import BastionHost +from ._models_py3 import BastionHostIPConfiguration +from ._models_py3 import BastionHostListResult +from ._models_py3 import BastionSessionDeleteResult +from ._models_py3 import BastionSessionState +from ._models_py3 import BastionShareableLink +from ._models_py3 import BastionShareableLinkListRequest +from ._models_py3 import BastionShareableLinkListResult +from ._models_py3 import BgpConnection +from ._models_py3 import BgpPeerStatus +from ._models_py3 import BgpPeerStatusListResult +from ._models_py3 import BgpServiceCommunity +from ._models_py3 import BgpServiceCommunityListResult +from ._models_py3 import BgpSettings +from ._models_py3 import BreakOutCategoryPolicies +from ._models_py3 import CheckPrivateLinkServiceVisibilityRequest +from ._models_py3 import CloudErrorBody +from ._models_py3 import Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties +from ._models_py3 import ConnectionMonitor +from ._models_py3 import ConnectionMonitorDestination +from ._models_py3 import ConnectionMonitorEndpoint +from ._models_py3 import ConnectionMonitorEndpointFilter +from ._models_py3 import ConnectionMonitorEndpointFilterItem +from ._models_py3 import ConnectionMonitorEndpointScope +from ._models_py3 import ConnectionMonitorEndpointScopeItem +from ._models_py3 import ConnectionMonitorHttpConfiguration +from ._models_py3 import ConnectionMonitorIcmpConfiguration +from ._models_py3 import ConnectionMonitorListResult +from ._models_py3 import ConnectionMonitorOutput +from ._models_py3 import ConnectionMonitorParameters +from ._models_py3 import ConnectionMonitorQueryResult +from ._models_py3 import ConnectionMonitorResult +from ._models_py3 import ConnectionMonitorResultProperties +from ._models_py3 import ConnectionMonitorSource +from ._models_py3 import ConnectionMonitorSuccessThreshold +from ._models_py3 import ConnectionMonitorTcpConfiguration +from ._models_py3 import ConnectionMonitorTestConfiguration +from ._models_py3 import ConnectionMonitorTestGroup +from ._models_py3 import ConnectionMonitorWorkspaceSettings +from ._models_py3 import ConnectionResetSharedKey +from ._models_py3 import ConnectionSharedKey +from ._models_py3 import ConnectionStateSnapshot +from ._models_py3 import ConnectivityDestination +from ._models_py3 import ConnectivityHop +from ._models_py3 import ConnectivityInformation +from ._models_py3 import ConnectivityIssue +from ._models_py3 import ConnectivityParameters +from ._models_py3 import ConnectivitySource +from ._models_py3 import Container +from ._models_py3 import ContainerNetworkInterface +from ._models_py3 import ContainerNetworkInterfaceConfiguration +from ._models_py3 import ContainerNetworkInterfaceIpConfiguration +from ._models_py3 import CustomDnsConfigPropertiesFormat +from ._models_py3 import CustomIpPrefix +from ._models_py3 import CustomIpPrefixListResult +from ._models_py3 import DdosCustomPolicy +from ._models_py3 import DdosProtectionPlan +from ._models_py3 import DdosProtectionPlanListResult +from ._models_py3 import DdosSettings +from ._models_py3 import Delegation +from ._models_py3 import DeviceProperties +from ._models_py3 import DhcpOptions +from ._models_py3 import Dimension +from ._models_py3 import DnsNameAvailabilityResult +from ._models_py3 import DnsSettings +from ._models_py3 import DscpConfiguration +from ._models_py3 import DscpConfigurationListResult +from ._models_py3 import EffectiveNetworkSecurityGroup +from ._models_py3 import EffectiveNetworkSecurityGroupAssociation +from ._models_py3 import EffectiveNetworkSecurityGroupListResult +from ._models_py3 import EffectiveNetworkSecurityRule +from ._models_py3 import EffectiveRoute +from ._models_py3 import EffectiveRouteListResult +from ._models_py3 import EffectiveRoutesParameters +from ._models_py3 import EndpointServiceResult +from ._models_py3 import EndpointServicesListResult +from ._models_py3 import Error +from ._models_py3 import ErrorDetails +from ._models_py3 import ErrorResponse +from ._models_py3 import EvaluatedNetworkSecurityGroup +from ._models_py3 import ExclusionManagedRule +from ._models_py3 import ExclusionManagedRuleGroup +from ._models_py3 import ExclusionManagedRuleSet +from ._models_py3 import ExplicitProxySettings +from ._models_py3 import ExpressRouteCircuit +from ._models_py3 import ExpressRouteCircuitArpTable +from ._models_py3 import ExpressRouteCircuitAuthorization +from ._models_py3 import ExpressRouteCircuitConnection +from ._models_py3 import ExpressRouteCircuitConnectionListResult +from ._models_py3 import ExpressRouteCircuitListResult +from ._models_py3 import ExpressRouteCircuitPeering +from ._models_py3 import ExpressRouteCircuitPeeringConfig +from ._models_py3 import ExpressRouteCircuitPeeringId +from ._models_py3 import ExpressRouteCircuitPeeringListResult +from ._models_py3 import ExpressRouteCircuitReference +from ._models_py3 import ExpressRouteCircuitRoutesTable +from ._models_py3 import ExpressRouteCircuitRoutesTableSummary +from ._models_py3 import ExpressRouteCircuitServiceProviderProperties +from ._models_py3 import ExpressRouteCircuitSku +from ._models_py3 import ExpressRouteCircuitStats +from ._models_py3 import ExpressRouteCircuitsArpTableListResult +from ._models_py3 import ExpressRouteCircuitsRoutesTableListResult +from ._models_py3 import ExpressRouteCircuitsRoutesTableSummaryListResult +from ._models_py3 import ExpressRouteConnection +from ._models_py3 import ExpressRouteConnectionId +from ._models_py3 import ExpressRouteConnectionList +from ._models_py3 import ExpressRouteCrossConnection +from ._models_py3 import ExpressRouteCrossConnectionListResult +from ._models_py3 import ExpressRouteCrossConnectionPeering +from ._models_py3 import ExpressRouteCrossConnectionPeeringList +from ._models_py3 import ExpressRouteCrossConnectionRoutesTableSummary +from ._models_py3 import ExpressRouteCrossConnectionsRoutesTableSummaryListResult +from ._models_py3 import ExpressRouteGateway +from ._models_py3 import ExpressRouteGatewayList +from ._models_py3 import ExpressRouteGatewayPropertiesAutoScaleConfiguration +from ._models_py3 import ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds +from ._models_py3 import ExpressRouteLink +from ._models_py3 import ExpressRouteLinkListResult +from ._models_py3 import ExpressRouteLinkMacSecConfig +from ._models_py3 import ExpressRoutePort +from ._models_py3 import ExpressRoutePortAuthorization +from ._models_py3 import ExpressRoutePortAuthorizationListResult +from ._models_py3 import ExpressRoutePortListResult +from ._models_py3 import ExpressRoutePortsLocation +from ._models_py3 import ExpressRoutePortsLocationBandwidths +from ._models_py3 import ExpressRoutePortsLocationListResult +from ._models_py3 import ExpressRouteServiceProvider +from ._models_py3 import ExpressRouteServiceProviderBandwidthsOffered +from ._models_py3 import ExpressRouteServiceProviderListResult +from ._models_py3 import ExtendedLocation +from ._models_py3 import FilterItems +from ._models_py3 import FirewallPolicy +from ._models_py3 import FirewallPolicyCertificateAuthority +from ._models_py3 import FirewallPolicyFilterRuleCollection +from ._models_py3 import FirewallPolicyFilterRuleCollectionAction +from ._models_py3 import FirewallPolicyInsights +from ._models_py3 import FirewallPolicyIntrusionDetection +from ._models_py3 import FirewallPolicyIntrusionDetectionBypassTrafficSpecifications +from ._models_py3 import FirewallPolicyIntrusionDetectionConfiguration +from ._models_py3 import FirewallPolicyIntrusionDetectionSignatureSpecification +from ._models_py3 import FirewallPolicyListResult +from ._models_py3 import FirewallPolicyLogAnalyticsResources +from ._models_py3 import FirewallPolicyLogAnalyticsWorkspace +from ._models_py3 import FirewallPolicyNatRuleCollection +from ._models_py3 import FirewallPolicyNatRuleCollectionAction +from ._models_py3 import FirewallPolicyRule +from ._models_py3 import FirewallPolicyRuleApplicationProtocol +from ._models_py3 import FirewallPolicyRuleCollection +from ._models_py3 import FirewallPolicyRuleCollectionGroup +from ._models_py3 import FirewallPolicyRuleCollectionGroupListResult +from ._models_py3 import FirewallPolicySNAT +from ._models_py3 import FirewallPolicySQL +from ._models_py3 import FirewallPolicySku +from ._models_py3 import FirewallPolicyThreatIntelWhitelist +from ._models_py3 import FirewallPolicyTransportSecurity +from ._models_py3 import FlowLog +from ._models_py3 import FlowLogFormatParameters +from ._models_py3 import FlowLogInformation +from ._models_py3 import FlowLogListResult +from ._models_py3 import FlowLogStatusParameters +from ._models_py3 import FrontendIPConfiguration +from ._models_py3 import GatewayCustomBgpIpAddressIpConfiguration +from ._models_py3 import GatewayLoadBalancerTunnelInterface +from ._models_py3 import GatewayRoute +from ._models_py3 import GatewayRouteListResult +from ._models_py3 import GenerateExpressRoutePortsLOARequest +from ._models_py3 import GenerateExpressRoutePortsLOAResult +from ._models_py3 import GetVpnSitesConfigurationRequest +from ._models_py3 import HTTPConfiguration +from ._models_py3 import HTTPHeader +from ._models_py3 import HopLink +from ._models_py3 import HubIPAddresses +from ._models_py3 import HubIpConfiguration +from ._models_py3 import HubPublicIPAddresses +from ._models_py3 import HubRoute +from ._models_py3 import HubRouteTable +from ._models_py3 import HubVirtualNetworkConnection +from ._models_py3 import IDPSQueryObject +from ._models_py3 import IPAddressAvailabilityResult +from ._models_py3 import IPConfiguration +from ._models_py3 import IPConfigurationBgpPeeringAddress +from ._models_py3 import IPConfigurationProfile +from ._models_py3 import InboundNatPool +from ._models_py3 import InboundNatRule +from ._models_py3 import InboundNatRuleListResult +from ._models_py3 import InboundNatRulePortMapping +from ._models_py3 import InboundSecurityRule +from ._models_py3 import InboundSecurityRules +from ._models_py3 import IpAllocation +from ._models_py3 import IpAllocationListResult +from ._models_py3 import IpGroup +from ._models_py3 import IpGroupListResult +from ._models_py3 import IpTag +from ._models_py3 import IpsecPolicy +from ._models_py3 import Ipv6CircuitConnectionConfig +from ._models_py3 import Ipv6ExpressRouteCircuitPeeringConfig +from ._models_py3 import ListHubRouteTablesResult +from ._models_py3 import ListHubVirtualNetworkConnectionsResult +from ._models_py3 import ListP2SVpnGatewaysResult +from ._models_py3 import ListRoutingIntentResult +from ._models_py3 import ListVirtualHubBgpConnectionResults +from ._models_py3 import ListVirtualHubIpConfigurationResults +from ._models_py3 import ListVirtualHubRouteTableV2SResult +from ._models_py3 import ListVirtualHubsResult +from ._models_py3 import ListVirtualNetworkGatewayNatRulesResult +from ._models_py3 import ListVirtualWANsResult +from ._models_py3 import ListVpnConnectionsResult +from ._models_py3 import ListVpnGatewayNatRulesResult +from ._models_py3 import ListVpnGatewaysResult +from ._models_py3 import ListVpnServerConfigurationPolicyGroupsResult +from ._models_py3 import ListVpnServerConfigurationsResult +from ._models_py3 import ListVpnSiteLinkConnectionsResult +from ._models_py3 import ListVpnSiteLinksResult +from ._models_py3 import ListVpnSitesResult +from ._models_py3 import LoadBalancer +from ._models_py3 import LoadBalancerBackendAddress +from ._models_py3 import LoadBalancerBackendAddressPoolListResult +from ._models_py3 import LoadBalancerFrontendIPConfigurationListResult +from ._models_py3 import LoadBalancerListResult +from ._models_py3 import LoadBalancerLoadBalancingRuleListResult +from ._models_py3 import LoadBalancerOutboundRuleListResult +from ._models_py3 import LoadBalancerProbeListResult +from ._models_py3 import LoadBalancerSku +from ._models_py3 import LoadBalancerVipSwapRequest +from ._models_py3 import LoadBalancerVipSwapRequestFrontendIPConfiguration +from ._models_py3 import LoadBalancingRule +from ._models_py3 import LocalNetworkGateway +from ._models_py3 import LocalNetworkGatewayListResult +from ._models_py3 import LogSpecification +from ._models_py3 import ManagedRuleGroupOverride +from ._models_py3 import ManagedRuleOverride +from ._models_py3 import ManagedRuleSet +from ._models_py3 import ManagedRulesDefinition +from ._models_py3 import ManagedServiceIdentity +from ._models_py3 import MatchCondition +from ._models_py3 import MatchVariable +from ._models_py3 import MatchedRule +from ._models_py3 import MetricSpecification +from ._models_py3 import NatGateway +from ._models_py3 import NatGatewayListResult +from ._models_py3 import NatGatewaySku +from ._models_py3 import NatRule +from ._models_py3 import NatRulePortMapping +from ._models_py3 import NetworkConfigurationDiagnosticParameters +from ._models_py3 import NetworkConfigurationDiagnosticProfile +from ._models_py3 import NetworkConfigurationDiagnosticResponse +from ._models_py3 import NetworkConfigurationDiagnosticResult +from ._models_py3 import NetworkIntentPolicy +from ._models_py3 import NetworkIntentPolicyConfiguration +from ._models_py3 import NetworkInterface +from ._models_py3 import NetworkInterfaceAssociation +from ._models_py3 import NetworkInterfaceDnsSettings +from ._models_py3 import NetworkInterfaceIPConfiguration +from ._models_py3 import NetworkInterfaceIPConfigurationListResult +from ._models_py3 import NetworkInterfaceIPConfigurationPrivateLinkConnectionProperties +from ._models_py3 import NetworkInterfaceListResult +from ._models_py3 import NetworkInterfaceLoadBalancerListResult +from ._models_py3 import NetworkInterfaceTapConfiguration +from ._models_py3 import NetworkInterfaceTapConfigurationListResult +from ._models_py3 import NetworkProfile +from ._models_py3 import NetworkProfileListResult +from ._models_py3 import NetworkRule +from ._models_py3 import NetworkSecurityGroup +from ._models_py3 import NetworkSecurityGroupListResult +from ._models_py3 import NetworkSecurityGroupResult +from ._models_py3 import NetworkSecurityRulesEvaluationResult +from ._models_py3 import NetworkVirtualAppliance +from ._models_py3 import NetworkVirtualApplianceListResult +from ._models_py3 import NetworkVirtualApplianceSiteListResult +from ._models_py3 import NetworkVirtualApplianceSku +from ._models_py3 import NetworkVirtualApplianceSkuInstances +from ._models_py3 import NetworkVirtualApplianceSkuListResult +from ._models_py3 import NetworkWatcher +from ._models_py3 import NetworkWatcherListResult +from ._models_py3 import NextHopParameters +from ._models_py3 import NextHopResult +from ._models_py3 import O365BreakOutCategoryPolicies +from ._models_py3 import O365PolicyProperties +from ._models_py3 import Office365PolicyProperties +from ._models_py3 import Operation +from ._models_py3 import OperationDisplay +from ._models_py3 import OperationListResult +from ._models_py3 import OperationPropertiesFormatServiceSpecification +from ._models_py3 import OrderBy +from ._models_py3 import OutboundRule +from ._models_py3 import OwaspCrsExclusionEntry +from ._models_py3 import P2SConnectionConfiguration +from ._models_py3 import P2SVpnConnectionHealth +from ._models_py3 import P2SVpnConnectionHealthRequest +from ._models_py3 import P2SVpnConnectionRequest +from ._models_py3 import P2SVpnGateway +from ._models_py3 import P2SVpnProfileParameters +from ._models_py3 import PacketCapture +from ._models_py3 import PacketCaptureFilter +from ._models_py3 import PacketCaptureListResult +from ._models_py3 import PacketCaptureParameters +from ._models_py3 import PacketCaptureQueryStatusResult +from ._models_py3 import PacketCaptureResult +from ._models_py3 import PacketCaptureResultProperties +from ._models_py3 import PacketCaptureStorageLocation +from ._models_py3 import PatchRouteFilter +from ._models_py3 import PatchRouteFilterRule +from ._models_py3 import PeerExpressRouteCircuitConnection +from ._models_py3 import PeerExpressRouteCircuitConnectionListResult +from ._models_py3 import PeerRoute +from ._models_py3 import PeerRouteList +from ._models_py3 import PolicySettings +from ._models_py3 import PrepareNetworkPoliciesRequest +from ._models_py3 import PrivateDnsZoneConfig +from ._models_py3 import PrivateDnsZoneGroup +from ._models_py3 import PrivateDnsZoneGroupListResult +from ._models_py3 import PrivateEndpoint +from ._models_py3 import PrivateEndpointConnection +from ._models_py3 import PrivateEndpointConnectionListResult +from ._models_py3 import PrivateEndpointIPConfiguration +from ._models_py3 import PrivateEndpointListResult +from ._models_py3 import PrivateLinkService +from ._models_py3 import PrivateLinkServiceConnection +from ._models_py3 import PrivateLinkServiceConnectionState +from ._models_py3 import PrivateLinkServiceIpConfiguration +from ._models_py3 import PrivateLinkServiceListResult +from ._models_py3 import PrivateLinkServicePropertiesAutoApproval +from ._models_py3 import PrivateLinkServicePropertiesVisibility +from ._models_py3 import PrivateLinkServiceVisibility +from ._models_py3 import Probe +from ._models_py3 import PropagatedRouteTable +from ._models_py3 import ProtocolConfiguration +from ._models_py3 import ProtocolCustomSettingsFormat +from ._models_py3 import PublicIPAddress +from ._models_py3 import PublicIPAddressDnsSettings +from ._models_py3 import PublicIPAddressListResult +from ._models_py3 import PublicIPAddressSku +from ._models_py3 import PublicIPPrefix +from ._models_py3 import PublicIPPrefixListResult +from ._models_py3 import PublicIPPrefixSku +from ._models_py3 import QosDefinition +from ._models_py3 import QosIpRange +from ._models_py3 import QosPortRange +from ._models_py3 import QueryInboundNatRulePortMappingRequest +from ._models_py3 import QueryResults +from ._models_py3 import QueryTroubleshootingParameters +from ._models_py3 import RadiusServer +from ._models_py3 import RecordSet +from ._models_py3 import ReferencedPublicIpAddress +from ._models_py3 import Resource +from ._models_py3 import ResourceNavigationLink +from ._models_py3 import ResourceNavigationLinksListResult +from ._models_py3 import ResourceSet +from ._models_py3 import RetentionPolicyParameters +from ._models_py3 import Route +from ._models_py3 import RouteFilter +from ._models_py3 import RouteFilterListResult +from ._models_py3 import RouteFilterRule +from ._models_py3 import RouteFilterRuleListResult +from ._models_py3 import RouteListResult +from ._models_py3 import RouteTable +from ._models_py3 import RouteTableListResult +from ._models_py3 import RoutingConfiguration +from ._models_py3 import RoutingIntent +from ._models_py3 import RoutingPolicy +from ._models_py3 import SecurityGroupNetworkInterface +from ._models_py3 import SecurityGroupViewParameters +from ._models_py3 import SecurityGroupViewResult +from ._models_py3 import SecurityPartnerProvider +from ._models_py3 import SecurityPartnerProviderListResult +from ._models_py3 import SecurityRule +from ._models_py3 import SecurityRuleAssociations +from ._models_py3 import SecurityRuleListResult +from ._models_py3 import ServiceAssociationLink +from ._models_py3 import ServiceAssociationLinksListResult +from ._models_py3 import ServiceEndpointPolicy +from ._models_py3 import ServiceEndpointPolicyDefinition +from ._models_py3 import ServiceEndpointPolicyDefinitionListResult +from ._models_py3 import ServiceEndpointPolicyListResult +from ._models_py3 import ServiceEndpointPropertiesFormat +from ._models_py3 import ServiceTagInformation +from ._models_py3 import ServiceTagInformationListResult +from ._models_py3 import ServiceTagInformationPropertiesFormat +from ._models_py3 import ServiceTagsListResult +from ._models_py3 import SessionIds +from ._models_py3 import SignatureOverridesFilterValuesQuery +from ._models_py3 import SignatureOverridesFilterValuesResponse +from ._models_py3 import SignaturesOverrides +from ._models_py3 import SignaturesOverridesList +from ._models_py3 import SignaturesOverridesProperties +from ._models_py3 import SingleQueryResult +from ._models_py3 import Sku +from ._models_py3 import StaticRoute +from ._models_py3 import SubResource +from ._models_py3 import Subnet +from ._models_py3 import SubnetAssociation +from ._models_py3 import SubnetListResult +from ._models_py3 import TagsObject +from ._models_py3 import Topology +from ._models_py3 import TopologyAssociation +from ._models_py3 import TopologyParameters +from ._models_py3 import TopologyResource +from ._models_py3 import TrafficAnalyticsConfigurationProperties +from ._models_py3 import TrafficAnalyticsProperties +from ._models_py3 import TrafficSelectorPolicy +from ._models_py3 import TroubleshootingDetails +from ._models_py3 import TroubleshootingParameters +from ._models_py3 import TroubleshootingRecommendedActions +from ._models_py3 import TroubleshootingResult +from ._models_py3 import TunnelConnectionHealth +from ._models_py3 import UnprepareNetworkPoliciesRequest +from ._models_py3 import Usage +from ._models_py3 import UsageName +from ._models_py3 import UsagesListResult +from ._models_py3 import VM +from ._models_py3 import VerificationIPFlowParameters +from ._models_py3 import VerificationIPFlowResult +from ._models_py3 import VirtualApplianceNicProperties +from ._models_py3 import VirtualApplianceSite +from ._models_py3 import VirtualApplianceSkuProperties +from ._models_py3 import VirtualHub +from ._models_py3 import VirtualHubEffectiveRoute +from ._models_py3 import VirtualHubEffectiveRouteList +from ._models_py3 import VirtualHubId +from ._models_py3 import VirtualHubRoute +from ._models_py3 import VirtualHubRouteTable +from ._models_py3 import VirtualHubRouteTableV2 +from ._models_py3 import VirtualHubRouteV2 +from ._models_py3 import VirtualNetwork +from ._models_py3 import VirtualNetworkBgpCommunities +from ._models_py3 import VirtualNetworkConnectionGatewayReference +from ._models_py3 import VirtualNetworkEncryption +from ._models_py3 import VirtualNetworkGateway +from ._models_py3 import VirtualNetworkGatewayConnection +from ._models_py3 import VirtualNetworkGatewayConnectionListEntity +from ._models_py3 import VirtualNetworkGatewayConnectionListResult +from ._models_py3 import VirtualNetworkGatewayIPConfiguration +from ._models_py3 import VirtualNetworkGatewayListConnectionsResult +from ._models_py3 import VirtualNetworkGatewayListResult +from ._models_py3 import VirtualNetworkGatewayNatRule +from ._models_py3 import VirtualNetworkGatewaySku +from ._models_py3 import VirtualNetworkListResult +from ._models_py3 import VirtualNetworkListUsageResult +from ._models_py3 import VirtualNetworkPeering +from ._models_py3 import VirtualNetworkPeeringListResult +from ._models_py3 import VirtualNetworkTap +from ._models_py3 import VirtualNetworkTapListResult +from ._models_py3 import VirtualNetworkUsage +from ._models_py3 import VirtualNetworkUsageName +from ._models_py3 import VirtualRouter +from ._models_py3 import VirtualRouterListResult +from ._models_py3 import VirtualRouterPeering +from ._models_py3 import VirtualRouterPeeringListResult +from ._models_py3 import VirtualWAN +from ._models_py3 import VirtualWanSecurityProvider +from ._models_py3 import VirtualWanSecurityProviders +from ._models_py3 import VirtualWanVpnProfileParameters +from ._models_py3 import VnetRoute +from ._models_py3 import VpnClientConfiguration +from ._models_py3 import VpnClientConnectionHealth +from ._models_py3 import VpnClientConnectionHealthDetail +from ._models_py3 import VpnClientConnectionHealthDetailListResult +from ._models_py3 import VpnClientIPsecParameters +from ._models_py3 import VpnClientParameters +from ._models_py3 import VpnClientRevokedCertificate +from ._models_py3 import VpnClientRootCertificate +from ._models_py3 import VpnConnection +from ._models_py3 import VpnConnectionPacketCaptureStartParameters +from ._models_py3 import VpnConnectionPacketCaptureStopParameters +from ._models_py3 import VpnDeviceScriptParameters +from ._models_py3 import VpnGateway +from ._models_py3 import VpnGatewayIpConfiguration +from ._models_py3 import VpnGatewayNatRule +from ._models_py3 import VpnGatewayPacketCaptureStartParameters +from ._models_py3 import VpnGatewayPacketCaptureStopParameters +from ._models_py3 import VpnLinkBgpSettings +from ._models_py3 import VpnLinkProviderProperties +from ._models_py3 import VpnNatRuleMapping +from ._models_py3 import VpnPacketCaptureStartParameters +from ._models_py3 import VpnPacketCaptureStopParameters +from ._models_py3 import VpnProfileResponse +from ._models_py3 import VpnServerConfigRadiusClientRootCertificate +from ._models_py3 import VpnServerConfigRadiusServerRootCertificate +from ._models_py3 import VpnServerConfigVpnClientRevokedCertificate +from ._models_py3 import VpnServerConfigVpnClientRootCertificate +from ._models_py3 import VpnServerConfiguration +from ._models_py3 import VpnServerConfigurationPolicyGroup +from ._models_py3 import VpnServerConfigurationPolicyGroupMember +from ._models_py3 import VpnServerConfigurationsResponse +from ._models_py3 import VpnSite +from ._models_py3 import VpnSiteId +from ._models_py3 import VpnSiteLink +from ._models_py3 import VpnSiteLinkConnection +from ._models_py3 import WebApplicationFirewallCustomRule +from ._models_py3 import WebApplicationFirewallPolicy +from ._models_py3 import WebApplicationFirewallPolicyListResult + + +from ._network_management_client_enums import ( + Access, + ApplicationGatewayBackendHealthServerHealth, + ApplicationGatewayCookieBasedAffinity, + ApplicationGatewayCustomErrorStatusCode, + ApplicationGatewayFirewallMode, + ApplicationGatewayLoadDistributionAlgorithm, + ApplicationGatewayOperationalState, + ApplicationGatewayProtocol, + ApplicationGatewayRedirectType, + ApplicationGatewayRequestRoutingRuleType, + ApplicationGatewaySkuName, + ApplicationGatewaySslCipherSuite, + ApplicationGatewaySslPolicyName, + ApplicationGatewaySslPolicyType, + ApplicationGatewaySslProtocol, + ApplicationGatewayTier, + AssociationType, + AuthenticationMethod, + AuthorizationUseStatus, + AzureFirewallApplicationRuleProtocolType, + AzureFirewallNatRCActionType, + AzureFirewallNetworkRuleProtocol, + AzureFirewallRCActionType, + AzureFirewallSkuName, + AzureFirewallSkuTier, + AzureFirewallThreatIntelMode, + BastionConnectProtocol, + BastionHostSkuName, + BgpPeerState, + CircuitConnectionStatus, + CommissionedState, + ConnectionMonitorEndpointFilterItemType, + ConnectionMonitorEndpointFilterType, + ConnectionMonitorSourceStatus, + ConnectionMonitorTestConfigurationProtocol, + ConnectionMonitorType, + ConnectionState, + ConnectionStatus, + CoverageLevel, + DdosCustomPolicyProtocol, + DdosCustomPolicyTriggerSensitivityOverride, + DdosSettingsProtectionCoverage, + DeleteOptions, + DestinationPortBehavior, + DhGroup, + Direction, + EffectiveRouteSource, + EffectiveRouteState, + EffectiveSecurityRuleProtocol, + EndpointType, + EvaluationState, + ExpressRouteCircuitPeeringAdvertisedPublicPrefixState, + ExpressRouteCircuitPeeringState, + ExpressRouteCircuitSkuFamily, + ExpressRouteCircuitSkuTier, + ExpressRouteLinkAdminState, + ExpressRouteLinkConnectorType, + ExpressRouteLinkMacSecCipher, + ExpressRouteLinkMacSecSciState, + ExpressRoutePeeringState, + ExpressRoutePeeringType, + ExpressRoutePortAuthorizationUseStatus, + ExpressRoutePortsEncapsulation, + ExtendedLocationTypes, + FirewallPolicyFilterRuleCollectionActionType, + FirewallPolicyIDPSQuerySortOrder, + FirewallPolicyIDPSSignatureDirection, + FirewallPolicyIDPSSignatureMode, + FirewallPolicyIDPSSignatureSeverity, + FirewallPolicyIntrusionDetectionProtocol, + FirewallPolicyIntrusionDetectionStateType, + FirewallPolicyNatRuleCollectionActionType, + FirewallPolicyRuleApplicationProtocolType, + FirewallPolicyRuleCollectionType, + FirewallPolicyRuleNetworkProtocol, + FirewallPolicyRuleType, + FirewallPolicySkuTier, + FlowLogFormatType, + GatewayLoadBalancerTunnelInterfaceType, + GatewayLoadBalancerTunnelProtocol, + HTTPConfigurationMethod, + HTTPMethod, + HubBgpConnectionStatus, + HubRoutingPreference, + HubVirtualNetworkConnectionStatus, + IPAllocationMethod, + IPVersion, + IkeEncryption, + IkeIntegrity, + InboundSecurityRulesProtocol, + IpAllocationType, + IpFlowProtocol, + IpsecEncryption, + IpsecIntegrity, + IssueType, + LoadBalancerBackendAddressAdminState, + LoadBalancerOutboundRuleProtocol, + LoadBalancerSkuName, + LoadBalancerSkuTier, + LoadDistribution, + ManagedRuleEnabledState, + NatGatewaySkuName, + NetworkInterfaceAuxiliaryMode, + NetworkInterfaceMigrationPhase, + NetworkInterfaceNicType, + NetworkOperationStatus, + NextHopType, + OfficeTrafficCategory, + Origin, + OutputType, + OwaspCrsExclusionEntryMatchVariable, + OwaspCrsExclusionEntrySelectorMatchOperator, + PcError, + PcProtocol, + PcStatus, + PfsGroup, + PreferredIPVersion, + PreferredRoutingGateway, + ProbeProtocol, + ProcessorArchitecture, + Protocol, + ProtocolType, + ProvisioningState, + PublicIPAddressMigrationPhase, + PublicIPAddressSkuName, + PublicIPAddressSkuTier, + PublicIPPrefixSkuName, + PublicIPPrefixSkuTier, + ResourceIdentityType, + RouteFilterRuleType, + RouteNextHopType, + RoutingState, + SecurityPartnerProviderConnectionStatus, + SecurityProviderName, + SecurityRuleAccess, + SecurityRuleDirection, + SecurityRuleProtocol, + ServiceProviderProvisioningState, + Severity, + SyncRemoteAddressSpace, + TransportProtocol, + TunnelConnectionStatus, + UsageUnit, + VerbosityLevel, + VirtualNetworkEncryptionEnforcement, + VirtualNetworkGatewayConnectionMode, + VirtualNetworkGatewayConnectionProtocol, + VirtualNetworkGatewayConnectionStatus, + VirtualNetworkGatewayConnectionType, + VirtualNetworkGatewaySkuName, + VirtualNetworkGatewaySkuTier, + VirtualNetworkGatewayType, + VirtualNetworkPeeringLevel, + VirtualNetworkPeeringState, + VirtualNetworkPrivateEndpointNetworkPolicies, + VirtualNetworkPrivateLinkServiceNetworkPolicies, + VirtualWanSecurityProviderType, + VpnAuthenticationType, + VpnClientProtocol, + VpnConnectionStatus, + VpnGatewayGeneration, + VpnGatewayTunnelingProtocol, + VpnLinkConnectionMode, + VpnNatRuleMode, + VpnNatRuleType, + VpnPolicyMemberAttributeType, + VpnType, + WebApplicationFirewallAction, + WebApplicationFirewallEnabledState, + WebApplicationFirewallMatchVariable, + WebApplicationFirewallMode, + WebApplicationFirewallOperator, + WebApplicationFirewallPolicyResourceState, + WebApplicationFirewallRuleType, + WebApplicationFirewallTransform, +) + +__all__ = [ + 'AadAuthenticationParameters', + 'AddressSpace', + 'ApplicationGateway', + 'ApplicationGatewayAuthenticationCertificate', + 'ApplicationGatewayAutoscaleConfiguration', + 'ApplicationGatewayAvailableSslOptions', + 'ApplicationGatewayAvailableSslPredefinedPolicies', + 'ApplicationGatewayAvailableWafRuleSetsResult', + 'ApplicationGatewayBackendAddress', + 'ApplicationGatewayBackendAddressPool', + 'ApplicationGatewayBackendHealth', + 'ApplicationGatewayBackendHealthHttpSettings', + 'ApplicationGatewayBackendHealthOnDemand', + 'ApplicationGatewayBackendHealthPool', + 'ApplicationGatewayBackendHealthServer', + 'ApplicationGatewayBackendHttpSettings', + 'ApplicationGatewayBackendSettings', + 'ApplicationGatewayClientAuthConfiguration', + 'ApplicationGatewayConnectionDraining', + 'ApplicationGatewayCustomError', + 'ApplicationGatewayFirewallDisabledRuleGroup', + 'ApplicationGatewayFirewallExclusion', + 'ApplicationGatewayFirewallRule', + 'ApplicationGatewayFirewallRuleGroup', + 'ApplicationGatewayFirewallRuleSet', + 'ApplicationGatewayFrontendIPConfiguration', + 'ApplicationGatewayFrontendPort', + 'ApplicationGatewayGlobalConfiguration', + 'ApplicationGatewayHeaderConfiguration', + 'ApplicationGatewayHttpListener', + 'ApplicationGatewayIPConfiguration', + 'ApplicationGatewayListResult', + 'ApplicationGatewayListener', + 'ApplicationGatewayLoadDistributionPolicy', + 'ApplicationGatewayLoadDistributionTarget', + 'ApplicationGatewayOnDemandProbe', + 'ApplicationGatewayPathRule', + 'ApplicationGatewayPrivateEndpointConnection', + 'ApplicationGatewayPrivateEndpointConnectionListResult', + 'ApplicationGatewayPrivateLinkConfiguration', + 'ApplicationGatewayPrivateLinkIpConfiguration', + 'ApplicationGatewayPrivateLinkResource', + 'ApplicationGatewayPrivateLinkResourceListResult', + 'ApplicationGatewayProbe', + 'ApplicationGatewayProbeHealthResponseMatch', + 'ApplicationGatewayRedirectConfiguration', + 'ApplicationGatewayRequestRoutingRule', + 'ApplicationGatewayRewriteRule', + 'ApplicationGatewayRewriteRuleActionSet', + 'ApplicationGatewayRewriteRuleCondition', + 'ApplicationGatewayRewriteRuleSet', + 'ApplicationGatewayRoutingRule', + 'ApplicationGatewaySku', + 'ApplicationGatewaySslCertificate', + 'ApplicationGatewaySslPolicy', + 'ApplicationGatewaySslPredefinedPolicy', + 'ApplicationGatewaySslProfile', + 'ApplicationGatewayTrustedClientCertificate', + 'ApplicationGatewayTrustedRootCertificate', + 'ApplicationGatewayUrlConfiguration', + 'ApplicationGatewayUrlPathMap', + 'ApplicationGatewayWebApplicationFirewallConfiguration', + 'ApplicationRule', + 'ApplicationSecurityGroup', + 'ApplicationSecurityGroupListResult', + 'AuthorizationListResult', + 'AutoApprovedPrivateLinkService', + 'AutoApprovedPrivateLinkServicesResult', + 'Availability', + 'AvailableDelegation', + 'AvailableDelegationsResult', + 'AvailablePrivateEndpointType', + 'AvailablePrivateEndpointTypesResult', + 'AvailableProvidersList', + 'AvailableProvidersListCity', + 'AvailableProvidersListCountry', + 'AvailableProvidersListParameters', + 'AvailableProvidersListState', + 'AvailableServiceAlias', + 'AvailableServiceAliasesResult', + 'AzureAsyncOperationResult', + 'AzureFirewall', + 'AzureFirewallApplicationRule', + 'AzureFirewallApplicationRuleCollection', + 'AzureFirewallApplicationRuleProtocol', + 'AzureFirewallFqdnTag', + 'AzureFirewallFqdnTagListResult', + 'AzureFirewallIPConfiguration', + 'AzureFirewallIpGroups', + 'AzureFirewallListResult', + 'AzureFirewallNatRCAction', + 'AzureFirewallNatRule', + 'AzureFirewallNatRuleCollection', + 'AzureFirewallNetworkRule', + 'AzureFirewallNetworkRuleCollection', + 'AzureFirewallPublicIPAddress', + 'AzureFirewallRCAction', + 'AzureFirewallSku', + 'AzureReachabilityReport', + 'AzureReachabilityReportItem', + 'AzureReachabilityReportLatencyInfo', + 'AzureReachabilityReportLocation', + 'AzureReachabilityReportParameters', + 'AzureWebCategory', + 'AzureWebCategoryListResult', + 'BGPCommunity', + 'BackendAddressInboundNatRulePortMappings', + 'BackendAddressPool', + 'BastionActiveSession', + 'BastionActiveSessionListResult', + 'BastionHost', + 'BastionHostIPConfiguration', + 'BastionHostListResult', + 'BastionSessionDeleteResult', + 'BastionSessionState', + 'BastionShareableLink', + 'BastionShareableLinkListRequest', + 'BastionShareableLinkListResult', + 'BgpConnection', + 'BgpPeerStatus', + 'BgpPeerStatusListResult', + 'BgpServiceCommunity', + 'BgpServiceCommunityListResult', + 'BgpSettings', + 'BreakOutCategoryPolicies', + 'CheckPrivateLinkServiceVisibilityRequest', + 'CloudErrorBody', + 'Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties', + 'ConnectionMonitor', + 'ConnectionMonitorDestination', + 'ConnectionMonitorEndpoint', + 'ConnectionMonitorEndpointFilter', + 'ConnectionMonitorEndpointFilterItem', + 'ConnectionMonitorEndpointScope', + 'ConnectionMonitorEndpointScopeItem', + 'ConnectionMonitorHttpConfiguration', + 'ConnectionMonitorIcmpConfiguration', + 'ConnectionMonitorListResult', + 'ConnectionMonitorOutput', + 'ConnectionMonitorParameters', + 'ConnectionMonitorQueryResult', + 'ConnectionMonitorResult', + 'ConnectionMonitorResultProperties', + 'ConnectionMonitorSource', + 'ConnectionMonitorSuccessThreshold', + 'ConnectionMonitorTcpConfiguration', + 'ConnectionMonitorTestConfiguration', + 'ConnectionMonitorTestGroup', + 'ConnectionMonitorWorkspaceSettings', + 'ConnectionResetSharedKey', + 'ConnectionSharedKey', + 'ConnectionStateSnapshot', + 'ConnectivityDestination', + 'ConnectivityHop', + 'ConnectivityInformation', + 'ConnectivityIssue', + 'ConnectivityParameters', + 'ConnectivitySource', + 'Container', + 'ContainerNetworkInterface', + 'ContainerNetworkInterfaceConfiguration', + 'ContainerNetworkInterfaceIpConfiguration', + 'CustomDnsConfigPropertiesFormat', + 'CustomIpPrefix', + 'CustomIpPrefixListResult', + 'DdosCustomPolicy', + 'DdosProtectionPlan', + 'DdosProtectionPlanListResult', + 'DdosSettings', + 'Delegation', + 'DeviceProperties', + 'DhcpOptions', + 'Dimension', + 'DnsNameAvailabilityResult', + 'DnsSettings', + 'DscpConfiguration', + 'DscpConfigurationListResult', + 'EffectiveNetworkSecurityGroup', + 'EffectiveNetworkSecurityGroupAssociation', + 'EffectiveNetworkSecurityGroupListResult', + 'EffectiveNetworkSecurityRule', + 'EffectiveRoute', + 'EffectiveRouteListResult', + 'EffectiveRoutesParameters', + 'EndpointServiceResult', + 'EndpointServicesListResult', + 'Error', + 'ErrorDetails', + 'ErrorResponse', + 'EvaluatedNetworkSecurityGroup', + 'ExclusionManagedRule', + 'ExclusionManagedRuleGroup', + 'ExclusionManagedRuleSet', + 'ExplicitProxySettings', + 'ExpressRouteCircuit', + 'ExpressRouteCircuitArpTable', + 'ExpressRouteCircuitAuthorization', + 'ExpressRouteCircuitConnection', + 'ExpressRouteCircuitConnectionListResult', + 'ExpressRouteCircuitListResult', + 'ExpressRouteCircuitPeering', + 'ExpressRouteCircuitPeeringConfig', + 'ExpressRouteCircuitPeeringId', + 'ExpressRouteCircuitPeeringListResult', + 'ExpressRouteCircuitReference', + 'ExpressRouteCircuitRoutesTable', + 'ExpressRouteCircuitRoutesTableSummary', + 'ExpressRouteCircuitServiceProviderProperties', + 'ExpressRouteCircuitSku', + 'ExpressRouteCircuitStats', + 'ExpressRouteCircuitsArpTableListResult', + 'ExpressRouteCircuitsRoutesTableListResult', + 'ExpressRouteCircuitsRoutesTableSummaryListResult', + 'ExpressRouteConnection', + 'ExpressRouteConnectionId', + 'ExpressRouteConnectionList', + 'ExpressRouteCrossConnection', + 'ExpressRouteCrossConnectionListResult', + 'ExpressRouteCrossConnectionPeering', + 'ExpressRouteCrossConnectionPeeringList', + 'ExpressRouteCrossConnectionRoutesTableSummary', + 'ExpressRouteCrossConnectionsRoutesTableSummaryListResult', + 'ExpressRouteGateway', + 'ExpressRouteGatewayList', + 'ExpressRouteGatewayPropertiesAutoScaleConfiguration', + 'ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds', + 'ExpressRouteLink', + 'ExpressRouteLinkListResult', + 'ExpressRouteLinkMacSecConfig', + 'ExpressRoutePort', + 'ExpressRoutePortAuthorization', + 'ExpressRoutePortAuthorizationListResult', + 'ExpressRoutePortListResult', + 'ExpressRoutePortsLocation', + 'ExpressRoutePortsLocationBandwidths', + 'ExpressRoutePortsLocationListResult', + 'ExpressRouteServiceProvider', + 'ExpressRouteServiceProviderBandwidthsOffered', + 'ExpressRouteServiceProviderListResult', + 'ExtendedLocation', + 'FilterItems', + 'FirewallPolicy', + 'FirewallPolicyCertificateAuthority', + 'FirewallPolicyFilterRuleCollection', + 'FirewallPolicyFilterRuleCollectionAction', + 'FirewallPolicyInsights', + 'FirewallPolicyIntrusionDetection', + 'FirewallPolicyIntrusionDetectionBypassTrafficSpecifications', + 'FirewallPolicyIntrusionDetectionConfiguration', + 'FirewallPolicyIntrusionDetectionSignatureSpecification', + 'FirewallPolicyListResult', + 'FirewallPolicyLogAnalyticsResources', + 'FirewallPolicyLogAnalyticsWorkspace', + 'FirewallPolicyNatRuleCollection', + 'FirewallPolicyNatRuleCollectionAction', + 'FirewallPolicyRule', + 'FirewallPolicyRuleApplicationProtocol', + 'FirewallPolicyRuleCollection', + 'FirewallPolicyRuleCollectionGroup', + 'FirewallPolicyRuleCollectionGroupListResult', + 'FirewallPolicySNAT', + 'FirewallPolicySQL', + 'FirewallPolicySku', + 'FirewallPolicyThreatIntelWhitelist', + 'FirewallPolicyTransportSecurity', + 'FlowLog', + 'FlowLogFormatParameters', + 'FlowLogInformation', + 'FlowLogListResult', + 'FlowLogStatusParameters', + 'FrontendIPConfiguration', + 'GatewayCustomBgpIpAddressIpConfiguration', + 'GatewayLoadBalancerTunnelInterface', + 'GatewayRoute', + 'GatewayRouteListResult', + 'GenerateExpressRoutePortsLOARequest', + 'GenerateExpressRoutePortsLOAResult', + 'GetVpnSitesConfigurationRequest', + 'HTTPConfiguration', + 'HTTPHeader', + 'HopLink', + 'HubIPAddresses', + 'HubIpConfiguration', + 'HubPublicIPAddresses', + 'HubRoute', + 'HubRouteTable', + 'HubVirtualNetworkConnection', + 'IDPSQueryObject', + 'IPAddressAvailabilityResult', + 'IPConfiguration', + 'IPConfigurationBgpPeeringAddress', + 'IPConfigurationProfile', + 'InboundNatPool', + 'InboundNatRule', + 'InboundNatRuleListResult', + 'InboundNatRulePortMapping', + 'InboundSecurityRule', + 'InboundSecurityRules', + 'IpAllocation', + 'IpAllocationListResult', + 'IpGroup', + 'IpGroupListResult', + 'IpTag', + 'IpsecPolicy', + 'Ipv6CircuitConnectionConfig', + 'Ipv6ExpressRouteCircuitPeeringConfig', + 'ListHubRouteTablesResult', + 'ListHubVirtualNetworkConnectionsResult', + 'ListP2SVpnGatewaysResult', + 'ListRoutingIntentResult', + 'ListVirtualHubBgpConnectionResults', + 'ListVirtualHubIpConfigurationResults', + 'ListVirtualHubRouteTableV2SResult', + 'ListVirtualHubsResult', + 'ListVirtualNetworkGatewayNatRulesResult', + 'ListVirtualWANsResult', + 'ListVpnConnectionsResult', + 'ListVpnGatewayNatRulesResult', + 'ListVpnGatewaysResult', + 'ListVpnServerConfigurationPolicyGroupsResult', + 'ListVpnServerConfigurationsResult', + 'ListVpnSiteLinkConnectionsResult', + 'ListVpnSiteLinksResult', + 'ListVpnSitesResult', + 'LoadBalancer', + 'LoadBalancerBackendAddress', + 'LoadBalancerBackendAddressPoolListResult', + 'LoadBalancerFrontendIPConfigurationListResult', + 'LoadBalancerListResult', + 'LoadBalancerLoadBalancingRuleListResult', + 'LoadBalancerOutboundRuleListResult', + 'LoadBalancerProbeListResult', + 'LoadBalancerSku', + 'LoadBalancerVipSwapRequest', + 'LoadBalancerVipSwapRequestFrontendIPConfiguration', + 'LoadBalancingRule', + 'LocalNetworkGateway', + 'LocalNetworkGatewayListResult', + 'LogSpecification', + 'ManagedRuleGroupOverride', + 'ManagedRuleOverride', + 'ManagedRuleSet', + 'ManagedRulesDefinition', + 'ManagedServiceIdentity', + 'MatchCondition', + 'MatchVariable', + 'MatchedRule', + 'MetricSpecification', + 'NatGateway', + 'NatGatewayListResult', + 'NatGatewaySku', + 'NatRule', + 'NatRulePortMapping', + 'NetworkConfigurationDiagnosticParameters', + 'NetworkConfigurationDiagnosticProfile', + 'NetworkConfigurationDiagnosticResponse', + 'NetworkConfigurationDiagnosticResult', + 'NetworkIntentPolicy', + 'NetworkIntentPolicyConfiguration', + 'NetworkInterface', + 'NetworkInterfaceAssociation', + 'NetworkInterfaceDnsSettings', + 'NetworkInterfaceIPConfiguration', + 'NetworkInterfaceIPConfigurationListResult', + 'NetworkInterfaceIPConfigurationPrivateLinkConnectionProperties', + 'NetworkInterfaceListResult', + 'NetworkInterfaceLoadBalancerListResult', + 'NetworkInterfaceTapConfiguration', + 'NetworkInterfaceTapConfigurationListResult', + 'NetworkProfile', + 'NetworkProfileListResult', + 'NetworkRule', + 'NetworkSecurityGroup', + 'NetworkSecurityGroupListResult', + 'NetworkSecurityGroupResult', + 'NetworkSecurityRulesEvaluationResult', + 'NetworkVirtualAppliance', + 'NetworkVirtualApplianceListResult', + 'NetworkVirtualApplianceSiteListResult', + 'NetworkVirtualApplianceSku', + 'NetworkVirtualApplianceSkuInstances', + 'NetworkVirtualApplianceSkuListResult', + 'NetworkWatcher', + 'NetworkWatcherListResult', + 'NextHopParameters', + 'NextHopResult', + 'O365BreakOutCategoryPolicies', + 'O365PolicyProperties', + 'Office365PolicyProperties', + 'Operation', + 'OperationDisplay', + 'OperationListResult', + 'OperationPropertiesFormatServiceSpecification', + 'OrderBy', + 'OutboundRule', + 'OwaspCrsExclusionEntry', + 'P2SConnectionConfiguration', + 'P2SVpnConnectionHealth', + 'P2SVpnConnectionHealthRequest', + 'P2SVpnConnectionRequest', + 'P2SVpnGateway', + 'P2SVpnProfileParameters', + 'PacketCapture', + 'PacketCaptureFilter', + 'PacketCaptureListResult', + 'PacketCaptureParameters', + 'PacketCaptureQueryStatusResult', + 'PacketCaptureResult', + 'PacketCaptureResultProperties', + 'PacketCaptureStorageLocation', + 'PatchRouteFilter', + 'PatchRouteFilterRule', + 'PeerExpressRouteCircuitConnection', + 'PeerExpressRouteCircuitConnectionListResult', + 'PeerRoute', + 'PeerRouteList', + 'PolicySettings', + 'PrepareNetworkPoliciesRequest', + 'PrivateDnsZoneConfig', + 'PrivateDnsZoneGroup', + 'PrivateDnsZoneGroupListResult', + 'PrivateEndpoint', + 'PrivateEndpointConnection', + 'PrivateEndpointConnectionListResult', + 'PrivateEndpointIPConfiguration', + 'PrivateEndpointListResult', + 'PrivateLinkService', + 'PrivateLinkServiceConnection', + 'PrivateLinkServiceConnectionState', + 'PrivateLinkServiceIpConfiguration', + 'PrivateLinkServiceListResult', + 'PrivateLinkServicePropertiesAutoApproval', + 'PrivateLinkServicePropertiesVisibility', + 'PrivateLinkServiceVisibility', + 'Probe', + 'PropagatedRouteTable', + 'ProtocolConfiguration', + 'ProtocolCustomSettingsFormat', + 'PublicIPAddress', + 'PublicIPAddressDnsSettings', + 'PublicIPAddressListResult', + 'PublicIPAddressSku', + 'PublicIPPrefix', + 'PublicIPPrefixListResult', + 'PublicIPPrefixSku', + 'QosDefinition', + 'QosIpRange', + 'QosPortRange', + 'QueryInboundNatRulePortMappingRequest', + 'QueryResults', + 'QueryTroubleshootingParameters', + 'RadiusServer', + 'RecordSet', + 'ReferencedPublicIpAddress', + 'Resource', + 'ResourceNavigationLink', + 'ResourceNavigationLinksListResult', + 'ResourceSet', + 'RetentionPolicyParameters', + 'Route', + 'RouteFilter', + 'RouteFilterListResult', + 'RouteFilterRule', + 'RouteFilterRuleListResult', + 'RouteListResult', + 'RouteTable', + 'RouteTableListResult', + 'RoutingConfiguration', + 'RoutingIntent', + 'RoutingPolicy', + 'SecurityGroupNetworkInterface', + 'SecurityGroupViewParameters', + 'SecurityGroupViewResult', + 'SecurityPartnerProvider', + 'SecurityPartnerProviderListResult', + 'SecurityRule', + 'SecurityRuleAssociations', + 'SecurityRuleListResult', + 'ServiceAssociationLink', + 'ServiceAssociationLinksListResult', + 'ServiceEndpointPolicy', + 'ServiceEndpointPolicyDefinition', + 'ServiceEndpointPolicyDefinitionListResult', + 'ServiceEndpointPolicyListResult', + 'ServiceEndpointPropertiesFormat', + 'ServiceTagInformation', + 'ServiceTagInformationListResult', + 'ServiceTagInformationPropertiesFormat', + 'ServiceTagsListResult', + 'SessionIds', + 'SignatureOverridesFilterValuesQuery', + 'SignatureOverridesFilterValuesResponse', + 'SignaturesOverrides', + 'SignaturesOverridesList', + 'SignaturesOverridesProperties', + 'SingleQueryResult', + 'Sku', + 'StaticRoute', + 'SubResource', + 'Subnet', + 'SubnetAssociation', + 'SubnetListResult', + 'TagsObject', + 'Topology', + 'TopologyAssociation', + 'TopologyParameters', + 'TopologyResource', + 'TrafficAnalyticsConfigurationProperties', + 'TrafficAnalyticsProperties', + 'TrafficSelectorPolicy', + 'TroubleshootingDetails', + 'TroubleshootingParameters', + 'TroubleshootingRecommendedActions', + 'TroubleshootingResult', + 'TunnelConnectionHealth', + 'UnprepareNetworkPoliciesRequest', + 'Usage', + 'UsageName', + 'UsagesListResult', + 'VM', + 'VerificationIPFlowParameters', + 'VerificationIPFlowResult', + 'VirtualApplianceNicProperties', + 'VirtualApplianceSite', + 'VirtualApplianceSkuProperties', + 'VirtualHub', + 'VirtualHubEffectiveRoute', + 'VirtualHubEffectiveRouteList', + 'VirtualHubId', + 'VirtualHubRoute', + 'VirtualHubRouteTable', + 'VirtualHubRouteTableV2', + 'VirtualHubRouteV2', + 'VirtualNetwork', + 'VirtualNetworkBgpCommunities', + 'VirtualNetworkConnectionGatewayReference', + 'VirtualNetworkEncryption', + 'VirtualNetworkGateway', + 'VirtualNetworkGatewayConnection', + 'VirtualNetworkGatewayConnectionListEntity', + 'VirtualNetworkGatewayConnectionListResult', + 'VirtualNetworkGatewayIPConfiguration', + 'VirtualNetworkGatewayListConnectionsResult', + 'VirtualNetworkGatewayListResult', + 'VirtualNetworkGatewayNatRule', + 'VirtualNetworkGatewaySku', + 'VirtualNetworkListResult', + 'VirtualNetworkListUsageResult', + 'VirtualNetworkPeering', + 'VirtualNetworkPeeringListResult', + 'VirtualNetworkTap', + 'VirtualNetworkTapListResult', + 'VirtualNetworkUsage', + 'VirtualNetworkUsageName', + 'VirtualRouter', + 'VirtualRouterListResult', + 'VirtualRouterPeering', + 'VirtualRouterPeeringListResult', + 'VirtualWAN', + 'VirtualWanSecurityProvider', + 'VirtualWanSecurityProviders', + 'VirtualWanVpnProfileParameters', + 'VnetRoute', + 'VpnClientConfiguration', + 'VpnClientConnectionHealth', + 'VpnClientConnectionHealthDetail', + 'VpnClientConnectionHealthDetailListResult', + 'VpnClientIPsecParameters', + 'VpnClientParameters', + 'VpnClientRevokedCertificate', + 'VpnClientRootCertificate', + 'VpnConnection', + 'VpnConnectionPacketCaptureStartParameters', + 'VpnConnectionPacketCaptureStopParameters', + 'VpnDeviceScriptParameters', + 'VpnGateway', + 'VpnGatewayIpConfiguration', + 'VpnGatewayNatRule', + 'VpnGatewayPacketCaptureStartParameters', + 'VpnGatewayPacketCaptureStopParameters', + 'VpnLinkBgpSettings', + 'VpnLinkProviderProperties', + 'VpnNatRuleMapping', + 'VpnPacketCaptureStartParameters', + 'VpnPacketCaptureStopParameters', + 'VpnProfileResponse', + 'VpnServerConfigRadiusClientRootCertificate', + 'VpnServerConfigRadiusServerRootCertificate', + 'VpnServerConfigVpnClientRevokedCertificate', + 'VpnServerConfigVpnClientRootCertificate', + 'VpnServerConfiguration', + 'VpnServerConfigurationPolicyGroup', + 'VpnServerConfigurationPolicyGroupMember', + 'VpnServerConfigurationsResponse', + 'VpnSite', + 'VpnSiteId', + 'VpnSiteLink', + 'VpnSiteLinkConnection', + 'WebApplicationFirewallCustomRule', + 'WebApplicationFirewallPolicy', + 'WebApplicationFirewallPolicyListResult', + 'Access', + 'ApplicationGatewayBackendHealthServerHealth', + 'ApplicationGatewayCookieBasedAffinity', + 'ApplicationGatewayCustomErrorStatusCode', + 'ApplicationGatewayFirewallMode', + 'ApplicationGatewayLoadDistributionAlgorithm', + 'ApplicationGatewayOperationalState', + 'ApplicationGatewayProtocol', + 'ApplicationGatewayRedirectType', + 'ApplicationGatewayRequestRoutingRuleType', + 'ApplicationGatewaySkuName', + 'ApplicationGatewaySslCipherSuite', + 'ApplicationGatewaySslPolicyName', + 'ApplicationGatewaySslPolicyType', + 'ApplicationGatewaySslProtocol', + 'ApplicationGatewayTier', + 'AssociationType', + 'AuthenticationMethod', + 'AuthorizationUseStatus', + 'AzureFirewallApplicationRuleProtocolType', + 'AzureFirewallNatRCActionType', + 'AzureFirewallNetworkRuleProtocol', + 'AzureFirewallRCActionType', + 'AzureFirewallSkuName', + 'AzureFirewallSkuTier', + 'AzureFirewallThreatIntelMode', + 'BastionConnectProtocol', + 'BastionHostSkuName', + 'BgpPeerState', + 'CircuitConnectionStatus', + 'CommissionedState', + 'ConnectionMonitorEndpointFilterItemType', + 'ConnectionMonitorEndpointFilterType', + 'ConnectionMonitorSourceStatus', + 'ConnectionMonitorTestConfigurationProtocol', + 'ConnectionMonitorType', + 'ConnectionState', + 'ConnectionStatus', + 'CoverageLevel', + 'DdosCustomPolicyProtocol', + 'DdosCustomPolicyTriggerSensitivityOverride', + 'DdosSettingsProtectionCoverage', + 'DeleteOptions', + 'DestinationPortBehavior', + 'DhGroup', + 'Direction', + 'EffectiveRouteSource', + 'EffectiveRouteState', + 'EffectiveSecurityRuleProtocol', + 'EndpointType', + 'EvaluationState', + 'ExpressRouteCircuitPeeringAdvertisedPublicPrefixState', + 'ExpressRouteCircuitPeeringState', + 'ExpressRouteCircuitSkuFamily', + 'ExpressRouteCircuitSkuTier', + 'ExpressRouteLinkAdminState', + 'ExpressRouteLinkConnectorType', + 'ExpressRouteLinkMacSecCipher', + 'ExpressRouteLinkMacSecSciState', + 'ExpressRoutePeeringState', + 'ExpressRoutePeeringType', + 'ExpressRoutePortAuthorizationUseStatus', + 'ExpressRoutePortsEncapsulation', + 'ExtendedLocationTypes', + 'FirewallPolicyFilterRuleCollectionActionType', + 'FirewallPolicyIDPSQuerySortOrder', + 'FirewallPolicyIDPSSignatureDirection', + 'FirewallPolicyIDPSSignatureMode', + 'FirewallPolicyIDPSSignatureSeverity', + 'FirewallPolicyIntrusionDetectionProtocol', + 'FirewallPolicyIntrusionDetectionStateType', + 'FirewallPolicyNatRuleCollectionActionType', + 'FirewallPolicyRuleApplicationProtocolType', + 'FirewallPolicyRuleCollectionType', + 'FirewallPolicyRuleNetworkProtocol', + 'FirewallPolicyRuleType', + 'FirewallPolicySkuTier', + 'FlowLogFormatType', + 'GatewayLoadBalancerTunnelInterfaceType', + 'GatewayLoadBalancerTunnelProtocol', + 'HTTPConfigurationMethod', + 'HTTPMethod', + 'HubBgpConnectionStatus', + 'HubRoutingPreference', + 'HubVirtualNetworkConnectionStatus', + 'IPAllocationMethod', + 'IPVersion', + 'IkeEncryption', + 'IkeIntegrity', + 'InboundSecurityRulesProtocol', + 'IpAllocationType', + 'IpFlowProtocol', + 'IpsecEncryption', + 'IpsecIntegrity', + 'IssueType', + 'LoadBalancerBackendAddressAdminState', + 'LoadBalancerOutboundRuleProtocol', + 'LoadBalancerSkuName', + 'LoadBalancerSkuTier', + 'LoadDistribution', + 'ManagedRuleEnabledState', + 'NatGatewaySkuName', + 'NetworkInterfaceAuxiliaryMode', + 'NetworkInterfaceMigrationPhase', + 'NetworkInterfaceNicType', + 'NetworkOperationStatus', + 'NextHopType', + 'OfficeTrafficCategory', + 'Origin', + 'OutputType', + 'OwaspCrsExclusionEntryMatchVariable', + 'OwaspCrsExclusionEntrySelectorMatchOperator', + 'PcError', + 'PcProtocol', + 'PcStatus', + 'PfsGroup', + 'PreferredIPVersion', + 'PreferredRoutingGateway', + 'ProbeProtocol', + 'ProcessorArchitecture', + 'Protocol', + 'ProtocolType', + 'ProvisioningState', + 'PublicIPAddressMigrationPhase', + 'PublicIPAddressSkuName', + 'PublicIPAddressSkuTier', + 'PublicIPPrefixSkuName', + 'PublicIPPrefixSkuTier', + 'ResourceIdentityType', + 'RouteFilterRuleType', + 'RouteNextHopType', + 'RoutingState', + 'SecurityPartnerProviderConnectionStatus', + 'SecurityProviderName', + 'SecurityRuleAccess', + 'SecurityRuleDirection', + 'SecurityRuleProtocol', + 'ServiceProviderProvisioningState', + 'Severity', + 'SyncRemoteAddressSpace', + 'TransportProtocol', + 'TunnelConnectionStatus', + 'UsageUnit', + 'VerbosityLevel', + 'VirtualNetworkEncryptionEnforcement', + 'VirtualNetworkGatewayConnectionMode', + 'VirtualNetworkGatewayConnectionProtocol', + 'VirtualNetworkGatewayConnectionStatus', + 'VirtualNetworkGatewayConnectionType', + 'VirtualNetworkGatewaySkuName', + 'VirtualNetworkGatewaySkuTier', + 'VirtualNetworkGatewayType', + 'VirtualNetworkPeeringLevel', + 'VirtualNetworkPeeringState', + 'VirtualNetworkPrivateEndpointNetworkPolicies', + 'VirtualNetworkPrivateLinkServiceNetworkPolicies', + 'VirtualWanSecurityProviderType', + 'VpnAuthenticationType', + 'VpnClientProtocol', + 'VpnConnectionStatus', + 'VpnGatewayGeneration', + 'VpnGatewayTunnelingProtocol', + 'VpnLinkConnectionMode', + 'VpnNatRuleMode', + 'VpnNatRuleType', + 'VpnPolicyMemberAttributeType', + 'VpnType', + 'WebApplicationFirewallAction', + 'WebApplicationFirewallEnabledState', + 'WebApplicationFirewallMatchVariable', + 'WebApplicationFirewallMode', + 'WebApplicationFirewallOperator', + 'WebApplicationFirewallPolicyResourceState', + 'WebApplicationFirewallRuleType', + 'WebApplicationFirewallTransform', +] diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/_models_py3.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/_models_py3.py new file mode 100644 index 00000000000..7847ddd9a34 --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/_models_py3.py @@ -0,0 +1,34275 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +import datetime +from typing import Dict, List, Optional, Union + +from azure.core.exceptions import HttpResponseError +import msrest.serialization + +from ._network_management_client_enums import * + + +class AadAuthenticationParameters(msrest.serialization.Model): + """AAD Vpn authentication type related parameters. + + :ivar aad_tenant: AAD Vpn authentication parameter AAD tenant. + :vartype aad_tenant: str + :ivar aad_audience: AAD Vpn authentication parameter AAD audience. + :vartype aad_audience: str + :ivar aad_issuer: AAD Vpn authentication parameter AAD issuer. + :vartype aad_issuer: str + """ + + _attribute_map = { + 'aad_tenant': {'key': 'aadTenant', 'type': 'str'}, + 'aad_audience': {'key': 'aadAudience', 'type': 'str'}, + 'aad_issuer': {'key': 'aadIssuer', 'type': 'str'}, + } + + def __init__( + self, + *, + aad_tenant: Optional[str] = None, + aad_audience: Optional[str] = None, + aad_issuer: Optional[str] = None, + **kwargs + ): + """ + :keyword aad_tenant: AAD Vpn authentication parameter AAD tenant. + :paramtype aad_tenant: str + :keyword aad_audience: AAD Vpn authentication parameter AAD audience. + :paramtype aad_audience: str + :keyword aad_issuer: AAD Vpn authentication parameter AAD issuer. + :paramtype aad_issuer: str + """ + super(AadAuthenticationParameters, self).__init__(**kwargs) + self.aad_tenant = aad_tenant + self.aad_audience = aad_audience + self.aad_issuer = aad_issuer + + +class AddressSpace(msrest.serialization.Model): + """AddressSpace contains an array of IP address ranges that can be used by subnets of the virtual network. + + :ivar address_prefixes: A list of address blocks reserved for this virtual network in CIDR + notation. + :vartype address_prefixes: list[str] + """ + + _attribute_map = { + 'address_prefixes': {'key': 'addressPrefixes', 'type': '[str]'}, + } + + def __init__( + self, + *, + address_prefixes: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword address_prefixes: A list of address blocks reserved for this virtual network in CIDR + notation. + :paramtype address_prefixes: list[str] + """ + super(AddressSpace, self).__init__(**kwargs) + self.address_prefixes = address_prefixes + + +class Resource(msrest.serialization.Model): + """Common resource representation. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + """ + super(Resource, self).__init__(**kwargs) + self.id = id + self.name = None + self.type = None + self.location = location + self.tags = tags + + +class ApplicationGateway(Resource): + """Application gateway resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar zones: A list of availability zones denoting where the resource needs to come from. + :vartype zones: list[str] + :ivar identity: The identity of the application gateway, if configured. + :vartype identity: ~azure.mgmt.network.v2021_08_01.models.ManagedServiceIdentity + :ivar sku: SKU of the application gateway resource. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySku + :ivar ssl_policy: SSL policy of the application gateway resource. + :vartype ssl_policy: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicy + :ivar operational_state: Operational state of the application gateway resource. Possible values + include: "Stopped", "Starting", "Running", "Stopping". + :vartype operational_state: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayOperationalState + :ivar gateway_ip_configurations: Subnets of the application gateway resource. For default + limits, see `Application Gateway limits + `_. + :vartype gateway_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayIPConfiguration] + :ivar authentication_certificates: Authentication certificates of the application gateway + resource. For default limits, see `Application Gateway limits + `_. + :vartype authentication_certificates: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAuthenticationCertificate] + :ivar trusted_root_certificates: Trusted Root certificates of the application gateway resource. + For default limits, see `Application Gateway limits + `_. + :vartype trusted_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayTrustedRootCertificate] + :ivar trusted_client_certificates: Trusted client certificates of the application gateway + resource. For default limits, see `Application Gateway limits + `_. + :vartype trusted_client_certificates: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayTrustedClientCertificate] + :ivar ssl_certificates: SSL certificates of the application gateway resource. For default + limits, see `Application Gateway limits + `_. + :vartype ssl_certificates: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslCertificate] + :ivar frontend_ip_configurations: Frontend IP addresses of the application gateway resource. + For default limits, see `Application Gateway limits + `_. + :vartype frontend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFrontendIPConfiguration] + :ivar frontend_ports: Frontend ports of the application gateway resource. For default limits, + see `Application Gateway limits + `_. + :vartype frontend_ports: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFrontendPort] + :ivar probes: Probes of the application gateway resource. + :vartype probes: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProbe] + :ivar backend_address_pools: Backend address pool of the application gateway resource. For + default limits, see `Application Gateway limits + `_. + :vartype backend_address_pools: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddressPool] + :ivar backend_http_settings_collection: Backend http settings of the application gateway + resource. For default limits, see `Application Gateway limits + `_. + :vartype backend_http_settings_collection: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHttpSettings] + :ivar backend_settings_collection: Backend settings of the application gateway resource. For + default limits, see `Application Gateway limits + `_. + :vartype backend_settings_collection: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendSettings] + :ivar http_listeners: Http listeners of the application gateway resource. For default limits, + see `Application Gateway limits + `_. + :vartype http_listeners: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayHttpListener] + :ivar listeners: Listeners of the application gateway resource. For default limits, see + `Application Gateway limits + `_. + :vartype listeners: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayListener] + :ivar ssl_profiles: SSL profiles of the application gateway resource. For default limits, see + `Application Gateway limits + `_. + :vartype ssl_profiles: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProfile] + :ivar url_path_maps: URL path map of the application gateway resource. For default limits, see + `Application Gateway limits + `_. + :vartype url_path_maps: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayUrlPathMap] + :ivar request_routing_rules: Request routing rules of the application gateway resource. + :vartype request_routing_rules: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRequestRoutingRule] + :ivar routing_rules: Routing rules of the application gateway resource. + :vartype routing_rules: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRoutingRule] + :ivar rewrite_rule_sets: Rewrite rules for the application gateway resource. + :vartype rewrite_rule_sets: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRewriteRuleSet] + :ivar redirect_configurations: Redirect configurations of the application gateway resource. For + default limits, see `Application Gateway limits + `_. + :vartype redirect_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRedirectConfiguration] + :ivar web_application_firewall_configuration: Web application firewall configuration. + :vartype web_application_firewall_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayWebApplicationFirewallConfiguration + :ivar firewall_policy: Reference to the FirewallPolicy resource. + :vartype firewall_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar enable_http2: Whether HTTP2 is enabled on the application gateway resource. + :vartype enable_http2: bool + :ivar enable_fips: Whether FIPS is enabled on the application gateway resource. + :vartype enable_fips: bool + :ivar autoscale_configuration: Autoscale Configuration. + :vartype autoscale_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAutoscaleConfiguration + :ivar private_link_configurations: PrivateLink configurations on application gateway. + :vartype private_link_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateLinkConfiguration] + :ivar private_endpoint_connections: Private Endpoint connections on application gateway. + :vartype private_endpoint_connections: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnection] + :ivar resource_guid: The resource GUID property of the application gateway resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the application gateway resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar custom_error_configurations: Custom error configurations of the application gateway + resource. + :vartype custom_error_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayCustomError] + :ivar force_firewall_policy_association: If true, associates a firewall policy with an + application gateway regardless whether the policy differs from the WAF Config. + :vartype force_firewall_policy_association: bool + :ivar load_distribution_policies: Load distribution policies of the application gateway + resource. + :vartype load_distribution_policies: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayLoadDistributionPolicy] + :ivar global_configuration: Global Configuration. + :vartype global_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayGlobalConfiguration + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'operational_state': {'readonly': True}, + 'private_endpoint_connections': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'zones': {'key': 'zones', 'type': '[str]'}, + 'identity': {'key': 'identity', 'type': 'ManagedServiceIdentity'}, + 'sku': {'key': 'properties.sku', 'type': 'ApplicationGatewaySku'}, + 'ssl_policy': {'key': 'properties.sslPolicy', 'type': 'ApplicationGatewaySslPolicy'}, + 'operational_state': {'key': 'properties.operationalState', 'type': 'str'}, + 'gateway_ip_configurations': {'key': 'properties.gatewayIPConfigurations', 'type': '[ApplicationGatewayIPConfiguration]'}, + 'authentication_certificates': {'key': 'properties.authenticationCertificates', 'type': '[ApplicationGatewayAuthenticationCertificate]'}, + 'trusted_root_certificates': {'key': 'properties.trustedRootCertificates', 'type': '[ApplicationGatewayTrustedRootCertificate]'}, + 'trusted_client_certificates': {'key': 'properties.trustedClientCertificates', 'type': '[ApplicationGatewayTrustedClientCertificate]'}, + 'ssl_certificates': {'key': 'properties.sslCertificates', 'type': '[ApplicationGatewaySslCertificate]'}, + 'frontend_ip_configurations': {'key': 'properties.frontendIPConfigurations', 'type': '[ApplicationGatewayFrontendIPConfiguration]'}, + 'frontend_ports': {'key': 'properties.frontendPorts', 'type': '[ApplicationGatewayFrontendPort]'}, + 'probes': {'key': 'properties.probes', 'type': '[ApplicationGatewayProbe]'}, + 'backend_address_pools': {'key': 'properties.backendAddressPools', 'type': '[ApplicationGatewayBackendAddressPool]'}, + 'backend_http_settings_collection': {'key': 'properties.backendHttpSettingsCollection', 'type': '[ApplicationGatewayBackendHttpSettings]'}, + 'backend_settings_collection': {'key': 'properties.backendSettingsCollection', 'type': '[ApplicationGatewayBackendSettings]'}, + 'http_listeners': {'key': 'properties.httpListeners', 'type': '[ApplicationGatewayHttpListener]'}, + 'listeners': {'key': 'properties.listeners', 'type': '[ApplicationGatewayListener]'}, + 'ssl_profiles': {'key': 'properties.sslProfiles', 'type': '[ApplicationGatewaySslProfile]'}, + 'url_path_maps': {'key': 'properties.urlPathMaps', 'type': '[ApplicationGatewayUrlPathMap]'}, + 'request_routing_rules': {'key': 'properties.requestRoutingRules', 'type': '[ApplicationGatewayRequestRoutingRule]'}, + 'routing_rules': {'key': 'properties.routingRules', 'type': '[ApplicationGatewayRoutingRule]'}, + 'rewrite_rule_sets': {'key': 'properties.rewriteRuleSets', 'type': '[ApplicationGatewayRewriteRuleSet]'}, + 'redirect_configurations': {'key': 'properties.redirectConfigurations', 'type': '[ApplicationGatewayRedirectConfiguration]'}, + 'web_application_firewall_configuration': {'key': 'properties.webApplicationFirewallConfiguration', 'type': 'ApplicationGatewayWebApplicationFirewallConfiguration'}, + 'firewall_policy': {'key': 'properties.firewallPolicy', 'type': 'SubResource'}, + 'enable_http2': {'key': 'properties.enableHttp2', 'type': 'bool'}, + 'enable_fips': {'key': 'properties.enableFips', 'type': 'bool'}, + 'autoscale_configuration': {'key': 'properties.autoscaleConfiguration', 'type': 'ApplicationGatewayAutoscaleConfiguration'}, + 'private_link_configurations': {'key': 'properties.privateLinkConfigurations', 'type': '[ApplicationGatewayPrivateLinkConfiguration]'}, + 'private_endpoint_connections': {'key': 'properties.privateEndpointConnections', 'type': '[ApplicationGatewayPrivateEndpointConnection]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'custom_error_configurations': {'key': 'properties.customErrorConfigurations', 'type': '[ApplicationGatewayCustomError]'}, + 'force_firewall_policy_association': {'key': 'properties.forceFirewallPolicyAssociation', 'type': 'bool'}, + 'load_distribution_policies': {'key': 'properties.loadDistributionPolicies', 'type': '[ApplicationGatewayLoadDistributionPolicy]'}, + 'global_configuration': {'key': 'properties.globalConfiguration', 'type': 'ApplicationGatewayGlobalConfiguration'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + zones: Optional[List[str]] = None, + identity: Optional["ManagedServiceIdentity"] = None, + sku: Optional["ApplicationGatewaySku"] = None, + ssl_policy: Optional["ApplicationGatewaySslPolicy"] = None, + gateway_ip_configurations: Optional[List["ApplicationGatewayIPConfiguration"]] = None, + authentication_certificates: Optional[List["ApplicationGatewayAuthenticationCertificate"]] = None, + trusted_root_certificates: Optional[List["ApplicationGatewayTrustedRootCertificate"]] = None, + trusted_client_certificates: Optional[List["ApplicationGatewayTrustedClientCertificate"]] = None, + ssl_certificates: Optional[List["ApplicationGatewaySslCertificate"]] = None, + frontend_ip_configurations: Optional[List["ApplicationGatewayFrontendIPConfiguration"]] = None, + frontend_ports: Optional[List["ApplicationGatewayFrontendPort"]] = None, + probes: Optional[List["ApplicationGatewayProbe"]] = None, + backend_address_pools: Optional[List["ApplicationGatewayBackendAddressPool"]] = None, + backend_http_settings_collection: Optional[List["ApplicationGatewayBackendHttpSettings"]] = None, + backend_settings_collection: Optional[List["ApplicationGatewayBackendSettings"]] = None, + http_listeners: Optional[List["ApplicationGatewayHttpListener"]] = None, + listeners: Optional[List["ApplicationGatewayListener"]] = None, + ssl_profiles: Optional[List["ApplicationGatewaySslProfile"]] = None, + url_path_maps: Optional[List["ApplicationGatewayUrlPathMap"]] = None, + request_routing_rules: Optional[List["ApplicationGatewayRequestRoutingRule"]] = None, + routing_rules: Optional[List["ApplicationGatewayRoutingRule"]] = None, + rewrite_rule_sets: Optional[List["ApplicationGatewayRewriteRuleSet"]] = None, + redirect_configurations: Optional[List["ApplicationGatewayRedirectConfiguration"]] = None, + web_application_firewall_configuration: Optional["ApplicationGatewayWebApplicationFirewallConfiguration"] = None, + firewall_policy: Optional["SubResource"] = None, + enable_http2: Optional[bool] = None, + enable_fips: Optional[bool] = None, + autoscale_configuration: Optional["ApplicationGatewayAutoscaleConfiguration"] = None, + private_link_configurations: Optional[List["ApplicationGatewayPrivateLinkConfiguration"]] = None, + custom_error_configurations: Optional[List["ApplicationGatewayCustomError"]] = None, + force_firewall_policy_association: Optional[bool] = None, + load_distribution_policies: Optional[List["ApplicationGatewayLoadDistributionPolicy"]] = None, + global_configuration: Optional["ApplicationGatewayGlobalConfiguration"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword zones: A list of availability zones denoting where the resource needs to come from. + :paramtype zones: list[str] + :keyword identity: The identity of the application gateway, if configured. + :paramtype identity: ~azure.mgmt.network.v2021_08_01.models.ManagedServiceIdentity + :keyword sku: SKU of the application gateway resource. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySku + :keyword ssl_policy: SSL policy of the application gateway resource. + :paramtype ssl_policy: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicy + :keyword gateway_ip_configurations: Subnets of the application gateway resource. For default + limits, see `Application Gateway limits + `_. + :paramtype gateway_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayIPConfiguration] + :keyword authentication_certificates: Authentication certificates of the application gateway + resource. For default limits, see `Application Gateway limits + `_. + :paramtype authentication_certificates: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAuthenticationCertificate] + :keyword trusted_root_certificates: Trusted Root certificates of the application gateway + resource. For default limits, see `Application Gateway limits + `_. + :paramtype trusted_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayTrustedRootCertificate] + :keyword trusted_client_certificates: Trusted client certificates of the application gateway + resource. For default limits, see `Application Gateway limits + `_. + :paramtype trusted_client_certificates: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayTrustedClientCertificate] + :keyword ssl_certificates: SSL certificates of the application gateway resource. For default + limits, see `Application Gateway limits + `_. + :paramtype ssl_certificates: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslCertificate] + :keyword frontend_ip_configurations: Frontend IP addresses of the application gateway resource. + For default limits, see `Application Gateway limits + `_. + :paramtype frontend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFrontendIPConfiguration] + :keyword frontend_ports: Frontend ports of the application gateway resource. For default + limits, see `Application Gateway limits + `_. + :paramtype frontend_ports: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFrontendPort] + :keyword probes: Probes of the application gateway resource. + :paramtype probes: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProbe] + :keyword backend_address_pools: Backend address pool of the application gateway resource. For + default limits, see `Application Gateway limits + `_. + :paramtype backend_address_pools: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddressPool] + :keyword backend_http_settings_collection: Backend http settings of the application gateway + resource. For default limits, see `Application Gateway limits + `_. + :paramtype backend_http_settings_collection: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHttpSettings] + :keyword backend_settings_collection: Backend settings of the application gateway resource. For + default limits, see `Application Gateway limits + `_. + :paramtype backend_settings_collection: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendSettings] + :keyword http_listeners: Http listeners of the application gateway resource. For default + limits, see `Application Gateway limits + `_. + :paramtype http_listeners: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayHttpListener] + :keyword listeners: Listeners of the application gateway resource. For default limits, see + `Application Gateway limits + `_. + :paramtype listeners: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayListener] + :keyword ssl_profiles: SSL profiles of the application gateway resource. For default limits, + see `Application Gateway limits + `_. + :paramtype ssl_profiles: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProfile] + :keyword url_path_maps: URL path map of the application gateway resource. For default limits, + see `Application Gateway limits + `_. + :paramtype url_path_maps: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayUrlPathMap] + :keyword request_routing_rules: Request routing rules of the application gateway resource. + :paramtype request_routing_rules: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRequestRoutingRule] + :keyword routing_rules: Routing rules of the application gateway resource. + :paramtype routing_rules: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRoutingRule] + :keyword rewrite_rule_sets: Rewrite rules for the application gateway resource. + :paramtype rewrite_rule_sets: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRewriteRuleSet] + :keyword redirect_configurations: Redirect configurations of the application gateway resource. + For default limits, see `Application Gateway limits + `_. + :paramtype redirect_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRedirectConfiguration] + :keyword web_application_firewall_configuration: Web application firewall configuration. + :paramtype web_application_firewall_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayWebApplicationFirewallConfiguration + :keyword firewall_policy: Reference to the FirewallPolicy resource. + :paramtype firewall_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword enable_http2: Whether HTTP2 is enabled on the application gateway resource. + :paramtype enable_http2: bool + :keyword enable_fips: Whether FIPS is enabled on the application gateway resource. + :paramtype enable_fips: bool + :keyword autoscale_configuration: Autoscale Configuration. + :paramtype autoscale_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAutoscaleConfiguration + :keyword private_link_configurations: PrivateLink configurations on application gateway. + :paramtype private_link_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateLinkConfiguration] + :keyword custom_error_configurations: Custom error configurations of the application gateway + resource. + :paramtype custom_error_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayCustomError] + :keyword force_firewall_policy_association: If true, associates a firewall policy with an + application gateway regardless whether the policy differs from the WAF Config. + :paramtype force_firewall_policy_association: bool + :keyword load_distribution_policies: Load distribution policies of the application gateway + resource. + :paramtype load_distribution_policies: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayLoadDistributionPolicy] + :keyword global_configuration: Global Configuration. + :paramtype global_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayGlobalConfiguration + """ + super(ApplicationGateway, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.zones = zones + self.identity = identity + self.sku = sku + self.ssl_policy = ssl_policy + self.operational_state = None + self.gateway_ip_configurations = gateway_ip_configurations + self.authentication_certificates = authentication_certificates + self.trusted_root_certificates = trusted_root_certificates + self.trusted_client_certificates = trusted_client_certificates + self.ssl_certificates = ssl_certificates + self.frontend_ip_configurations = frontend_ip_configurations + self.frontend_ports = frontend_ports + self.probes = probes + self.backend_address_pools = backend_address_pools + self.backend_http_settings_collection = backend_http_settings_collection + self.backend_settings_collection = backend_settings_collection + self.http_listeners = http_listeners + self.listeners = listeners + self.ssl_profiles = ssl_profiles + self.url_path_maps = url_path_maps + self.request_routing_rules = request_routing_rules + self.routing_rules = routing_rules + self.rewrite_rule_sets = rewrite_rule_sets + self.redirect_configurations = redirect_configurations + self.web_application_firewall_configuration = web_application_firewall_configuration + self.firewall_policy = firewall_policy + self.enable_http2 = enable_http2 + self.enable_fips = enable_fips + self.autoscale_configuration = autoscale_configuration + self.private_link_configurations = private_link_configurations + self.private_endpoint_connections = None + self.resource_guid = None + self.provisioning_state = None + self.custom_error_configurations = custom_error_configurations + self.force_firewall_policy_association = force_firewall_policy_association + self.load_distribution_policies = load_distribution_policies + self.global_configuration = global_configuration + + +class SubResource(msrest.serialization.Model): + """Reference to another subresource. + + :ivar id: Resource ID. + :vartype id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + """ + super(SubResource, self).__init__(**kwargs) + self.id = id + + +class ApplicationGatewayAuthenticationCertificate(SubResource): + """Authentication certificates of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the authentication certificate that is unique within an Application + Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar data: Certificate public data. + :vartype data: str + :ivar provisioning_state: The provisioning state of the authentication certificate resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'data': {'key': 'properties.data', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + data: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the authentication certificate that is unique within an Application + Gateway. + :paramtype name: str + :keyword data: Certificate public data. + :paramtype data: str + """ + super(ApplicationGatewayAuthenticationCertificate, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.data = data + self.provisioning_state = None + + +class ApplicationGatewayAutoscaleConfiguration(msrest.serialization.Model): + """Application Gateway autoscale configuration. + + All required parameters must be populated in order to send to Azure. + + :ivar min_capacity: Required. Lower bound on number of Application Gateway capacity. + :vartype min_capacity: int + :ivar max_capacity: Upper bound on number of Application Gateway capacity. + :vartype max_capacity: int + """ + + _validation = { + 'min_capacity': {'required': True, 'minimum': 0}, + 'max_capacity': {'minimum': 2}, + } + + _attribute_map = { + 'min_capacity': {'key': 'minCapacity', 'type': 'int'}, + 'max_capacity': {'key': 'maxCapacity', 'type': 'int'}, + } + + def __init__( + self, + *, + min_capacity: int, + max_capacity: Optional[int] = None, + **kwargs + ): + """ + :keyword min_capacity: Required. Lower bound on number of Application Gateway capacity. + :paramtype min_capacity: int + :keyword max_capacity: Upper bound on number of Application Gateway capacity. + :paramtype max_capacity: int + """ + super(ApplicationGatewayAutoscaleConfiguration, self).__init__(**kwargs) + self.min_capacity = min_capacity + self.max_capacity = max_capacity + + +class ApplicationGatewayAvailableSslOptions(Resource): + """Response for ApplicationGatewayAvailableSslOptions API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar predefined_policies: List of available Ssl predefined policy. + :vartype predefined_policies: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar default_policy: Name of the Ssl predefined policy applied by default to application + gateway. Possible values include: "AppGwSslPolicy20150501", "AppGwSslPolicy20170401", + "AppGwSslPolicy20170401S". + :vartype default_policy: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicyName + :ivar available_cipher_suites: List of available Ssl cipher suites. + :vartype available_cipher_suites: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslCipherSuite] + :ivar available_protocols: List of available Ssl protocols. + :vartype available_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProtocol] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'predefined_policies': {'key': 'properties.predefinedPolicies', 'type': '[SubResource]'}, + 'default_policy': {'key': 'properties.defaultPolicy', 'type': 'str'}, + 'available_cipher_suites': {'key': 'properties.availableCipherSuites', 'type': '[str]'}, + 'available_protocols': {'key': 'properties.availableProtocols', 'type': '[str]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + predefined_policies: Optional[List["SubResource"]] = None, + default_policy: Optional[Union[str, "ApplicationGatewaySslPolicyName"]] = None, + available_cipher_suites: Optional[List[Union[str, "ApplicationGatewaySslCipherSuite"]]] = None, + available_protocols: Optional[List[Union[str, "ApplicationGatewaySslProtocol"]]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword predefined_policies: List of available Ssl predefined policy. + :paramtype predefined_policies: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword default_policy: Name of the Ssl predefined policy applied by default to application + gateway. Possible values include: "AppGwSslPolicy20150501", "AppGwSslPolicy20170401", + "AppGwSslPolicy20170401S". + :paramtype default_policy: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicyName + :keyword available_cipher_suites: List of available Ssl cipher suites. + :paramtype available_cipher_suites: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslCipherSuite] + :keyword available_protocols: List of available Ssl protocols. + :paramtype available_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProtocol] + """ + super(ApplicationGatewayAvailableSslOptions, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.predefined_policies = predefined_policies + self.default_policy = default_policy + self.available_cipher_suites = available_cipher_suites + self.available_protocols = available_protocols + + +class ApplicationGatewayAvailableSslPredefinedPolicies(msrest.serialization.Model): + """Response for ApplicationGatewayAvailableSslOptions API service call. + + :ivar value: List of available Ssl predefined policy. + :vartype value: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPredefinedPolicy] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ApplicationGatewaySslPredefinedPolicy]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ApplicationGatewaySslPredefinedPolicy"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of available Ssl predefined policy. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPredefinedPolicy] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(ApplicationGatewayAvailableSslPredefinedPolicies, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ApplicationGatewayAvailableWafRuleSetsResult(msrest.serialization.Model): + """Response for ApplicationGatewayAvailableWafRuleSets API service call. + + :ivar value: The list of application gateway rule sets. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallRuleSet] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ApplicationGatewayFirewallRuleSet]'}, + } + + def __init__( + self, + *, + value: Optional[List["ApplicationGatewayFirewallRuleSet"]] = None, + **kwargs + ): + """ + :keyword value: The list of application gateway rule sets. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallRuleSet] + """ + super(ApplicationGatewayAvailableWafRuleSetsResult, self).__init__(**kwargs) + self.value = value + + +class ApplicationGatewayBackendAddress(msrest.serialization.Model): + """Backend address of an application gateway. + + :ivar fqdn: Fully qualified domain name (FQDN). + :vartype fqdn: str + :ivar ip_address: IP address. + :vartype ip_address: str + """ + + _attribute_map = { + 'fqdn': {'key': 'fqdn', 'type': 'str'}, + 'ip_address': {'key': 'ipAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + fqdn: Optional[str] = None, + ip_address: Optional[str] = None, + **kwargs + ): + """ + :keyword fqdn: Fully qualified domain name (FQDN). + :paramtype fqdn: str + :keyword ip_address: IP address. + :paramtype ip_address: str + """ + super(ApplicationGatewayBackendAddress, self).__init__(**kwargs) + self.fqdn = fqdn + self.ip_address = ip_address + + +class ApplicationGatewayBackendAddressPool(SubResource): + """Backend Address Pool of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the backend address pool that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar backend_ip_configurations: Collection of references to IPs defined in network interfaces. + :vartype backend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration] + :ivar backend_addresses: Backend addresses. + :vartype backend_addresses: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddress] + :ivar provisioning_state: The provisioning state of the backend address pool resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'backend_ip_configurations': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'backend_ip_configurations': {'key': 'properties.backendIPConfigurations', 'type': '[NetworkInterfaceIPConfiguration]'}, + 'backend_addresses': {'key': 'properties.backendAddresses', 'type': '[ApplicationGatewayBackendAddress]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + backend_addresses: Optional[List["ApplicationGatewayBackendAddress"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the backend address pool that is unique within an Application Gateway. + :paramtype name: str + :keyword backend_addresses: Backend addresses. + :paramtype backend_addresses: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddress] + """ + super(ApplicationGatewayBackendAddressPool, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.backend_ip_configurations = None + self.backend_addresses = backend_addresses + self.provisioning_state = None + + +class ApplicationGatewayBackendHealth(msrest.serialization.Model): + """Response for ApplicationGatewayBackendHealth API service call. + + :ivar backend_address_pools: A list of ApplicationGatewayBackendHealthPool resources. + :vartype backend_address_pools: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthPool] + """ + + _attribute_map = { + 'backend_address_pools': {'key': 'backendAddressPools', 'type': '[ApplicationGatewayBackendHealthPool]'}, + } + + def __init__( + self, + *, + backend_address_pools: Optional[List["ApplicationGatewayBackendHealthPool"]] = None, + **kwargs + ): + """ + :keyword backend_address_pools: A list of ApplicationGatewayBackendHealthPool resources. + :paramtype backend_address_pools: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthPool] + """ + super(ApplicationGatewayBackendHealth, self).__init__(**kwargs) + self.backend_address_pools = backend_address_pools + + +class ApplicationGatewayBackendHealthHttpSettings(msrest.serialization.Model): + """Application gateway BackendHealthHttp settings. + + :ivar backend_http_settings: Reference to an ApplicationGatewayBackendHttpSettings resource. + :vartype backend_http_settings: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHttpSettings + :ivar servers: List of ApplicationGatewayBackendHealthServer resources. + :vartype servers: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthServer] + """ + + _attribute_map = { + 'backend_http_settings': {'key': 'backendHttpSettings', 'type': 'ApplicationGatewayBackendHttpSettings'}, + 'servers': {'key': 'servers', 'type': '[ApplicationGatewayBackendHealthServer]'}, + } + + def __init__( + self, + *, + backend_http_settings: Optional["ApplicationGatewayBackendHttpSettings"] = None, + servers: Optional[List["ApplicationGatewayBackendHealthServer"]] = None, + **kwargs + ): + """ + :keyword backend_http_settings: Reference to an ApplicationGatewayBackendHttpSettings resource. + :paramtype backend_http_settings: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHttpSettings + :keyword servers: List of ApplicationGatewayBackendHealthServer resources. + :paramtype servers: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthServer] + """ + super(ApplicationGatewayBackendHealthHttpSettings, self).__init__(**kwargs) + self.backend_http_settings = backend_http_settings + self.servers = servers + + +class ApplicationGatewayBackendHealthOnDemand(msrest.serialization.Model): + """Result of on demand test probe. + + :ivar backend_address_pool: Reference to an ApplicationGatewayBackendAddressPool resource. + :vartype backend_address_pool: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddressPool + :ivar backend_health_http_settings: Application gateway BackendHealthHttp settings. + :vartype backend_health_http_settings: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthHttpSettings + """ + + _attribute_map = { + 'backend_address_pool': {'key': 'backendAddressPool', 'type': 'ApplicationGatewayBackendAddressPool'}, + 'backend_health_http_settings': {'key': 'backendHealthHttpSettings', 'type': 'ApplicationGatewayBackendHealthHttpSettings'}, + } + + def __init__( + self, + *, + backend_address_pool: Optional["ApplicationGatewayBackendAddressPool"] = None, + backend_health_http_settings: Optional["ApplicationGatewayBackendHealthHttpSettings"] = None, + **kwargs + ): + """ + :keyword backend_address_pool: Reference to an ApplicationGatewayBackendAddressPool resource. + :paramtype backend_address_pool: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddressPool + :keyword backend_health_http_settings: Application gateway BackendHealthHttp settings. + :paramtype backend_health_http_settings: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthHttpSettings + """ + super(ApplicationGatewayBackendHealthOnDemand, self).__init__(**kwargs) + self.backend_address_pool = backend_address_pool + self.backend_health_http_settings = backend_health_http_settings + + +class ApplicationGatewayBackendHealthPool(msrest.serialization.Model): + """Application gateway BackendHealth pool. + + :ivar backend_address_pool: Reference to an ApplicationGatewayBackendAddressPool resource. + :vartype backend_address_pool: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddressPool + :ivar backend_http_settings_collection: List of ApplicationGatewayBackendHealthHttpSettings + resources. + :vartype backend_http_settings_collection: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthHttpSettings] + """ + + _attribute_map = { + 'backend_address_pool': {'key': 'backendAddressPool', 'type': 'ApplicationGatewayBackendAddressPool'}, + 'backend_http_settings_collection': {'key': 'backendHttpSettingsCollection', 'type': '[ApplicationGatewayBackendHealthHttpSettings]'}, + } + + def __init__( + self, + *, + backend_address_pool: Optional["ApplicationGatewayBackendAddressPool"] = None, + backend_http_settings_collection: Optional[List["ApplicationGatewayBackendHealthHttpSettings"]] = None, + **kwargs + ): + """ + :keyword backend_address_pool: Reference to an ApplicationGatewayBackendAddressPool resource. + :paramtype backend_address_pool: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddressPool + :keyword backend_http_settings_collection: List of ApplicationGatewayBackendHealthHttpSettings + resources. + :paramtype backend_http_settings_collection: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthHttpSettings] + """ + super(ApplicationGatewayBackendHealthPool, self).__init__(**kwargs) + self.backend_address_pool = backend_address_pool + self.backend_http_settings_collection = backend_http_settings_collection + + +class ApplicationGatewayBackendHealthServer(msrest.serialization.Model): + """Application gateway backendhealth http settings. + + :ivar address: IP address or FQDN of backend server. + :vartype address: str + :ivar ip_configuration: Reference to IP configuration of backend server. + :vartype ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration + :ivar health: Health of backend server. Possible values include: "Unknown", "Up", "Down", + "Partial", "Draining". + :vartype health: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthServerHealth + :ivar health_probe_log: Health Probe Log. + :vartype health_probe_log: str + """ + + _attribute_map = { + 'address': {'key': 'address', 'type': 'str'}, + 'ip_configuration': {'key': 'ipConfiguration', 'type': 'NetworkInterfaceIPConfiguration'}, + 'health': {'key': 'health', 'type': 'str'}, + 'health_probe_log': {'key': 'healthProbeLog', 'type': 'str'}, + } + + def __init__( + self, + *, + address: Optional[str] = None, + ip_configuration: Optional["NetworkInterfaceIPConfiguration"] = None, + health: Optional[Union[str, "ApplicationGatewayBackendHealthServerHealth"]] = None, + health_probe_log: Optional[str] = None, + **kwargs + ): + """ + :keyword address: IP address or FQDN of backend server. + :paramtype address: str + :keyword ip_configuration: Reference to IP configuration of backend server. + :paramtype ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration + :keyword health: Health of backend server. Possible values include: "Unknown", "Up", "Down", + "Partial", "Draining". + :paramtype health: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthServerHealth + :keyword health_probe_log: Health Probe Log. + :paramtype health_probe_log: str + """ + super(ApplicationGatewayBackendHealthServer, self).__init__(**kwargs) + self.address = address + self.ip_configuration = ip_configuration + self.health = health + self.health_probe_log = health_probe_log + + +class ApplicationGatewayBackendHttpSettings(SubResource): + """Backend address pool settings of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the backend http settings that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar port: The destination port on the backend. + :vartype port: int + :ivar protocol: The protocol used to communicate with the backend. Possible values include: + "Http", "Https", "Tcp", "Tls". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :ivar cookie_based_affinity: Cookie based affinity. Possible values include: "Enabled", + "Disabled". + :vartype cookie_based_affinity: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayCookieBasedAffinity + :ivar request_timeout: Request timeout in seconds. Application Gateway will fail the request if + response is not received within RequestTimeout. Acceptable values are from 1 second to 86400 + seconds. + :vartype request_timeout: int + :ivar probe: Probe resource of an application gateway. + :vartype probe: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar authentication_certificates: Array of references to application gateway authentication + certificates. + :vartype authentication_certificates: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar trusted_root_certificates: Array of references to application gateway trusted root + certificates. + :vartype trusted_root_certificates: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar connection_draining: Connection draining of the backend http settings resource. + :vartype connection_draining: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayConnectionDraining + :ivar host_name: Host header to be sent to the backend servers. + :vartype host_name: str + :ivar pick_host_name_from_backend_address: Whether to pick host header should be picked from + the host name of the backend server. Default value is false. + :vartype pick_host_name_from_backend_address: bool + :ivar affinity_cookie_name: Cookie name to use for the affinity cookie. + :vartype affinity_cookie_name: str + :ivar probe_enabled: Whether the probe is enabled. Default value is false. + :vartype probe_enabled: bool + :ivar path: Path which should be used as a prefix for all HTTP requests. Null means no path + will be prefixed. Default value is null. + :vartype path: str + :ivar provisioning_state: The provisioning state of the backend HTTP settings resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'port': {'key': 'properties.port', 'type': 'int'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'cookie_based_affinity': {'key': 'properties.cookieBasedAffinity', 'type': 'str'}, + 'request_timeout': {'key': 'properties.requestTimeout', 'type': 'int'}, + 'probe': {'key': 'properties.probe', 'type': 'SubResource'}, + 'authentication_certificates': {'key': 'properties.authenticationCertificates', 'type': '[SubResource]'}, + 'trusted_root_certificates': {'key': 'properties.trustedRootCertificates', 'type': '[SubResource]'}, + 'connection_draining': {'key': 'properties.connectionDraining', 'type': 'ApplicationGatewayConnectionDraining'}, + 'host_name': {'key': 'properties.hostName', 'type': 'str'}, + 'pick_host_name_from_backend_address': {'key': 'properties.pickHostNameFromBackendAddress', 'type': 'bool'}, + 'affinity_cookie_name': {'key': 'properties.affinityCookieName', 'type': 'str'}, + 'probe_enabled': {'key': 'properties.probeEnabled', 'type': 'bool'}, + 'path': {'key': 'properties.path', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + port: Optional[int] = None, + protocol: Optional[Union[str, "ApplicationGatewayProtocol"]] = None, + cookie_based_affinity: Optional[Union[str, "ApplicationGatewayCookieBasedAffinity"]] = None, + request_timeout: Optional[int] = None, + probe: Optional["SubResource"] = None, + authentication_certificates: Optional[List["SubResource"]] = None, + trusted_root_certificates: Optional[List["SubResource"]] = None, + connection_draining: Optional["ApplicationGatewayConnectionDraining"] = None, + host_name: Optional[str] = None, + pick_host_name_from_backend_address: Optional[bool] = None, + affinity_cookie_name: Optional[str] = None, + probe_enabled: Optional[bool] = None, + path: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the backend http settings that is unique within an Application Gateway. + :paramtype name: str + :keyword port: The destination port on the backend. + :paramtype port: int + :keyword protocol: The protocol used to communicate with the backend. Possible values include: + "Http", "Https", "Tcp", "Tls". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :keyword cookie_based_affinity: Cookie based affinity. Possible values include: "Enabled", + "Disabled". + :paramtype cookie_based_affinity: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayCookieBasedAffinity + :keyword request_timeout: Request timeout in seconds. Application Gateway will fail the request + if response is not received within RequestTimeout. Acceptable values are from 1 second to 86400 + seconds. + :paramtype request_timeout: int + :keyword probe: Probe resource of an application gateway. + :paramtype probe: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword authentication_certificates: Array of references to application gateway authentication + certificates. + :paramtype authentication_certificates: + list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword trusted_root_certificates: Array of references to application gateway trusted root + certificates. + :paramtype trusted_root_certificates: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword connection_draining: Connection draining of the backend http settings resource. + :paramtype connection_draining: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayConnectionDraining + :keyword host_name: Host header to be sent to the backend servers. + :paramtype host_name: str + :keyword pick_host_name_from_backend_address: Whether to pick host header should be picked from + the host name of the backend server. Default value is false. + :paramtype pick_host_name_from_backend_address: bool + :keyword affinity_cookie_name: Cookie name to use for the affinity cookie. + :paramtype affinity_cookie_name: str + :keyword probe_enabled: Whether the probe is enabled. Default value is false. + :paramtype probe_enabled: bool + :keyword path: Path which should be used as a prefix for all HTTP requests. Null means no path + will be prefixed. Default value is null. + :paramtype path: str + """ + super(ApplicationGatewayBackendHttpSettings, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.port = port + self.protocol = protocol + self.cookie_based_affinity = cookie_based_affinity + self.request_timeout = request_timeout + self.probe = probe + self.authentication_certificates = authentication_certificates + self.trusted_root_certificates = trusted_root_certificates + self.connection_draining = connection_draining + self.host_name = host_name + self.pick_host_name_from_backend_address = pick_host_name_from_backend_address + self.affinity_cookie_name = affinity_cookie_name + self.probe_enabled = probe_enabled + self.path = path + self.provisioning_state = None + + +class ApplicationGatewayBackendSettings(SubResource): + """Backend address pool settings of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the backend settings that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar port: The destination port on the backend. + :vartype port: int + :ivar protocol: The protocol used to communicate with the backend. Possible values include: + "Http", "Https", "Tcp", "Tls". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :ivar timeout: Connection timeout in seconds. Application Gateway will fail the request if + response is not received within ConnectionTimeout. Acceptable values are from 1 second to 86400 + seconds. + :vartype timeout: int + :ivar probe: Probe resource of an application gateway. + :vartype probe: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar trusted_root_certificates: Array of references to application gateway trusted root + certificates. + :vartype trusted_root_certificates: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar host_name: Server name indication to be sent to the backend servers for Tls protocol. + :vartype host_name: str + :ivar pick_host_name_from_backend_address: Whether to pick server name indication from the host + name of the backend server for Tls protocol. Default value is false. + :vartype pick_host_name_from_backend_address: bool + :ivar provisioning_state: The provisioning state of the backend HTTP settings resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'port': {'key': 'properties.port', 'type': 'int'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'timeout': {'key': 'properties.timeout', 'type': 'int'}, + 'probe': {'key': 'properties.probe', 'type': 'SubResource'}, + 'trusted_root_certificates': {'key': 'properties.trustedRootCertificates', 'type': '[SubResource]'}, + 'host_name': {'key': 'properties.hostName', 'type': 'str'}, + 'pick_host_name_from_backend_address': {'key': 'properties.pickHostNameFromBackendAddress', 'type': 'bool'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + port: Optional[int] = None, + protocol: Optional[Union[str, "ApplicationGatewayProtocol"]] = None, + timeout: Optional[int] = None, + probe: Optional["SubResource"] = None, + trusted_root_certificates: Optional[List["SubResource"]] = None, + host_name: Optional[str] = None, + pick_host_name_from_backend_address: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the backend settings that is unique within an Application Gateway. + :paramtype name: str + :keyword port: The destination port on the backend. + :paramtype port: int + :keyword protocol: The protocol used to communicate with the backend. Possible values include: + "Http", "Https", "Tcp", "Tls". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :keyword timeout: Connection timeout in seconds. Application Gateway will fail the request if + response is not received within ConnectionTimeout. Acceptable values are from 1 second to 86400 + seconds. + :paramtype timeout: int + :keyword probe: Probe resource of an application gateway. + :paramtype probe: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword trusted_root_certificates: Array of references to application gateway trusted root + certificates. + :paramtype trusted_root_certificates: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword host_name: Server name indication to be sent to the backend servers for Tls protocol. + :paramtype host_name: str + :keyword pick_host_name_from_backend_address: Whether to pick server name indication from the + host name of the backend server for Tls protocol. Default value is false. + :paramtype pick_host_name_from_backend_address: bool + """ + super(ApplicationGatewayBackendSettings, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.port = port + self.protocol = protocol + self.timeout = timeout + self.probe = probe + self.trusted_root_certificates = trusted_root_certificates + self.host_name = host_name + self.pick_host_name_from_backend_address = pick_host_name_from_backend_address + self.provisioning_state = None + + +class ApplicationGatewayClientAuthConfiguration(msrest.serialization.Model): + """Application gateway client authentication configuration. + + :ivar verify_client_cert_issuer_dn: Verify client certificate issuer name on the application + gateway. + :vartype verify_client_cert_issuer_dn: bool + """ + + _attribute_map = { + 'verify_client_cert_issuer_dn': {'key': 'verifyClientCertIssuerDN', 'type': 'bool'}, + } + + def __init__( + self, + *, + verify_client_cert_issuer_dn: Optional[bool] = None, + **kwargs + ): + """ + :keyword verify_client_cert_issuer_dn: Verify client certificate issuer name on the application + gateway. + :paramtype verify_client_cert_issuer_dn: bool + """ + super(ApplicationGatewayClientAuthConfiguration, self).__init__(**kwargs) + self.verify_client_cert_issuer_dn = verify_client_cert_issuer_dn + + +class ApplicationGatewayConnectionDraining(msrest.serialization.Model): + """Connection draining allows open connections to a backend server to be active for a specified time after the backend server got removed from the configuration. + + All required parameters must be populated in order to send to Azure. + + :ivar enabled: Required. Whether connection draining is enabled or not. + :vartype enabled: bool + :ivar drain_timeout_in_sec: Required. The number of seconds connection draining is active. + Acceptable values are from 1 second to 3600 seconds. + :vartype drain_timeout_in_sec: int + """ + + _validation = { + 'enabled': {'required': True}, + 'drain_timeout_in_sec': {'required': True, 'maximum': 3600, 'minimum': 1}, + } + + _attribute_map = { + 'enabled': {'key': 'enabled', 'type': 'bool'}, + 'drain_timeout_in_sec': {'key': 'drainTimeoutInSec', 'type': 'int'}, + } + + def __init__( + self, + *, + enabled: bool, + drain_timeout_in_sec: int, + **kwargs + ): + """ + :keyword enabled: Required. Whether connection draining is enabled or not. + :paramtype enabled: bool + :keyword drain_timeout_in_sec: Required. The number of seconds connection draining is active. + Acceptable values are from 1 second to 3600 seconds. + :paramtype drain_timeout_in_sec: int + """ + super(ApplicationGatewayConnectionDraining, self).__init__(**kwargs) + self.enabled = enabled + self.drain_timeout_in_sec = drain_timeout_in_sec + + +class ApplicationGatewayCustomError(msrest.serialization.Model): + """Customer error of an application gateway. + + :ivar status_code: Status code of the application gateway customer error. Possible values + include: "HttpStatus403", "HttpStatus502". + :vartype status_code: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayCustomErrorStatusCode + :ivar custom_error_page_url: Error page URL of the application gateway customer error. + :vartype custom_error_page_url: str + """ + + _attribute_map = { + 'status_code': {'key': 'statusCode', 'type': 'str'}, + 'custom_error_page_url': {'key': 'customErrorPageUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + status_code: Optional[Union[str, "ApplicationGatewayCustomErrorStatusCode"]] = None, + custom_error_page_url: Optional[str] = None, + **kwargs + ): + """ + :keyword status_code: Status code of the application gateway customer error. Possible values + include: "HttpStatus403", "HttpStatus502". + :paramtype status_code: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayCustomErrorStatusCode + :keyword custom_error_page_url: Error page URL of the application gateway customer error. + :paramtype custom_error_page_url: str + """ + super(ApplicationGatewayCustomError, self).__init__(**kwargs) + self.status_code = status_code + self.custom_error_page_url = custom_error_page_url + + +class ApplicationGatewayFirewallDisabledRuleGroup(msrest.serialization.Model): + """Allows to disable rules within a rule group or an entire rule group. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_group_name: Required. The name of the rule group that will be disabled. + :vartype rule_group_name: str + :ivar rules: The list of rules that will be disabled. If null, all rules of the rule group will + be disabled. + :vartype rules: list[int] + """ + + _validation = { + 'rule_group_name': {'required': True}, + } + + _attribute_map = { + 'rule_group_name': {'key': 'ruleGroupName', 'type': 'str'}, + 'rules': {'key': 'rules', 'type': '[int]'}, + } + + def __init__( + self, + *, + rule_group_name: str, + rules: Optional[List[int]] = None, + **kwargs + ): + """ + :keyword rule_group_name: Required. The name of the rule group that will be disabled. + :paramtype rule_group_name: str + :keyword rules: The list of rules that will be disabled. If null, all rules of the rule group + will be disabled. + :paramtype rules: list[int] + """ + super(ApplicationGatewayFirewallDisabledRuleGroup, self).__init__(**kwargs) + self.rule_group_name = rule_group_name + self.rules = rules + + +class ApplicationGatewayFirewallExclusion(msrest.serialization.Model): + """Allow to exclude some variable satisfy the condition for the WAF check. + + All required parameters must be populated in order to send to Azure. + + :ivar match_variable: Required. The variable to be excluded. + :vartype match_variable: str + :ivar selector_match_operator: Required. When matchVariable is a collection, operate on the + selector to specify which elements in the collection this exclusion applies to. + :vartype selector_match_operator: str + :ivar selector: Required. When matchVariable is a collection, operator used to specify which + elements in the collection this exclusion applies to. + :vartype selector: str + """ + + _validation = { + 'match_variable': {'required': True}, + 'selector_match_operator': {'required': True}, + 'selector': {'required': True}, + } + + _attribute_map = { + 'match_variable': {'key': 'matchVariable', 'type': 'str'}, + 'selector_match_operator': {'key': 'selectorMatchOperator', 'type': 'str'}, + 'selector': {'key': 'selector', 'type': 'str'}, + } + + def __init__( + self, + *, + match_variable: str, + selector_match_operator: str, + selector: str, + **kwargs + ): + """ + :keyword match_variable: Required. The variable to be excluded. + :paramtype match_variable: str + :keyword selector_match_operator: Required. When matchVariable is a collection, operate on the + selector to specify which elements in the collection this exclusion applies to. + :paramtype selector_match_operator: str + :keyword selector: Required. When matchVariable is a collection, operator used to specify which + elements in the collection this exclusion applies to. + :paramtype selector: str + """ + super(ApplicationGatewayFirewallExclusion, self).__init__(**kwargs) + self.match_variable = match_variable + self.selector_match_operator = selector_match_operator + self.selector = selector + + +class ApplicationGatewayFirewallRule(msrest.serialization.Model): + """A web application firewall rule. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_id: Required. The identifier of the web application firewall rule. + :vartype rule_id: int + :ivar description: The description of the web application firewall rule. + :vartype description: str + """ + + _validation = { + 'rule_id': {'required': True}, + } + + _attribute_map = { + 'rule_id': {'key': 'ruleId', 'type': 'int'}, + 'description': {'key': 'description', 'type': 'str'}, + } + + def __init__( + self, + *, + rule_id: int, + description: Optional[str] = None, + **kwargs + ): + """ + :keyword rule_id: Required. The identifier of the web application firewall rule. + :paramtype rule_id: int + :keyword description: The description of the web application firewall rule. + :paramtype description: str + """ + super(ApplicationGatewayFirewallRule, self).__init__(**kwargs) + self.rule_id = rule_id + self.description = description + + +class ApplicationGatewayFirewallRuleGroup(msrest.serialization.Model): + """A web application firewall rule group. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_group_name: Required. The name of the web application firewall rule group. + :vartype rule_group_name: str + :ivar description: The description of the web application firewall rule group. + :vartype description: str + :ivar rules: Required. The rules of the web application firewall rule group. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallRule] + """ + + _validation = { + 'rule_group_name': {'required': True}, + 'rules': {'required': True}, + } + + _attribute_map = { + 'rule_group_name': {'key': 'ruleGroupName', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'rules': {'key': 'rules', 'type': '[ApplicationGatewayFirewallRule]'}, + } + + def __init__( + self, + *, + rule_group_name: str, + rules: List["ApplicationGatewayFirewallRule"], + description: Optional[str] = None, + **kwargs + ): + """ + :keyword rule_group_name: Required. The name of the web application firewall rule group. + :paramtype rule_group_name: str + :keyword description: The description of the web application firewall rule group. + :paramtype description: str + :keyword rules: Required. The rules of the web application firewall rule group. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallRule] + """ + super(ApplicationGatewayFirewallRuleGroup, self).__init__(**kwargs) + self.rule_group_name = rule_group_name + self.description = description + self.rules = rules + + +class ApplicationGatewayFirewallRuleSet(Resource): + """A web application firewall rule set. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar provisioning_state: The provisioning state of the web application firewall rule set. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar rule_set_type: The type of the web application firewall rule set. + :vartype rule_set_type: str + :ivar rule_set_version: The version of the web application firewall rule set type. + :vartype rule_set_version: str + :ivar rule_groups: The rule groups of the web application firewall rule set. + :vartype rule_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallRuleGroup] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'rule_set_type': {'key': 'properties.ruleSetType', 'type': 'str'}, + 'rule_set_version': {'key': 'properties.ruleSetVersion', 'type': 'str'}, + 'rule_groups': {'key': 'properties.ruleGroups', 'type': '[ApplicationGatewayFirewallRuleGroup]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + rule_set_type: Optional[str] = None, + rule_set_version: Optional[str] = None, + rule_groups: Optional[List["ApplicationGatewayFirewallRuleGroup"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword rule_set_type: The type of the web application firewall rule set. + :paramtype rule_set_type: str + :keyword rule_set_version: The version of the web application firewall rule set type. + :paramtype rule_set_version: str + :keyword rule_groups: The rule groups of the web application firewall rule set. + :paramtype rule_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallRuleGroup] + """ + super(ApplicationGatewayFirewallRuleSet, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.provisioning_state = None + self.rule_set_type = rule_set_type + self.rule_set_version = rule_set_version + self.rule_groups = rule_groups + + +class ApplicationGatewayFrontendIPConfiguration(SubResource): + """Frontend IP configuration of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the frontend IP configuration that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar private_ip_address: PrivateIPAddress of the network interface IP Configuration. + :vartype private_ip_address: str + :ivar private_ip_allocation_method: The private IP address allocation method. Possible values + include: "Static", "Dynamic". + :vartype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :ivar subnet: Reference to the subnet resource. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar public_ip_address: Reference to the PublicIP resource. + :vartype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar private_link_configuration: Reference to the application gateway private link + configuration. + :vartype private_link_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the frontend IP configuration resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + 'private_ip_allocation_method': {'key': 'properties.privateIPAllocationMethod', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'SubResource'}, + 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'SubResource'}, + 'private_link_configuration': {'key': 'properties.privateLinkConfiguration', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_ip_address: Optional[str] = None, + private_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + subnet: Optional["SubResource"] = None, + public_ip_address: Optional["SubResource"] = None, + private_link_configuration: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the frontend IP configuration that is unique within an Application + Gateway. + :paramtype name: str + :keyword private_ip_address: PrivateIPAddress of the network interface IP Configuration. + :paramtype private_ip_address: str + :keyword private_ip_allocation_method: The private IP address allocation method. Possible + values include: "Static", "Dynamic". + :paramtype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :keyword subnet: Reference to the subnet resource. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword public_ip_address: Reference to the PublicIP resource. + :paramtype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword private_link_configuration: Reference to the application gateway private link + configuration. + :paramtype private_link_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(ApplicationGatewayFrontendIPConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.private_ip_address = private_ip_address + self.private_ip_allocation_method = private_ip_allocation_method + self.subnet = subnet + self.public_ip_address = public_ip_address + self.private_link_configuration = private_link_configuration + self.provisioning_state = None + + +class ApplicationGatewayFrontendPort(SubResource): + """Frontend port of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the frontend port that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar port: Frontend port. + :vartype port: int + :ivar provisioning_state: The provisioning state of the frontend port resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'port': {'key': 'properties.port', 'type': 'int'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + port: Optional[int] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the frontend port that is unique within an Application Gateway. + :paramtype name: str + :keyword port: Frontend port. + :paramtype port: int + """ + super(ApplicationGatewayFrontendPort, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.port = port + self.provisioning_state = None + + +class ApplicationGatewayGlobalConfiguration(msrest.serialization.Model): + """Application Gateway global configuration. + + :ivar enable_request_buffering: Enable request buffering. + :vartype enable_request_buffering: bool + :ivar enable_response_buffering: Enable response buffering. + :vartype enable_response_buffering: bool + """ + + _attribute_map = { + 'enable_request_buffering': {'key': 'enableRequestBuffering', 'type': 'bool'}, + 'enable_response_buffering': {'key': 'enableResponseBuffering', 'type': 'bool'}, + } + + def __init__( + self, + *, + enable_request_buffering: Optional[bool] = None, + enable_response_buffering: Optional[bool] = None, + **kwargs + ): + """ + :keyword enable_request_buffering: Enable request buffering. + :paramtype enable_request_buffering: bool + :keyword enable_response_buffering: Enable response buffering. + :paramtype enable_response_buffering: bool + """ + super(ApplicationGatewayGlobalConfiguration, self).__init__(**kwargs) + self.enable_request_buffering = enable_request_buffering + self.enable_response_buffering = enable_response_buffering + + +class ApplicationGatewayHeaderConfiguration(msrest.serialization.Model): + """Header configuration of the Actions set in Application Gateway. + + :ivar header_name: Header name of the header configuration. + :vartype header_name: str + :ivar header_value: Header value of the header configuration. + :vartype header_value: str + """ + + _attribute_map = { + 'header_name': {'key': 'headerName', 'type': 'str'}, + 'header_value': {'key': 'headerValue', 'type': 'str'}, + } + + def __init__( + self, + *, + header_name: Optional[str] = None, + header_value: Optional[str] = None, + **kwargs + ): + """ + :keyword header_name: Header name of the header configuration. + :paramtype header_name: str + :keyword header_value: Header value of the header configuration. + :paramtype header_value: str + """ + super(ApplicationGatewayHeaderConfiguration, self).__init__(**kwargs) + self.header_name = header_name + self.header_value = header_value + + +class ApplicationGatewayHttpListener(SubResource): + """Http listener of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the HTTP listener that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar frontend_ip_configuration: Frontend IP configuration resource of an application gateway. + :vartype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar frontend_port: Frontend port resource of an application gateway. + :vartype frontend_port: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar protocol: Protocol of the HTTP listener. Possible values include: "Http", "Https", "Tcp", + "Tls". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :ivar host_name: Host name of HTTP listener. + :vartype host_name: str + :ivar ssl_certificate: SSL certificate resource of an application gateway. + :vartype ssl_certificate: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar ssl_profile: SSL profile resource of the application gateway. + :vartype ssl_profile: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar require_server_name_indication: Applicable only if protocol is https. Enables SNI for + multi-hosting. + :vartype require_server_name_indication: bool + :ivar provisioning_state: The provisioning state of the HTTP listener resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar custom_error_configurations: Custom error configurations of the HTTP listener. + :vartype custom_error_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayCustomError] + :ivar firewall_policy: Reference to the FirewallPolicy resource. + :vartype firewall_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar host_names: List of Host names for HTTP Listener that allows special wildcard characters + as well. + :vartype host_names: list[str] + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'frontend_ip_configuration': {'key': 'properties.frontendIPConfiguration', 'type': 'SubResource'}, + 'frontend_port': {'key': 'properties.frontendPort', 'type': 'SubResource'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'host_name': {'key': 'properties.hostName', 'type': 'str'}, + 'ssl_certificate': {'key': 'properties.sslCertificate', 'type': 'SubResource'}, + 'ssl_profile': {'key': 'properties.sslProfile', 'type': 'SubResource'}, + 'require_server_name_indication': {'key': 'properties.requireServerNameIndication', 'type': 'bool'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'custom_error_configurations': {'key': 'properties.customErrorConfigurations', 'type': '[ApplicationGatewayCustomError]'}, + 'firewall_policy': {'key': 'properties.firewallPolicy', 'type': 'SubResource'}, + 'host_names': {'key': 'properties.hostNames', 'type': '[str]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + frontend_ip_configuration: Optional["SubResource"] = None, + frontend_port: Optional["SubResource"] = None, + protocol: Optional[Union[str, "ApplicationGatewayProtocol"]] = None, + host_name: Optional[str] = None, + ssl_certificate: Optional["SubResource"] = None, + ssl_profile: Optional["SubResource"] = None, + require_server_name_indication: Optional[bool] = None, + custom_error_configurations: Optional[List["ApplicationGatewayCustomError"]] = None, + firewall_policy: Optional["SubResource"] = None, + host_names: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the HTTP listener that is unique within an Application Gateway. + :paramtype name: str + :keyword frontend_ip_configuration: Frontend IP configuration resource of an application + gateway. + :paramtype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword frontend_port: Frontend port resource of an application gateway. + :paramtype frontend_port: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword protocol: Protocol of the HTTP listener. Possible values include: "Http", "Https", + "Tcp", "Tls". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :keyword host_name: Host name of HTTP listener. + :paramtype host_name: str + :keyword ssl_certificate: SSL certificate resource of an application gateway. + :paramtype ssl_certificate: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword ssl_profile: SSL profile resource of the application gateway. + :paramtype ssl_profile: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword require_server_name_indication: Applicable only if protocol is https. Enables SNI for + multi-hosting. + :paramtype require_server_name_indication: bool + :keyword custom_error_configurations: Custom error configurations of the HTTP listener. + :paramtype custom_error_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayCustomError] + :keyword firewall_policy: Reference to the FirewallPolicy resource. + :paramtype firewall_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword host_names: List of Host names for HTTP Listener that allows special wildcard + characters as well. + :paramtype host_names: list[str] + """ + super(ApplicationGatewayHttpListener, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.frontend_ip_configuration = frontend_ip_configuration + self.frontend_port = frontend_port + self.protocol = protocol + self.host_name = host_name + self.ssl_certificate = ssl_certificate + self.ssl_profile = ssl_profile + self.require_server_name_indication = require_server_name_indication + self.provisioning_state = None + self.custom_error_configurations = custom_error_configurations + self.firewall_policy = firewall_policy + self.host_names = host_names + + +class ApplicationGatewayIPConfiguration(SubResource): + """IP configuration of an application gateway. Currently 1 public and 1 private IP configuration is allowed. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the IP configuration that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar subnet: Reference to the subnet resource. A subnet from where application gateway gets + its private address. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the application gateway IP configuration + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + subnet: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the IP configuration that is unique within an Application Gateway. + :paramtype name: str + :keyword subnet: Reference to the subnet resource. A subnet from where application gateway gets + its private address. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(ApplicationGatewayIPConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.subnet = subnet + self.provisioning_state = None + + +class ApplicationGatewayListener(SubResource): + """Listener of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the listener that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar frontend_ip_configuration: Frontend IP configuration resource of an application gateway. + :vartype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar frontend_port: Frontend port resource of an application gateway. + :vartype frontend_port: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar protocol: Protocol of the listener. Possible values include: "Http", "Https", "Tcp", + "Tls". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :ivar ssl_certificate: SSL certificate resource of an application gateway. + :vartype ssl_certificate: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar ssl_profile: SSL profile resource of the application gateway. + :vartype ssl_profile: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the listener resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'frontend_ip_configuration': {'key': 'properties.frontendIPConfiguration', 'type': 'SubResource'}, + 'frontend_port': {'key': 'properties.frontendPort', 'type': 'SubResource'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'ssl_certificate': {'key': 'properties.sslCertificate', 'type': 'SubResource'}, + 'ssl_profile': {'key': 'properties.sslProfile', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + frontend_ip_configuration: Optional["SubResource"] = None, + frontend_port: Optional["SubResource"] = None, + protocol: Optional[Union[str, "ApplicationGatewayProtocol"]] = None, + ssl_certificate: Optional["SubResource"] = None, + ssl_profile: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the listener that is unique within an Application Gateway. + :paramtype name: str + :keyword frontend_ip_configuration: Frontend IP configuration resource of an application + gateway. + :paramtype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword frontend_port: Frontend port resource of an application gateway. + :paramtype frontend_port: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword protocol: Protocol of the listener. Possible values include: "Http", "Https", "Tcp", + "Tls". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :keyword ssl_certificate: SSL certificate resource of an application gateway. + :paramtype ssl_certificate: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword ssl_profile: SSL profile resource of the application gateway. + :paramtype ssl_profile: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(ApplicationGatewayListener, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.frontend_ip_configuration = frontend_ip_configuration + self.frontend_port = frontend_port + self.protocol = protocol + self.ssl_certificate = ssl_certificate + self.ssl_profile = ssl_profile + self.provisioning_state = None + + +class ApplicationGatewayListResult(msrest.serialization.Model): + """Response for ListApplicationGateways API service call. + + :ivar value: List of an application gateways in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGateway] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ApplicationGateway]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ApplicationGateway"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of an application gateways in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGateway] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(ApplicationGatewayListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ApplicationGatewayLoadDistributionPolicy(SubResource): + """Load Distribution Policy of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the load distribution policy that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar load_distribution_targets: Load Distribution Targets resource of an application gateway. + :vartype load_distribution_targets: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayLoadDistributionTarget] + :ivar load_distribution_algorithm: Load Distribution Targets resource of an application + gateway. Possible values include: "RoundRobin", "LeastConnections", "IpHash". + :vartype load_distribution_algorithm: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayLoadDistributionAlgorithm + :ivar provisioning_state: The provisioning state of the Load Distribution Policy resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'load_distribution_targets': {'key': 'properties.loadDistributionTargets', 'type': '[ApplicationGatewayLoadDistributionTarget]'}, + 'load_distribution_algorithm': {'key': 'properties.loadDistributionAlgorithm', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + load_distribution_targets: Optional[List["ApplicationGatewayLoadDistributionTarget"]] = None, + load_distribution_algorithm: Optional[Union[str, "ApplicationGatewayLoadDistributionAlgorithm"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the load distribution policy that is unique within an Application + Gateway. + :paramtype name: str + :keyword load_distribution_targets: Load Distribution Targets resource of an application + gateway. + :paramtype load_distribution_targets: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayLoadDistributionTarget] + :keyword load_distribution_algorithm: Load Distribution Targets resource of an application + gateway. Possible values include: "RoundRobin", "LeastConnections", "IpHash". + :paramtype load_distribution_algorithm: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayLoadDistributionAlgorithm + """ + super(ApplicationGatewayLoadDistributionPolicy, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.load_distribution_targets = load_distribution_targets + self.load_distribution_algorithm = load_distribution_algorithm + self.provisioning_state = None + + +class ApplicationGatewayLoadDistributionTarget(SubResource): + """Load Distribution Target of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the load distribution policy that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar weight_per_server: Weight per server. Range between 1 and 100. + :vartype weight_per_server: int + :ivar backend_address_pool: Backend address pool resource of the application gateway. + :vartype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'weight_per_server': {'maximum': 100, 'minimum': 1}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'weight_per_server': {'key': 'properties.weightPerServer', 'type': 'int'}, + 'backend_address_pool': {'key': 'properties.backendAddressPool', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + weight_per_server: Optional[int] = None, + backend_address_pool: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the load distribution policy that is unique within an Application + Gateway. + :paramtype name: str + :keyword weight_per_server: Weight per server. Range between 1 and 100. + :paramtype weight_per_server: int + :keyword backend_address_pool: Backend address pool resource of the application gateway. + :paramtype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(ApplicationGatewayLoadDistributionTarget, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.weight_per_server = weight_per_server + self.backend_address_pool = backend_address_pool + + +class ApplicationGatewayOnDemandProbe(msrest.serialization.Model): + """Details of on demand test probe request. + + :ivar protocol: The protocol used for the probe. Possible values include: "Http", "Https", + "Tcp", "Tls". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :ivar host: Host name to send the probe to. + :vartype host: str + :ivar path: Relative path of probe. Valid path starts from '/'. Probe is sent to + :code:``://:code:``::code:``:code:``. + :vartype path: str + :ivar timeout: The probe timeout in seconds. Probe marked as failed if valid response is not + received with this timeout period. Acceptable values are from 1 second to 86400 seconds. + :vartype timeout: int + :ivar pick_host_name_from_backend_http_settings: Whether the host header should be picked from + the backend http settings. Default value is false. + :vartype pick_host_name_from_backend_http_settings: bool + :ivar match: Criterion for classifying a healthy probe response. + :vartype match: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProbeHealthResponseMatch + :ivar backend_address_pool: Reference to backend pool of application gateway to which probe + request will be sent. + :vartype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar backend_http_settings: Reference to backend http setting of application gateway to be + used for test probe. + :vartype backend_http_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + + _attribute_map = { + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'host': {'key': 'host', 'type': 'str'}, + 'path': {'key': 'path', 'type': 'str'}, + 'timeout': {'key': 'timeout', 'type': 'int'}, + 'pick_host_name_from_backend_http_settings': {'key': 'pickHostNameFromBackendHttpSettings', 'type': 'bool'}, + 'match': {'key': 'match', 'type': 'ApplicationGatewayProbeHealthResponseMatch'}, + 'backend_address_pool': {'key': 'backendAddressPool', 'type': 'SubResource'}, + 'backend_http_settings': {'key': 'backendHttpSettings', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + protocol: Optional[Union[str, "ApplicationGatewayProtocol"]] = None, + host: Optional[str] = None, + path: Optional[str] = None, + timeout: Optional[int] = None, + pick_host_name_from_backend_http_settings: Optional[bool] = None, + match: Optional["ApplicationGatewayProbeHealthResponseMatch"] = None, + backend_address_pool: Optional["SubResource"] = None, + backend_http_settings: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword protocol: The protocol used for the probe. Possible values include: "Http", "Https", + "Tcp", "Tls". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :keyword host: Host name to send the probe to. + :paramtype host: str + :keyword path: Relative path of probe. Valid path starts from '/'. Probe is sent to + :code:``://:code:``::code:``:code:``. + :paramtype path: str + :keyword timeout: The probe timeout in seconds. Probe marked as failed if valid response is not + received with this timeout period. Acceptable values are from 1 second to 86400 seconds. + :paramtype timeout: int + :keyword pick_host_name_from_backend_http_settings: Whether the host header should be picked + from the backend http settings. Default value is false. + :paramtype pick_host_name_from_backend_http_settings: bool + :keyword match: Criterion for classifying a healthy probe response. + :paramtype match: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProbeHealthResponseMatch + :keyword backend_address_pool: Reference to backend pool of application gateway to which probe + request will be sent. + :paramtype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword backend_http_settings: Reference to backend http setting of application gateway to be + used for test probe. + :paramtype backend_http_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(ApplicationGatewayOnDemandProbe, self).__init__(**kwargs) + self.protocol = protocol + self.host = host + self.path = path + self.timeout = timeout + self.pick_host_name_from_backend_http_settings = pick_host_name_from_backend_http_settings + self.match = match + self.backend_address_pool = backend_address_pool + self.backend_http_settings = backend_http_settings + + +class ApplicationGatewayPathRule(SubResource): + """Path rule of URL path map of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the path rule that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar paths: Path rules of URL path map. + :vartype paths: list[str] + :ivar backend_address_pool: Backend address pool resource of URL path map path rule. + :vartype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar backend_http_settings: Backend http settings resource of URL path map path rule. + :vartype backend_http_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar redirect_configuration: Redirect configuration resource of URL path map path rule. + :vartype redirect_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar rewrite_rule_set: Rewrite rule set resource of URL path map path rule. + :vartype rewrite_rule_set: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar load_distribution_policy: Load Distribution Policy resource of URL path map path rule. + :vartype load_distribution_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the path rule resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar firewall_policy: Reference to the FirewallPolicy resource. + :vartype firewall_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'paths': {'key': 'properties.paths', 'type': '[str]'}, + 'backend_address_pool': {'key': 'properties.backendAddressPool', 'type': 'SubResource'}, + 'backend_http_settings': {'key': 'properties.backendHttpSettings', 'type': 'SubResource'}, + 'redirect_configuration': {'key': 'properties.redirectConfiguration', 'type': 'SubResource'}, + 'rewrite_rule_set': {'key': 'properties.rewriteRuleSet', 'type': 'SubResource'}, + 'load_distribution_policy': {'key': 'properties.loadDistributionPolicy', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'firewall_policy': {'key': 'properties.firewallPolicy', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + paths: Optional[List[str]] = None, + backend_address_pool: Optional["SubResource"] = None, + backend_http_settings: Optional["SubResource"] = None, + redirect_configuration: Optional["SubResource"] = None, + rewrite_rule_set: Optional["SubResource"] = None, + load_distribution_policy: Optional["SubResource"] = None, + firewall_policy: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the path rule that is unique within an Application Gateway. + :paramtype name: str + :keyword paths: Path rules of URL path map. + :paramtype paths: list[str] + :keyword backend_address_pool: Backend address pool resource of URL path map path rule. + :paramtype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword backend_http_settings: Backend http settings resource of URL path map path rule. + :paramtype backend_http_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword redirect_configuration: Redirect configuration resource of URL path map path rule. + :paramtype redirect_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword rewrite_rule_set: Rewrite rule set resource of URL path map path rule. + :paramtype rewrite_rule_set: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword load_distribution_policy: Load Distribution Policy resource of URL path map path rule. + :paramtype load_distribution_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword firewall_policy: Reference to the FirewallPolicy resource. + :paramtype firewall_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(ApplicationGatewayPathRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.paths = paths + self.backend_address_pool = backend_address_pool + self.backend_http_settings = backend_http_settings + self.redirect_configuration = redirect_configuration + self.rewrite_rule_set = rewrite_rule_set + self.load_distribution_policy = load_distribution_policy + self.provisioning_state = None + self.firewall_policy = firewall_policy + + +class ApplicationGatewayPrivateEndpointConnection(SubResource): + """Private Endpoint connection on an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the private endpoint connection on an application gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar private_endpoint: The resource of private end point. + :vartype private_endpoint: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint + :ivar private_link_service_connection_state: A collection of information about the state of the + connection between service consumer and provider. + :vartype private_link_service_connection_state: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnectionState + :ivar provisioning_state: The provisioning state of the application gateway private endpoint + connection resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar link_identifier: The consumer link id. + :vartype link_identifier: str + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'private_endpoint': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'link_identifier': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'private_endpoint': {'key': 'properties.privateEndpoint', 'type': 'PrivateEndpoint'}, + 'private_link_service_connection_state': {'key': 'properties.privateLinkServiceConnectionState', 'type': 'PrivateLinkServiceConnectionState'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'link_identifier': {'key': 'properties.linkIdentifier', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_link_service_connection_state: Optional["PrivateLinkServiceConnectionState"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the private endpoint connection on an application gateway. + :paramtype name: str + :keyword private_link_service_connection_state: A collection of information about the state of + the connection between service consumer and provider. + :paramtype private_link_service_connection_state: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnectionState + """ + super(ApplicationGatewayPrivateEndpointConnection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.private_endpoint = None + self.private_link_service_connection_state = private_link_service_connection_state + self.provisioning_state = None + self.link_identifier = None + + +class ApplicationGatewayPrivateEndpointConnectionListResult(msrest.serialization.Model): + """Response for ListApplicationGatewayPrivateEndpointConnection API service call. Gets all private endpoint connections for an application gateway. + + :ivar value: List of private endpoint connections on an application gateway. + :vartype value: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnection] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ApplicationGatewayPrivateEndpointConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ApplicationGatewayPrivateEndpointConnection"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of private endpoint connections on an application gateway. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnection] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(ApplicationGatewayPrivateEndpointConnectionListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ApplicationGatewayPrivateLinkConfiguration(SubResource): + """Private Link Configuration on an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the private link configuration that is unique within an Application + Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar ip_configurations: An array of application gateway private link ip configurations. + :vartype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateLinkIpConfiguration] + :ivar provisioning_state: The provisioning state of the application gateway private link + configuration. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[ApplicationGatewayPrivateLinkIpConfiguration]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + ip_configurations: Optional[List["ApplicationGatewayPrivateLinkIpConfiguration"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the private link configuration that is unique within an Application + Gateway. + :paramtype name: str + :keyword ip_configurations: An array of application gateway private link ip configurations. + :paramtype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateLinkIpConfiguration] + """ + super(ApplicationGatewayPrivateLinkConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.ip_configurations = ip_configurations + self.provisioning_state = None + + +class ApplicationGatewayPrivateLinkIpConfiguration(SubResource): + """The application gateway private link ip configuration. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of application gateway private link ip configuration. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: The resource type. + :vartype type: str + :ivar private_ip_address: The private IP address of the IP configuration. + :vartype private_ip_address: str + :ivar private_ip_allocation_method: The private IP address allocation method. Possible values + include: "Static", "Dynamic". + :vartype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :ivar subnet: Reference to the subnet resource. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar primary: Whether the ip configuration is primary or not. + :vartype primary: bool + :ivar provisioning_state: The provisioning state of the application gateway private link IP + configuration. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + 'private_ip_allocation_method': {'key': 'properties.privateIPAllocationMethod', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'SubResource'}, + 'primary': {'key': 'properties.primary', 'type': 'bool'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_ip_address: Optional[str] = None, + private_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + subnet: Optional["SubResource"] = None, + primary: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of application gateway private link ip configuration. + :paramtype name: str + :keyword private_ip_address: The private IP address of the IP configuration. + :paramtype private_ip_address: str + :keyword private_ip_allocation_method: The private IP address allocation method. Possible + values include: "Static", "Dynamic". + :paramtype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :keyword subnet: Reference to the subnet resource. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword primary: Whether the ip configuration is primary or not. + :paramtype primary: bool + """ + super(ApplicationGatewayPrivateLinkIpConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.private_ip_address = private_ip_address + self.private_ip_allocation_method = private_ip_allocation_method + self.subnet = subnet + self.primary = primary + self.provisioning_state = None + + +class ApplicationGatewayPrivateLinkResource(SubResource): + """PrivateLink Resource of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the private link resource that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar group_id: Group identifier of private link resource. + :vartype group_id: str + :ivar required_members: Required member names of private link resource. + :vartype required_members: list[str] + :ivar required_zone_names: Required DNS zone names of the the private link resource. + :vartype required_zone_names: list[str] + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'group_id': {'readonly': True}, + 'required_members': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'required_members': {'key': 'properties.requiredMembers', 'type': '[str]'}, + 'required_zone_names': {'key': 'properties.requiredZoneNames', 'type': '[str]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + required_zone_names: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the private link resource that is unique within an Application Gateway. + :paramtype name: str + :keyword required_zone_names: Required DNS zone names of the the private link resource. + :paramtype required_zone_names: list[str] + """ + super(ApplicationGatewayPrivateLinkResource, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.group_id = None + self.required_members = None + self.required_zone_names = required_zone_names + + +class ApplicationGatewayPrivateLinkResourceListResult(msrest.serialization.Model): + """Response for ListApplicationGatewayPrivateLinkResources API service call. Gets all private link resources for an application gateway. + + :ivar value: List of private link resources of an application gateway. + :vartype value: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateLinkResource] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ApplicationGatewayPrivateLinkResource]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ApplicationGatewayPrivateLinkResource"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of private link resources of an application gateway. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateLinkResource] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(ApplicationGatewayPrivateLinkResourceListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ApplicationGatewayProbe(SubResource): + """Probe of the application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the probe that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar protocol: The protocol used for the probe. Possible values include: "Http", "Https", + "Tcp", "Tls". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :ivar host: Host name to send the probe to. + :vartype host: str + :ivar path: Relative path of probe. Valid path starts from '/'. Probe is sent to + :code:``://:code:``::code:``:code:``. + :vartype path: str + :ivar interval: The probing interval in seconds. This is the time interval between two + consecutive probes. Acceptable values are from 1 second to 86400 seconds. + :vartype interval: int + :ivar timeout: The probe timeout in seconds. Probe marked as failed if valid response is not + received with this timeout period. Acceptable values are from 1 second to 86400 seconds. + :vartype timeout: int + :ivar unhealthy_threshold: The probe retry count. Backend server is marked down after + consecutive probe failure count reaches UnhealthyThreshold. Acceptable values are from 1 second + to 20. + :vartype unhealthy_threshold: int + :ivar pick_host_name_from_backend_http_settings: Whether the host header should be picked from + the backend http settings. Default value is false. + :vartype pick_host_name_from_backend_http_settings: bool + :ivar pick_host_name_from_backend_settings: Whether the server name indication should be picked + from the backend settings for Tls protocol. Default value is false. + :vartype pick_host_name_from_backend_settings: bool + :ivar min_servers: Minimum number of servers that are always marked healthy. Default value is + 0. + :vartype min_servers: int + :ivar match: Criterion for classifying a healthy probe response. + :vartype match: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProbeHealthResponseMatch + :ivar provisioning_state: The provisioning state of the probe resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar port: Custom port which will be used for probing the backend servers. The valid value + ranges from 1 to 65535. In case not set, port from http settings will be used. This property is + valid for Standard_v2 and WAF_v2 only. + :vartype port: int + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'port': {'maximum': 65535, 'minimum': 1}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'host': {'key': 'properties.host', 'type': 'str'}, + 'path': {'key': 'properties.path', 'type': 'str'}, + 'interval': {'key': 'properties.interval', 'type': 'int'}, + 'timeout': {'key': 'properties.timeout', 'type': 'int'}, + 'unhealthy_threshold': {'key': 'properties.unhealthyThreshold', 'type': 'int'}, + 'pick_host_name_from_backend_http_settings': {'key': 'properties.pickHostNameFromBackendHttpSettings', 'type': 'bool'}, + 'pick_host_name_from_backend_settings': {'key': 'properties.pickHostNameFromBackendSettings', 'type': 'bool'}, + 'min_servers': {'key': 'properties.minServers', 'type': 'int'}, + 'match': {'key': 'properties.match', 'type': 'ApplicationGatewayProbeHealthResponseMatch'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'port': {'key': 'properties.port', 'type': 'int'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + protocol: Optional[Union[str, "ApplicationGatewayProtocol"]] = None, + host: Optional[str] = None, + path: Optional[str] = None, + interval: Optional[int] = None, + timeout: Optional[int] = None, + unhealthy_threshold: Optional[int] = None, + pick_host_name_from_backend_http_settings: Optional[bool] = None, + pick_host_name_from_backend_settings: Optional[bool] = None, + min_servers: Optional[int] = None, + match: Optional["ApplicationGatewayProbeHealthResponseMatch"] = None, + port: Optional[int] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the probe that is unique within an Application Gateway. + :paramtype name: str + :keyword protocol: The protocol used for the probe. Possible values include: "Http", "Https", + "Tcp", "Tls". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProtocol + :keyword host: Host name to send the probe to. + :paramtype host: str + :keyword path: Relative path of probe. Valid path starts from '/'. Probe is sent to + :code:``://:code:``::code:``:code:``. + :paramtype path: str + :keyword interval: The probing interval in seconds. This is the time interval between two + consecutive probes. Acceptable values are from 1 second to 86400 seconds. + :paramtype interval: int + :keyword timeout: The probe timeout in seconds. Probe marked as failed if valid response is not + received with this timeout period. Acceptable values are from 1 second to 86400 seconds. + :paramtype timeout: int + :keyword unhealthy_threshold: The probe retry count. Backend server is marked down after + consecutive probe failure count reaches UnhealthyThreshold. Acceptable values are from 1 second + to 20. + :paramtype unhealthy_threshold: int + :keyword pick_host_name_from_backend_http_settings: Whether the host header should be picked + from the backend http settings. Default value is false. + :paramtype pick_host_name_from_backend_http_settings: bool + :keyword pick_host_name_from_backend_settings: Whether the server name indication should be + picked from the backend settings for Tls protocol. Default value is false. + :paramtype pick_host_name_from_backend_settings: bool + :keyword min_servers: Minimum number of servers that are always marked healthy. Default value + is 0. + :paramtype min_servers: int + :keyword match: Criterion for classifying a healthy probe response. + :paramtype match: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayProbeHealthResponseMatch + :keyword port: Custom port which will be used for probing the backend servers. The valid value + ranges from 1 to 65535. In case not set, port from http settings will be used. This property is + valid for Standard_v2 and WAF_v2 only. + :paramtype port: int + """ + super(ApplicationGatewayProbe, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.protocol = protocol + self.host = host + self.path = path + self.interval = interval + self.timeout = timeout + self.unhealthy_threshold = unhealthy_threshold + self.pick_host_name_from_backend_http_settings = pick_host_name_from_backend_http_settings + self.pick_host_name_from_backend_settings = pick_host_name_from_backend_settings + self.min_servers = min_servers + self.match = match + self.provisioning_state = None + self.port = port + + +class ApplicationGatewayProbeHealthResponseMatch(msrest.serialization.Model): + """Application gateway probe health response match. + + :ivar body: Body that must be contained in the health response. Default value is empty. + :vartype body: str + :ivar status_codes: Allowed ranges of healthy status codes. Default range of healthy status + codes is 200-399. + :vartype status_codes: list[str] + """ + + _attribute_map = { + 'body': {'key': 'body', 'type': 'str'}, + 'status_codes': {'key': 'statusCodes', 'type': '[str]'}, + } + + def __init__( + self, + *, + body: Optional[str] = None, + status_codes: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword body: Body that must be contained in the health response. Default value is empty. + :paramtype body: str + :keyword status_codes: Allowed ranges of healthy status codes. Default range of healthy status + codes is 200-399. + :paramtype status_codes: list[str] + """ + super(ApplicationGatewayProbeHealthResponseMatch, self).__init__(**kwargs) + self.body = body + self.status_codes = status_codes + + +class ApplicationGatewayRedirectConfiguration(SubResource): + """Redirect configuration of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the redirect configuration that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar redirect_type: HTTP redirection type. Possible values include: "Permanent", "Found", + "SeeOther", "Temporary". + :vartype redirect_type: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRedirectType + :ivar target_listener: Reference to a listener to redirect the request to. + :vartype target_listener: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar target_url: Url to redirect the request to. + :vartype target_url: str + :ivar include_path: Include path in the redirected url. + :vartype include_path: bool + :ivar include_query_string: Include query string in the redirected url. + :vartype include_query_string: bool + :ivar request_routing_rules: Request routing specifying redirect configuration. + :vartype request_routing_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar url_path_maps: Url path maps specifying default redirect configuration. + :vartype url_path_maps: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar path_rules: Path rules specifying redirect configuration. + :vartype path_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'redirect_type': {'key': 'properties.redirectType', 'type': 'str'}, + 'target_listener': {'key': 'properties.targetListener', 'type': 'SubResource'}, + 'target_url': {'key': 'properties.targetUrl', 'type': 'str'}, + 'include_path': {'key': 'properties.includePath', 'type': 'bool'}, + 'include_query_string': {'key': 'properties.includeQueryString', 'type': 'bool'}, + 'request_routing_rules': {'key': 'properties.requestRoutingRules', 'type': '[SubResource]'}, + 'url_path_maps': {'key': 'properties.urlPathMaps', 'type': '[SubResource]'}, + 'path_rules': {'key': 'properties.pathRules', 'type': '[SubResource]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + redirect_type: Optional[Union[str, "ApplicationGatewayRedirectType"]] = None, + target_listener: Optional["SubResource"] = None, + target_url: Optional[str] = None, + include_path: Optional[bool] = None, + include_query_string: Optional[bool] = None, + request_routing_rules: Optional[List["SubResource"]] = None, + url_path_maps: Optional[List["SubResource"]] = None, + path_rules: Optional[List["SubResource"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the redirect configuration that is unique within an Application Gateway. + :paramtype name: str + :keyword redirect_type: HTTP redirection type. Possible values include: "Permanent", "Found", + "SeeOther", "Temporary". + :paramtype redirect_type: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRedirectType + :keyword target_listener: Reference to a listener to redirect the request to. + :paramtype target_listener: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword target_url: Url to redirect the request to. + :paramtype target_url: str + :keyword include_path: Include path in the redirected url. + :paramtype include_path: bool + :keyword include_query_string: Include query string in the redirected url. + :paramtype include_query_string: bool + :keyword request_routing_rules: Request routing specifying redirect configuration. + :paramtype request_routing_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword url_path_maps: Url path maps specifying default redirect configuration. + :paramtype url_path_maps: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword path_rules: Path rules specifying redirect configuration. + :paramtype path_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + super(ApplicationGatewayRedirectConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.redirect_type = redirect_type + self.target_listener = target_listener + self.target_url = target_url + self.include_path = include_path + self.include_query_string = include_query_string + self.request_routing_rules = request_routing_rules + self.url_path_maps = url_path_maps + self.path_rules = path_rules + + +class ApplicationGatewayRequestRoutingRule(SubResource): + """Request routing rule of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the request routing rule that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar rule_type: Rule type. Possible values include: "Basic", "PathBasedRouting". + :vartype rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRequestRoutingRuleType + :ivar priority: Priority of the request routing rule. + :vartype priority: int + :ivar backend_address_pool: Backend address pool resource of the application gateway. + :vartype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar backend_http_settings: Backend http settings resource of the application gateway. + :vartype backend_http_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar http_listener: Http listener resource of the application gateway. + :vartype http_listener: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar url_path_map: URL path map resource of the application gateway. + :vartype url_path_map: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar rewrite_rule_set: Rewrite Rule Set resource in Basic rule of the application gateway. + :vartype rewrite_rule_set: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar redirect_configuration: Redirect configuration resource of the application gateway. + :vartype redirect_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar load_distribution_policy: Load Distribution Policy resource of the application gateway. + :vartype load_distribution_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the request routing rule resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'priority': {'maximum': 20000, 'minimum': 1}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'rule_type': {'key': 'properties.ruleType', 'type': 'str'}, + 'priority': {'key': 'properties.priority', 'type': 'int'}, + 'backend_address_pool': {'key': 'properties.backendAddressPool', 'type': 'SubResource'}, + 'backend_http_settings': {'key': 'properties.backendHttpSettings', 'type': 'SubResource'}, + 'http_listener': {'key': 'properties.httpListener', 'type': 'SubResource'}, + 'url_path_map': {'key': 'properties.urlPathMap', 'type': 'SubResource'}, + 'rewrite_rule_set': {'key': 'properties.rewriteRuleSet', 'type': 'SubResource'}, + 'redirect_configuration': {'key': 'properties.redirectConfiguration', 'type': 'SubResource'}, + 'load_distribution_policy': {'key': 'properties.loadDistributionPolicy', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + rule_type: Optional[Union[str, "ApplicationGatewayRequestRoutingRuleType"]] = None, + priority: Optional[int] = None, + backend_address_pool: Optional["SubResource"] = None, + backend_http_settings: Optional["SubResource"] = None, + http_listener: Optional["SubResource"] = None, + url_path_map: Optional["SubResource"] = None, + rewrite_rule_set: Optional["SubResource"] = None, + redirect_configuration: Optional["SubResource"] = None, + load_distribution_policy: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the request routing rule that is unique within an Application Gateway. + :paramtype name: str + :keyword rule_type: Rule type. Possible values include: "Basic", "PathBasedRouting". + :paramtype rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRequestRoutingRuleType + :keyword priority: Priority of the request routing rule. + :paramtype priority: int + :keyword backend_address_pool: Backend address pool resource of the application gateway. + :paramtype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword backend_http_settings: Backend http settings resource of the application gateway. + :paramtype backend_http_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword http_listener: Http listener resource of the application gateway. + :paramtype http_listener: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword url_path_map: URL path map resource of the application gateway. + :paramtype url_path_map: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword rewrite_rule_set: Rewrite Rule Set resource in Basic rule of the application gateway. + :paramtype rewrite_rule_set: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword redirect_configuration: Redirect configuration resource of the application gateway. + :paramtype redirect_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword load_distribution_policy: Load Distribution Policy resource of the application + gateway. + :paramtype load_distribution_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(ApplicationGatewayRequestRoutingRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.rule_type = rule_type + self.priority = priority + self.backend_address_pool = backend_address_pool + self.backend_http_settings = backend_http_settings + self.http_listener = http_listener + self.url_path_map = url_path_map + self.rewrite_rule_set = rewrite_rule_set + self.redirect_configuration = redirect_configuration + self.load_distribution_policy = load_distribution_policy + self.provisioning_state = None + + +class ApplicationGatewayRewriteRule(msrest.serialization.Model): + """Rewrite rule of an application gateway. + + :ivar name: Name of the rewrite rule that is unique within an Application Gateway. + :vartype name: str + :ivar rule_sequence: Rule Sequence of the rewrite rule that determines the order of execution + of a particular rule in a RewriteRuleSet. + :vartype rule_sequence: int + :ivar conditions: Conditions based on which the action set execution will be evaluated. + :vartype conditions: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRewriteRuleCondition] + :ivar action_set: Set of actions to be done as part of the rewrite Rule. + :vartype action_set: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRewriteRuleActionSet + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'rule_sequence': {'key': 'ruleSequence', 'type': 'int'}, + 'conditions': {'key': 'conditions', 'type': '[ApplicationGatewayRewriteRuleCondition]'}, + 'action_set': {'key': 'actionSet', 'type': 'ApplicationGatewayRewriteRuleActionSet'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + rule_sequence: Optional[int] = None, + conditions: Optional[List["ApplicationGatewayRewriteRuleCondition"]] = None, + action_set: Optional["ApplicationGatewayRewriteRuleActionSet"] = None, + **kwargs + ): + """ + :keyword name: Name of the rewrite rule that is unique within an Application Gateway. + :paramtype name: str + :keyword rule_sequence: Rule Sequence of the rewrite rule that determines the order of + execution of a particular rule in a RewriteRuleSet. + :paramtype rule_sequence: int + :keyword conditions: Conditions based on which the action set execution will be evaluated. + :paramtype conditions: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRewriteRuleCondition] + :keyword action_set: Set of actions to be done as part of the rewrite Rule. + :paramtype action_set: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRewriteRuleActionSet + """ + super(ApplicationGatewayRewriteRule, self).__init__(**kwargs) + self.name = name + self.rule_sequence = rule_sequence + self.conditions = conditions + self.action_set = action_set + + +class ApplicationGatewayRewriteRuleActionSet(msrest.serialization.Model): + """Set of actions in the Rewrite Rule in Application Gateway. + + :ivar request_header_configurations: Request Header Actions in the Action Set. + :vartype request_header_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayHeaderConfiguration] + :ivar response_header_configurations: Response Header Actions in the Action Set. + :vartype response_header_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayHeaderConfiguration] + :ivar url_configuration: Url Configuration Action in the Action Set. + :vartype url_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayUrlConfiguration + """ + + _attribute_map = { + 'request_header_configurations': {'key': 'requestHeaderConfigurations', 'type': '[ApplicationGatewayHeaderConfiguration]'}, + 'response_header_configurations': {'key': 'responseHeaderConfigurations', 'type': '[ApplicationGatewayHeaderConfiguration]'}, + 'url_configuration': {'key': 'urlConfiguration', 'type': 'ApplicationGatewayUrlConfiguration'}, + } + + def __init__( + self, + *, + request_header_configurations: Optional[List["ApplicationGatewayHeaderConfiguration"]] = None, + response_header_configurations: Optional[List["ApplicationGatewayHeaderConfiguration"]] = None, + url_configuration: Optional["ApplicationGatewayUrlConfiguration"] = None, + **kwargs + ): + """ + :keyword request_header_configurations: Request Header Actions in the Action Set. + :paramtype request_header_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayHeaderConfiguration] + :keyword response_header_configurations: Response Header Actions in the Action Set. + :paramtype response_header_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayHeaderConfiguration] + :keyword url_configuration: Url Configuration Action in the Action Set. + :paramtype url_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayUrlConfiguration + """ + super(ApplicationGatewayRewriteRuleActionSet, self).__init__(**kwargs) + self.request_header_configurations = request_header_configurations + self.response_header_configurations = response_header_configurations + self.url_configuration = url_configuration + + +class ApplicationGatewayRewriteRuleCondition(msrest.serialization.Model): + """Set of conditions in the Rewrite Rule in Application Gateway. + + :ivar variable: The condition parameter of the RewriteRuleCondition. + :vartype variable: str + :ivar pattern: The pattern, either fixed string or regular expression, that evaluates the + truthfulness of the condition. + :vartype pattern: str + :ivar ignore_case: Setting this parameter to truth value with force the pattern to do a case + in-sensitive comparison. + :vartype ignore_case: bool + :ivar negate: Setting this value as truth will force to check the negation of the condition + given by the user. + :vartype negate: bool + """ + + _attribute_map = { + 'variable': {'key': 'variable', 'type': 'str'}, + 'pattern': {'key': 'pattern', 'type': 'str'}, + 'ignore_case': {'key': 'ignoreCase', 'type': 'bool'}, + 'negate': {'key': 'negate', 'type': 'bool'}, + } + + def __init__( + self, + *, + variable: Optional[str] = None, + pattern: Optional[str] = None, + ignore_case: Optional[bool] = None, + negate: Optional[bool] = None, + **kwargs + ): + """ + :keyword variable: The condition parameter of the RewriteRuleCondition. + :paramtype variable: str + :keyword pattern: The pattern, either fixed string or regular expression, that evaluates the + truthfulness of the condition. + :paramtype pattern: str + :keyword ignore_case: Setting this parameter to truth value with force the pattern to do a case + in-sensitive comparison. + :paramtype ignore_case: bool + :keyword negate: Setting this value as truth will force to check the negation of the condition + given by the user. + :paramtype negate: bool + """ + super(ApplicationGatewayRewriteRuleCondition, self).__init__(**kwargs) + self.variable = variable + self.pattern = pattern + self.ignore_case = ignore_case + self.negate = negate + + +class ApplicationGatewayRewriteRuleSet(SubResource): + """Rewrite rule set of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the rewrite rule set that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar rewrite_rules: Rewrite rules in the rewrite rule set. + :vartype rewrite_rules: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRewriteRule] + :ivar provisioning_state: The provisioning state of the rewrite rule set resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'rewrite_rules': {'key': 'properties.rewriteRules', 'type': '[ApplicationGatewayRewriteRule]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + rewrite_rules: Optional[List["ApplicationGatewayRewriteRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the rewrite rule set that is unique within an Application Gateway. + :paramtype name: str + :keyword rewrite_rules: Rewrite rules in the rewrite rule set. + :paramtype rewrite_rules: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRewriteRule] + """ + super(ApplicationGatewayRewriteRuleSet, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.rewrite_rules = rewrite_rules + self.provisioning_state = None + + +class ApplicationGatewayRoutingRule(SubResource): + """Routing rule of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the routing rule that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar rule_type: Rule type. Possible values include: "Basic", "PathBasedRouting". + :vartype rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRequestRoutingRuleType + :ivar backend_address_pool: Backend address pool resource of the application gateway. + :vartype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar backend_settings: Backend settings resource of the application gateway. + :vartype backend_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar listener: Listener resource of the application gateway. + :vartype listener: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the request routing rule resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'rule_type': {'key': 'properties.ruleType', 'type': 'str'}, + 'backend_address_pool': {'key': 'properties.backendAddressPool', 'type': 'SubResource'}, + 'backend_settings': {'key': 'properties.backendSettings', 'type': 'SubResource'}, + 'listener': {'key': 'properties.listener', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + rule_type: Optional[Union[str, "ApplicationGatewayRequestRoutingRuleType"]] = None, + backend_address_pool: Optional["SubResource"] = None, + backend_settings: Optional["SubResource"] = None, + listener: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the routing rule that is unique within an Application Gateway. + :paramtype name: str + :keyword rule_type: Rule type. Possible values include: "Basic", "PathBasedRouting". + :paramtype rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayRequestRoutingRuleType + :keyword backend_address_pool: Backend address pool resource of the application gateway. + :paramtype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword backend_settings: Backend settings resource of the application gateway. + :paramtype backend_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword listener: Listener resource of the application gateway. + :paramtype listener: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(ApplicationGatewayRoutingRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.rule_type = rule_type + self.backend_address_pool = backend_address_pool + self.backend_settings = backend_settings + self.listener = listener + self.provisioning_state = None + + +class ApplicationGatewaySku(msrest.serialization.Model): + """SKU of an application gateway. + + :ivar name: Name of an application gateway SKU. Possible values include: "Standard_Small", + "Standard_Medium", "Standard_Large", "WAF_Medium", "WAF_Large", "Standard_v2", "WAF_v2". + :vartype name: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySkuName + :ivar tier: Tier of an application gateway. Possible values include: "Standard", "WAF", + "Standard_v2", "WAF_v2". + :vartype tier: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayTier + :ivar capacity: Capacity (instance count) of an application gateway. + :vartype capacity: int + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + 'capacity': {'key': 'capacity', 'type': 'int'}, + } + + def __init__( + self, + *, + name: Optional[Union[str, "ApplicationGatewaySkuName"]] = None, + tier: Optional[Union[str, "ApplicationGatewayTier"]] = None, + capacity: Optional[int] = None, + **kwargs + ): + """ + :keyword name: Name of an application gateway SKU. Possible values include: "Standard_Small", + "Standard_Medium", "Standard_Large", "WAF_Medium", "WAF_Large", "Standard_v2", "WAF_v2". + :paramtype name: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySkuName + :keyword tier: Tier of an application gateway. Possible values include: "Standard", "WAF", + "Standard_v2", "WAF_v2". + :paramtype tier: str or ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayTier + :keyword capacity: Capacity (instance count) of an application gateway. + :paramtype capacity: int + """ + super(ApplicationGatewaySku, self).__init__(**kwargs) + self.name = name + self.tier = tier + self.capacity = capacity + + +class ApplicationGatewaySslCertificate(SubResource): + """SSL certificates of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the SSL certificate that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar data: Base-64 encoded pfx certificate. Only applicable in PUT Request. + :vartype data: str + :ivar password: Password for the pfx file specified in data. Only applicable in PUT request. + :vartype password: str + :ivar public_cert_data: Base-64 encoded Public cert data corresponding to pfx specified in + data. Only applicable in GET request. + :vartype public_cert_data: str + :ivar key_vault_secret_id: Secret Id of (base-64 encoded unencrypted pfx) 'Secret' or + 'Certificate' object stored in KeyVault. + :vartype key_vault_secret_id: str + :ivar provisioning_state: The provisioning state of the SSL certificate resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'public_cert_data': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'data': {'key': 'properties.data', 'type': 'str'}, + 'password': {'key': 'properties.password', 'type': 'str'}, + 'public_cert_data': {'key': 'properties.publicCertData', 'type': 'str'}, + 'key_vault_secret_id': {'key': 'properties.keyVaultSecretId', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + data: Optional[str] = None, + password: Optional[str] = None, + key_vault_secret_id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the SSL certificate that is unique within an Application Gateway. + :paramtype name: str + :keyword data: Base-64 encoded pfx certificate. Only applicable in PUT Request. + :paramtype data: str + :keyword password: Password for the pfx file specified in data. Only applicable in PUT request. + :paramtype password: str + :keyword key_vault_secret_id: Secret Id of (base-64 encoded unencrypted pfx) 'Secret' or + 'Certificate' object stored in KeyVault. + :paramtype key_vault_secret_id: str + """ + super(ApplicationGatewaySslCertificate, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.data = data + self.password = password + self.public_cert_data = None + self.key_vault_secret_id = key_vault_secret_id + self.provisioning_state = None + + +class ApplicationGatewaySslPolicy(msrest.serialization.Model): + """Application Gateway Ssl policy. + + :ivar disabled_ssl_protocols: Ssl protocols to be disabled on application gateway. + :vartype disabled_ssl_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProtocol] + :ivar policy_type: Type of Ssl Policy. Possible values include: "Predefined", "Custom". + :vartype policy_type: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicyType + :ivar policy_name: Name of Ssl predefined policy. Possible values include: + "AppGwSslPolicy20150501", "AppGwSslPolicy20170401", "AppGwSslPolicy20170401S". + :vartype policy_name: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicyName + :ivar cipher_suites: Ssl cipher suites to be enabled in the specified order to application + gateway. + :vartype cipher_suites: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslCipherSuite] + :ivar min_protocol_version: Minimum version of Ssl protocol to be supported on application + gateway. Possible values include: "TLSv1_0", "TLSv1_1", "TLSv1_2". + :vartype min_protocol_version: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProtocol + """ + + _attribute_map = { + 'disabled_ssl_protocols': {'key': 'disabledSslProtocols', 'type': '[str]'}, + 'policy_type': {'key': 'policyType', 'type': 'str'}, + 'policy_name': {'key': 'policyName', 'type': 'str'}, + 'cipher_suites': {'key': 'cipherSuites', 'type': '[str]'}, + 'min_protocol_version': {'key': 'minProtocolVersion', 'type': 'str'}, + } + + def __init__( + self, + *, + disabled_ssl_protocols: Optional[List[Union[str, "ApplicationGatewaySslProtocol"]]] = None, + policy_type: Optional[Union[str, "ApplicationGatewaySslPolicyType"]] = None, + policy_name: Optional[Union[str, "ApplicationGatewaySslPolicyName"]] = None, + cipher_suites: Optional[List[Union[str, "ApplicationGatewaySslCipherSuite"]]] = None, + min_protocol_version: Optional[Union[str, "ApplicationGatewaySslProtocol"]] = None, + **kwargs + ): + """ + :keyword disabled_ssl_protocols: Ssl protocols to be disabled on application gateway. + :paramtype disabled_ssl_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProtocol] + :keyword policy_type: Type of Ssl Policy. Possible values include: "Predefined", "Custom". + :paramtype policy_type: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicyType + :keyword policy_name: Name of Ssl predefined policy. Possible values include: + "AppGwSslPolicy20150501", "AppGwSslPolicy20170401", "AppGwSslPolicy20170401S". + :paramtype policy_name: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicyName + :keyword cipher_suites: Ssl cipher suites to be enabled in the specified order to application + gateway. + :paramtype cipher_suites: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslCipherSuite] + :keyword min_protocol_version: Minimum version of Ssl protocol to be supported on application + gateway. Possible values include: "TLSv1_0", "TLSv1_1", "TLSv1_2". + :paramtype min_protocol_version: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProtocol + """ + super(ApplicationGatewaySslPolicy, self).__init__(**kwargs) + self.disabled_ssl_protocols = disabled_ssl_protocols + self.policy_type = policy_type + self.policy_name = policy_name + self.cipher_suites = cipher_suites + self.min_protocol_version = min_protocol_version + + +class ApplicationGatewaySslPredefinedPolicy(SubResource): + """An Ssl predefined policy. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the Ssl predefined policy. + :vartype name: str + :ivar cipher_suites: Ssl cipher suites to be enabled in the specified order for application + gateway. + :vartype cipher_suites: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslCipherSuite] + :ivar min_protocol_version: Minimum version of Ssl protocol to be supported on application + gateway. Possible values include: "TLSv1_0", "TLSv1_1", "TLSv1_2". + :vartype min_protocol_version: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProtocol + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'cipher_suites': {'key': 'properties.cipherSuites', 'type': '[str]'}, + 'min_protocol_version': {'key': 'properties.minProtocolVersion', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + cipher_suites: Optional[List[Union[str, "ApplicationGatewaySslCipherSuite"]]] = None, + min_protocol_version: Optional[Union[str, "ApplicationGatewaySslProtocol"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the Ssl predefined policy. + :paramtype name: str + :keyword cipher_suites: Ssl cipher suites to be enabled in the specified order for application + gateway. + :paramtype cipher_suites: list[str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslCipherSuite] + :keyword min_protocol_version: Minimum version of Ssl protocol to be supported on application + gateway. Possible values include: "TLSv1_0", "TLSv1_1", "TLSv1_2". + :paramtype min_protocol_version: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslProtocol + """ + super(ApplicationGatewaySslPredefinedPolicy, self).__init__(id=id, **kwargs) + self.name = name + self.cipher_suites = cipher_suites + self.min_protocol_version = min_protocol_version + + +class ApplicationGatewaySslProfile(SubResource): + """SSL profile of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the SSL profile that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar trusted_client_certificates: Array of references to application gateway trusted client + certificates. + :vartype trusted_client_certificates: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar ssl_policy: SSL policy of the application gateway resource. + :vartype ssl_policy: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicy + :ivar client_auth_configuration: Client authentication configuration of the application gateway + resource. + :vartype client_auth_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayClientAuthConfiguration + :ivar provisioning_state: The provisioning state of the HTTP listener resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'trusted_client_certificates': {'key': 'properties.trustedClientCertificates', 'type': '[SubResource]'}, + 'ssl_policy': {'key': 'properties.sslPolicy', 'type': 'ApplicationGatewaySslPolicy'}, + 'client_auth_configuration': {'key': 'properties.clientAuthConfiguration', 'type': 'ApplicationGatewayClientAuthConfiguration'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + trusted_client_certificates: Optional[List["SubResource"]] = None, + ssl_policy: Optional["ApplicationGatewaySslPolicy"] = None, + client_auth_configuration: Optional["ApplicationGatewayClientAuthConfiguration"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the SSL profile that is unique within an Application Gateway. + :paramtype name: str + :keyword trusted_client_certificates: Array of references to application gateway trusted client + certificates. + :paramtype trusted_client_certificates: + list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword ssl_policy: SSL policy of the application gateway resource. + :paramtype ssl_policy: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPolicy + :keyword client_auth_configuration: Client authentication configuration of the application + gateway resource. + :paramtype client_auth_configuration: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayClientAuthConfiguration + """ + super(ApplicationGatewaySslProfile, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.trusted_client_certificates = trusted_client_certificates + self.ssl_policy = ssl_policy + self.client_auth_configuration = client_auth_configuration + self.provisioning_state = None + + +class ApplicationGatewayTrustedClientCertificate(SubResource): + """Trusted client certificates of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the trusted client certificate that is unique within an Application + Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar data: Certificate public data. + :vartype data: str + :ivar validated_cert_data: Validated certificate data. + :vartype validated_cert_data: str + :ivar client_cert_issuer_dn: Distinguished name of client certificate issuer. + :vartype client_cert_issuer_dn: str + :ivar provisioning_state: The provisioning state of the trusted client certificate resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'validated_cert_data': {'readonly': True}, + 'client_cert_issuer_dn': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'data': {'key': 'properties.data', 'type': 'str'}, + 'validated_cert_data': {'key': 'properties.validatedCertData', 'type': 'str'}, + 'client_cert_issuer_dn': {'key': 'properties.clientCertIssuerDN', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + data: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the trusted client certificate that is unique within an Application + Gateway. + :paramtype name: str + :keyword data: Certificate public data. + :paramtype data: str + """ + super(ApplicationGatewayTrustedClientCertificate, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.data = data + self.validated_cert_data = None + self.client_cert_issuer_dn = None + self.provisioning_state = None + + +class ApplicationGatewayTrustedRootCertificate(SubResource): + """Trusted Root certificates of an application gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the trusted root certificate that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar data: Certificate public data. + :vartype data: str + :ivar key_vault_secret_id: Secret Id of (base-64 encoded unencrypted pfx) 'Secret' or + 'Certificate' object stored in KeyVault. + :vartype key_vault_secret_id: str + :ivar provisioning_state: The provisioning state of the trusted root certificate resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'data': {'key': 'properties.data', 'type': 'str'}, + 'key_vault_secret_id': {'key': 'properties.keyVaultSecretId', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + data: Optional[str] = None, + key_vault_secret_id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the trusted root certificate that is unique within an Application + Gateway. + :paramtype name: str + :keyword data: Certificate public data. + :paramtype data: str + :keyword key_vault_secret_id: Secret Id of (base-64 encoded unencrypted pfx) 'Secret' or + 'Certificate' object stored in KeyVault. + :paramtype key_vault_secret_id: str + """ + super(ApplicationGatewayTrustedRootCertificate, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.data = data + self.key_vault_secret_id = key_vault_secret_id + self.provisioning_state = None + + +class ApplicationGatewayUrlConfiguration(msrest.serialization.Model): + """Url configuration of the Actions set in Application Gateway. + + :ivar modified_path: Url path which user has provided for url rewrite. Null means no path will + be updated. Default value is null. + :vartype modified_path: str + :ivar modified_query_string: Query string which user has provided for url rewrite. Null means + no query string will be updated. Default value is null. + :vartype modified_query_string: str + :ivar reroute: If set as true, it will re-evaluate the url path map provided in path based + request routing rules using modified path. Default value is false. + :vartype reroute: bool + """ + + _attribute_map = { + 'modified_path': {'key': 'modifiedPath', 'type': 'str'}, + 'modified_query_string': {'key': 'modifiedQueryString', 'type': 'str'}, + 'reroute': {'key': 'reroute', 'type': 'bool'}, + } + + def __init__( + self, + *, + modified_path: Optional[str] = None, + modified_query_string: Optional[str] = None, + reroute: Optional[bool] = None, + **kwargs + ): + """ + :keyword modified_path: Url path which user has provided for url rewrite. Null means no path + will be updated. Default value is null. + :paramtype modified_path: str + :keyword modified_query_string: Query string which user has provided for url rewrite. Null + means no query string will be updated. Default value is null. + :paramtype modified_query_string: str + :keyword reroute: If set as true, it will re-evaluate the url path map provided in path based + request routing rules using modified path. Default value is false. + :paramtype reroute: bool + """ + super(ApplicationGatewayUrlConfiguration, self).__init__(**kwargs) + self.modified_path = modified_path + self.modified_query_string = modified_query_string + self.reroute = reroute + + +class ApplicationGatewayUrlPathMap(SubResource): + """UrlPathMaps give a url path to the backend mapping information for PathBasedRouting. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the URL path map that is unique within an Application Gateway. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar default_backend_address_pool: Default backend address pool resource of URL path map. + :vartype default_backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar default_backend_http_settings: Default backend http settings resource of URL path map. + :vartype default_backend_http_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar default_rewrite_rule_set: Default Rewrite rule set resource of URL path map. + :vartype default_rewrite_rule_set: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar default_redirect_configuration: Default redirect configuration resource of URL path map. + :vartype default_redirect_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar default_load_distribution_policy: Default Load Distribution Policy resource of URL path + map. + :vartype default_load_distribution_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar path_rules: Path rule of URL path map resource. + :vartype path_rules: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPathRule] + :ivar provisioning_state: The provisioning state of the URL path map resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'default_backend_address_pool': {'key': 'properties.defaultBackendAddressPool', 'type': 'SubResource'}, + 'default_backend_http_settings': {'key': 'properties.defaultBackendHttpSettings', 'type': 'SubResource'}, + 'default_rewrite_rule_set': {'key': 'properties.defaultRewriteRuleSet', 'type': 'SubResource'}, + 'default_redirect_configuration': {'key': 'properties.defaultRedirectConfiguration', 'type': 'SubResource'}, + 'default_load_distribution_policy': {'key': 'properties.defaultLoadDistributionPolicy', 'type': 'SubResource'}, + 'path_rules': {'key': 'properties.pathRules', 'type': '[ApplicationGatewayPathRule]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + default_backend_address_pool: Optional["SubResource"] = None, + default_backend_http_settings: Optional["SubResource"] = None, + default_rewrite_rule_set: Optional["SubResource"] = None, + default_redirect_configuration: Optional["SubResource"] = None, + default_load_distribution_policy: Optional["SubResource"] = None, + path_rules: Optional[List["ApplicationGatewayPathRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the URL path map that is unique within an Application Gateway. + :paramtype name: str + :keyword default_backend_address_pool: Default backend address pool resource of URL path map. + :paramtype default_backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword default_backend_http_settings: Default backend http settings resource of URL path map. + :paramtype default_backend_http_settings: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword default_rewrite_rule_set: Default Rewrite rule set resource of URL path map. + :paramtype default_rewrite_rule_set: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword default_redirect_configuration: Default redirect configuration resource of URL path + map. + :paramtype default_redirect_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword default_load_distribution_policy: Default Load Distribution Policy resource of URL + path map. + :paramtype default_load_distribution_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword path_rules: Path rule of URL path map resource. + :paramtype path_rules: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPathRule] + """ + super(ApplicationGatewayUrlPathMap, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.default_backend_address_pool = default_backend_address_pool + self.default_backend_http_settings = default_backend_http_settings + self.default_rewrite_rule_set = default_rewrite_rule_set + self.default_redirect_configuration = default_redirect_configuration + self.default_load_distribution_policy = default_load_distribution_policy + self.path_rules = path_rules + self.provisioning_state = None + + +class ApplicationGatewayWebApplicationFirewallConfiguration(msrest.serialization.Model): + """Application gateway web application firewall configuration. + + All required parameters must be populated in order to send to Azure. + + :ivar enabled: Required. Whether the web application firewall is enabled or not. + :vartype enabled: bool + :ivar firewall_mode: Required. Web application firewall mode. Possible values include: + "Detection", "Prevention". + :vartype firewall_mode: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallMode + :ivar rule_set_type: Required. The type of the web application firewall rule set. Possible + values are: 'OWASP'. + :vartype rule_set_type: str + :ivar rule_set_version: Required. The version of the rule set type. + :vartype rule_set_version: str + :ivar disabled_rule_groups: The disabled rule groups. + :vartype disabled_rule_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallDisabledRuleGroup] + :ivar request_body_check: Whether allow WAF to check request Body. + :vartype request_body_check: bool + :ivar max_request_body_size: Maximum request body size for WAF. + :vartype max_request_body_size: int + :ivar max_request_body_size_in_kb: Maximum request body size in Kb for WAF. + :vartype max_request_body_size_in_kb: int + :ivar file_upload_limit_in_mb: Maximum file upload size in Mb for WAF. + :vartype file_upload_limit_in_mb: int + :ivar exclusions: The exclusion list. + :vartype exclusions: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallExclusion] + """ + + _validation = { + 'enabled': {'required': True}, + 'firewall_mode': {'required': True}, + 'rule_set_type': {'required': True}, + 'rule_set_version': {'required': True}, + 'max_request_body_size': {'maximum': 128, 'minimum': 8}, + 'max_request_body_size_in_kb': {'maximum': 128, 'minimum': 8}, + 'file_upload_limit_in_mb': {'minimum': 0}, + } + + _attribute_map = { + 'enabled': {'key': 'enabled', 'type': 'bool'}, + 'firewall_mode': {'key': 'firewallMode', 'type': 'str'}, + 'rule_set_type': {'key': 'ruleSetType', 'type': 'str'}, + 'rule_set_version': {'key': 'ruleSetVersion', 'type': 'str'}, + 'disabled_rule_groups': {'key': 'disabledRuleGroups', 'type': '[ApplicationGatewayFirewallDisabledRuleGroup]'}, + 'request_body_check': {'key': 'requestBodyCheck', 'type': 'bool'}, + 'max_request_body_size': {'key': 'maxRequestBodySize', 'type': 'int'}, + 'max_request_body_size_in_kb': {'key': 'maxRequestBodySizeInKb', 'type': 'int'}, + 'file_upload_limit_in_mb': {'key': 'fileUploadLimitInMb', 'type': 'int'}, + 'exclusions': {'key': 'exclusions', 'type': '[ApplicationGatewayFirewallExclusion]'}, + } + + def __init__( + self, + *, + enabled: bool, + firewall_mode: Union[str, "ApplicationGatewayFirewallMode"], + rule_set_type: str, + rule_set_version: str, + disabled_rule_groups: Optional[List["ApplicationGatewayFirewallDisabledRuleGroup"]] = None, + request_body_check: Optional[bool] = None, + max_request_body_size: Optional[int] = None, + max_request_body_size_in_kb: Optional[int] = None, + file_upload_limit_in_mb: Optional[int] = None, + exclusions: Optional[List["ApplicationGatewayFirewallExclusion"]] = None, + **kwargs + ): + """ + :keyword enabled: Required. Whether the web application firewall is enabled or not. + :paramtype enabled: bool + :keyword firewall_mode: Required. Web application firewall mode. Possible values include: + "Detection", "Prevention". + :paramtype firewall_mode: str or + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallMode + :keyword rule_set_type: Required. The type of the web application firewall rule set. Possible + values are: 'OWASP'. + :paramtype rule_set_type: str + :keyword rule_set_version: Required. The version of the rule set type. + :paramtype rule_set_version: str + :keyword disabled_rule_groups: The disabled rule groups. + :paramtype disabled_rule_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallDisabledRuleGroup] + :keyword request_body_check: Whether allow WAF to check request Body. + :paramtype request_body_check: bool + :keyword max_request_body_size: Maximum request body size for WAF. + :paramtype max_request_body_size: int + :keyword max_request_body_size_in_kb: Maximum request body size in Kb for WAF. + :paramtype max_request_body_size_in_kb: int + :keyword file_upload_limit_in_mb: Maximum file upload size in Mb for WAF. + :paramtype file_upload_limit_in_mb: int + :keyword exclusions: The exclusion list. + :paramtype exclusions: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayFirewallExclusion] + """ + super(ApplicationGatewayWebApplicationFirewallConfiguration, self).__init__(**kwargs) + self.enabled = enabled + self.firewall_mode = firewall_mode + self.rule_set_type = rule_set_type + self.rule_set_version = rule_set_version + self.disabled_rule_groups = disabled_rule_groups + self.request_body_check = request_body_check + self.max_request_body_size = max_request_body_size + self.max_request_body_size_in_kb = max_request_body_size_in_kb + self.file_upload_limit_in_mb = file_upload_limit_in_mb + self.exclusions = exclusions + + +class FirewallPolicyRule(msrest.serialization.Model): + """Properties of a rule. + + You probably want to use the sub-classes and not this class directly. Known + sub-classes are: ApplicationRule, NatRule, NetworkRule. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Name of the rule. + :vartype name: str + :ivar description: Description of the rule. + :vartype description: str + :ivar rule_type: Required. Rule Type.Constant filled by server. Possible values include: + "ApplicationRule", "NetworkRule", "NatRule". + :vartype rule_type: str or ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleType + """ + + _validation = { + 'rule_type': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'rule_type': {'key': 'ruleType', 'type': 'str'}, + } + + _subtype_map = { + 'rule_type': {'ApplicationRule': 'ApplicationRule', 'NatRule': 'NatRule', 'NetworkRule': 'NetworkRule'} + } + + def __init__( + self, + *, + name: Optional[str] = None, + description: Optional[str] = None, + **kwargs + ): + """ + :keyword name: Name of the rule. + :paramtype name: str + :keyword description: Description of the rule. + :paramtype description: str + """ + super(FirewallPolicyRule, self).__init__(**kwargs) + self.name = name + self.description = description + self.rule_type = None # type: Optional[str] + + +class ApplicationRule(FirewallPolicyRule): + """Rule of type application. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Name of the rule. + :vartype name: str + :ivar description: Description of the rule. + :vartype description: str + :ivar rule_type: Required. Rule Type.Constant filled by server. Possible values include: + "ApplicationRule", "NetworkRule", "NatRule". + :vartype rule_type: str or ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleType + :ivar source_addresses: List of source IP addresses for this rule. + :vartype source_addresses: list[str] + :ivar destination_addresses: List of destination IP addresses or Service Tags. + :vartype destination_addresses: list[str] + :ivar protocols: Array of Application Protocols. + :vartype protocols: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleApplicationProtocol] + :ivar target_fqdns: List of FQDNs for this rule. + :vartype target_fqdns: list[str] + :ivar target_urls: List of Urls for this rule condition. + :vartype target_urls: list[str] + :ivar fqdn_tags: List of FQDN Tags for this rule. + :vartype fqdn_tags: list[str] + :ivar source_ip_groups: List of source IpGroups for this rule. + :vartype source_ip_groups: list[str] + :ivar terminate_tls: Terminate TLS connections for this rule. + :vartype terminate_tls: bool + :ivar web_categories: List of destination azure web categories. + :vartype web_categories: list[str] + """ + + _validation = { + 'rule_type': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'rule_type': {'key': 'ruleType', 'type': 'str'}, + 'source_addresses': {'key': 'sourceAddresses', 'type': '[str]'}, + 'destination_addresses': {'key': 'destinationAddresses', 'type': '[str]'}, + 'protocols': {'key': 'protocols', 'type': '[FirewallPolicyRuleApplicationProtocol]'}, + 'target_fqdns': {'key': 'targetFqdns', 'type': '[str]'}, + 'target_urls': {'key': 'targetUrls', 'type': '[str]'}, + 'fqdn_tags': {'key': 'fqdnTags', 'type': '[str]'}, + 'source_ip_groups': {'key': 'sourceIpGroups', 'type': '[str]'}, + 'terminate_tls': {'key': 'terminateTLS', 'type': 'bool'}, + 'web_categories': {'key': 'webCategories', 'type': '[str]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + description: Optional[str] = None, + source_addresses: Optional[List[str]] = None, + destination_addresses: Optional[List[str]] = None, + protocols: Optional[List["FirewallPolicyRuleApplicationProtocol"]] = None, + target_fqdns: Optional[List[str]] = None, + target_urls: Optional[List[str]] = None, + fqdn_tags: Optional[List[str]] = None, + source_ip_groups: Optional[List[str]] = None, + terminate_tls: Optional[bool] = None, + web_categories: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword name: Name of the rule. + :paramtype name: str + :keyword description: Description of the rule. + :paramtype description: str + :keyword source_addresses: List of source IP addresses for this rule. + :paramtype source_addresses: list[str] + :keyword destination_addresses: List of destination IP addresses or Service Tags. + :paramtype destination_addresses: list[str] + :keyword protocols: Array of Application Protocols. + :paramtype protocols: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleApplicationProtocol] + :keyword target_fqdns: List of FQDNs for this rule. + :paramtype target_fqdns: list[str] + :keyword target_urls: List of Urls for this rule condition. + :paramtype target_urls: list[str] + :keyword fqdn_tags: List of FQDN Tags for this rule. + :paramtype fqdn_tags: list[str] + :keyword source_ip_groups: List of source IpGroups for this rule. + :paramtype source_ip_groups: list[str] + :keyword terminate_tls: Terminate TLS connections for this rule. + :paramtype terminate_tls: bool + :keyword web_categories: List of destination azure web categories. + :paramtype web_categories: list[str] + """ + super(ApplicationRule, self).__init__(name=name, description=description, **kwargs) + self.rule_type = 'ApplicationRule' # type: str + self.source_addresses = source_addresses + self.destination_addresses = destination_addresses + self.protocols = protocols + self.target_fqdns = target_fqdns + self.target_urls = target_urls + self.fqdn_tags = fqdn_tags + self.source_ip_groups = source_ip_groups + self.terminate_tls = terminate_tls + self.web_categories = web_categories + + +class ApplicationSecurityGroup(Resource): + """An application security group in a resource group. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar resource_guid: The resource GUID property of the application security group resource. It + uniquely identifies a resource, even if the user changes its name or migrate the resource + across subscriptions or resource groups. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the application security group resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + """ + super(ApplicationSecurityGroup, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.resource_guid = None + self.provisioning_state = None + + +class ApplicationSecurityGroupListResult(msrest.serialization.Model): + """A list of application security groups. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of application security groups. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ApplicationSecurityGroup]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ApplicationSecurityGroup"]] = None, + **kwargs + ): + """ + :keyword value: A list of application security groups. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + """ + super(ApplicationSecurityGroupListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class AuthorizationListResult(msrest.serialization.Model): + """Response for ListAuthorizations API service call retrieves all authorizations that belongs to an ExpressRouteCircuit. + + :ivar value: The authorizations in an ExpressRoute Circuit. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCircuitAuthorization]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCircuitAuthorization"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The authorizations in an ExpressRoute Circuit. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(AuthorizationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class AutoApprovedPrivateLinkService(msrest.serialization.Model): + """The information of an AutoApprovedPrivateLinkService. + + :ivar private_link_service: The id of the private link service resource. + :vartype private_link_service: str + """ + + _attribute_map = { + 'private_link_service': {'key': 'privateLinkService', 'type': 'str'}, + } + + def __init__( + self, + *, + private_link_service: Optional[str] = None, + **kwargs + ): + """ + :keyword private_link_service: The id of the private link service resource. + :paramtype private_link_service: str + """ + super(AutoApprovedPrivateLinkService, self).__init__(**kwargs) + self.private_link_service = private_link_service + + +class AutoApprovedPrivateLinkServicesResult(msrest.serialization.Model): + """An array of private link service id that can be linked to a private end point with auto approved. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: An array of auto approved private link service. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.AutoApprovedPrivateLinkService] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[AutoApprovedPrivateLinkService]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["AutoApprovedPrivateLinkService"]] = None, + **kwargs + ): + """ + :keyword value: An array of auto approved private link service. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.AutoApprovedPrivateLinkService] + """ + super(AutoApprovedPrivateLinkServicesResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class Availability(msrest.serialization.Model): + """Availability of the metric. + + :ivar time_grain: The time grain of the availability. + :vartype time_grain: str + :ivar retention: The retention of the availability. + :vartype retention: str + :ivar blob_duration: Duration of the availability blob. + :vartype blob_duration: str + """ + + _attribute_map = { + 'time_grain': {'key': 'timeGrain', 'type': 'str'}, + 'retention': {'key': 'retention', 'type': 'str'}, + 'blob_duration': {'key': 'blobDuration', 'type': 'str'}, + } + + def __init__( + self, + *, + time_grain: Optional[str] = None, + retention: Optional[str] = None, + blob_duration: Optional[str] = None, + **kwargs + ): + """ + :keyword time_grain: The time grain of the availability. + :paramtype time_grain: str + :keyword retention: The retention of the availability. + :paramtype retention: str + :keyword blob_duration: Duration of the availability blob. + :paramtype blob_duration: str + """ + super(Availability, self).__init__(**kwargs) + self.time_grain = time_grain + self.retention = retention + self.blob_duration = blob_duration + + +class AvailableDelegation(msrest.serialization.Model): + """The serviceName of an AvailableDelegation indicates a possible delegation for a subnet. + + :ivar name: The name of the AvailableDelegation resource. + :vartype name: str + :ivar id: A unique identifier of the AvailableDelegation resource. + :vartype id: str + :ivar type: Resource type. + :vartype type: str + :ivar service_name: The name of the service and resource. + :vartype service_name: str + :ivar actions: The actions permitted to the service upon delegation. + :vartype actions: list[str] + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'service_name': {'key': 'serviceName', 'type': 'str'}, + 'actions': {'key': 'actions', 'type': '[str]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + id: Optional[str] = None, + type: Optional[str] = None, + service_name: Optional[str] = None, + actions: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword name: The name of the AvailableDelegation resource. + :paramtype name: str + :keyword id: A unique identifier of the AvailableDelegation resource. + :paramtype id: str + :keyword type: Resource type. + :paramtype type: str + :keyword service_name: The name of the service and resource. + :paramtype service_name: str + :keyword actions: The actions permitted to the service upon delegation. + :paramtype actions: list[str] + """ + super(AvailableDelegation, self).__init__(**kwargs) + self.name = name + self.id = id + self.type = type + self.service_name = service_name + self.actions = actions + + +class AvailableDelegationsResult(msrest.serialization.Model): + """An array of available delegations. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: An array of available delegations. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.AvailableDelegation] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[AvailableDelegation]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["AvailableDelegation"]] = None, + **kwargs + ): + """ + :keyword value: An array of available delegations. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.AvailableDelegation] + """ + super(AvailableDelegationsResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class AvailablePrivateEndpointType(msrest.serialization.Model): + """The information of an AvailablePrivateEndpointType. + + :ivar name: The name of the service and resource. + :vartype name: str + :ivar id: A unique identifier of the AvailablePrivateEndpoint Type resource. + :vartype id: str + :ivar type: Resource type. + :vartype type: str + :ivar resource_name: The name of the service and resource. + :vartype resource_name: str + :ivar display_name: Display name of the resource. + :vartype display_name: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'resource_name': {'key': 'resourceName', 'type': 'str'}, + 'display_name': {'key': 'displayName', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + id: Optional[str] = None, + type: Optional[str] = None, + resource_name: Optional[str] = None, + display_name: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name of the service and resource. + :paramtype name: str + :keyword id: A unique identifier of the AvailablePrivateEndpoint Type resource. + :paramtype id: str + :keyword type: Resource type. + :paramtype type: str + :keyword resource_name: The name of the service and resource. + :paramtype resource_name: str + :keyword display_name: Display name of the resource. + :paramtype display_name: str + """ + super(AvailablePrivateEndpointType, self).__init__(**kwargs) + self.name = name + self.id = id + self.type = type + self.resource_name = resource_name + self.display_name = display_name + + +class AvailablePrivateEndpointTypesResult(msrest.serialization.Model): + """An array of available PrivateEndpoint types. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: An array of available privateEndpoint type. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.AvailablePrivateEndpointType] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[AvailablePrivateEndpointType]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["AvailablePrivateEndpointType"]] = None, + **kwargs + ): + """ + :keyword value: An array of available privateEndpoint type. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.AvailablePrivateEndpointType] + """ + super(AvailablePrivateEndpointTypesResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class AvailableProvidersList(msrest.serialization.Model): + """List of available countries with details. + + All required parameters must be populated in order to send to Azure. + + :ivar countries: Required. List of available countries. + :vartype countries: list[~azure.mgmt.network.v2021_08_01.models.AvailableProvidersListCountry] + """ + + _validation = { + 'countries': {'required': True}, + } + + _attribute_map = { + 'countries': {'key': 'countries', 'type': '[AvailableProvidersListCountry]'}, + } + + def __init__( + self, + *, + countries: List["AvailableProvidersListCountry"], + **kwargs + ): + """ + :keyword countries: Required. List of available countries. + :paramtype countries: + list[~azure.mgmt.network.v2021_08_01.models.AvailableProvidersListCountry] + """ + super(AvailableProvidersList, self).__init__(**kwargs) + self.countries = countries + + +class AvailableProvidersListCity(msrest.serialization.Model): + """City or town details. + + :ivar city_name: The city or town name. + :vartype city_name: str + :ivar providers: A list of Internet service providers. + :vartype providers: list[str] + """ + + _attribute_map = { + 'city_name': {'key': 'cityName', 'type': 'str'}, + 'providers': {'key': 'providers', 'type': '[str]'}, + } + + def __init__( + self, + *, + city_name: Optional[str] = None, + providers: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword city_name: The city or town name. + :paramtype city_name: str + :keyword providers: A list of Internet service providers. + :paramtype providers: list[str] + """ + super(AvailableProvidersListCity, self).__init__(**kwargs) + self.city_name = city_name + self.providers = providers + + +class AvailableProvidersListCountry(msrest.serialization.Model): + """Country details. + + :ivar country_name: The country name. + :vartype country_name: str + :ivar providers: A list of Internet service providers. + :vartype providers: list[str] + :ivar states: List of available states in the country. + :vartype states: list[~azure.mgmt.network.v2021_08_01.models.AvailableProvidersListState] + """ + + _attribute_map = { + 'country_name': {'key': 'countryName', 'type': 'str'}, + 'providers': {'key': 'providers', 'type': '[str]'}, + 'states': {'key': 'states', 'type': '[AvailableProvidersListState]'}, + } + + def __init__( + self, + *, + country_name: Optional[str] = None, + providers: Optional[List[str]] = None, + states: Optional[List["AvailableProvidersListState"]] = None, + **kwargs + ): + """ + :keyword country_name: The country name. + :paramtype country_name: str + :keyword providers: A list of Internet service providers. + :paramtype providers: list[str] + :keyword states: List of available states in the country. + :paramtype states: list[~azure.mgmt.network.v2021_08_01.models.AvailableProvidersListState] + """ + super(AvailableProvidersListCountry, self).__init__(**kwargs) + self.country_name = country_name + self.providers = providers + self.states = states + + +class AvailableProvidersListParameters(msrest.serialization.Model): + """Constraints that determine the list of available Internet service providers. + + :ivar azure_locations: A list of Azure regions. + :vartype azure_locations: list[str] + :ivar country: The country for available providers list. + :vartype country: str + :ivar state: The state for available providers list. + :vartype state: str + :ivar city: The city or town for available providers list. + :vartype city: str + """ + + _attribute_map = { + 'azure_locations': {'key': 'azureLocations', 'type': '[str]'}, + 'country': {'key': 'country', 'type': 'str'}, + 'state': {'key': 'state', 'type': 'str'}, + 'city': {'key': 'city', 'type': 'str'}, + } + + def __init__( + self, + *, + azure_locations: Optional[List[str]] = None, + country: Optional[str] = None, + state: Optional[str] = None, + city: Optional[str] = None, + **kwargs + ): + """ + :keyword azure_locations: A list of Azure regions. + :paramtype azure_locations: list[str] + :keyword country: The country for available providers list. + :paramtype country: str + :keyword state: The state for available providers list. + :paramtype state: str + :keyword city: The city or town for available providers list. + :paramtype city: str + """ + super(AvailableProvidersListParameters, self).__init__(**kwargs) + self.azure_locations = azure_locations + self.country = country + self.state = state + self.city = city + + +class AvailableProvidersListState(msrest.serialization.Model): + """State details. + + :ivar state_name: The state name. + :vartype state_name: str + :ivar providers: A list of Internet service providers. + :vartype providers: list[str] + :ivar cities: List of available cities or towns in the state. + :vartype cities: list[~azure.mgmt.network.v2021_08_01.models.AvailableProvidersListCity] + """ + + _attribute_map = { + 'state_name': {'key': 'stateName', 'type': 'str'}, + 'providers': {'key': 'providers', 'type': '[str]'}, + 'cities': {'key': 'cities', 'type': '[AvailableProvidersListCity]'}, + } + + def __init__( + self, + *, + state_name: Optional[str] = None, + providers: Optional[List[str]] = None, + cities: Optional[List["AvailableProvidersListCity"]] = None, + **kwargs + ): + """ + :keyword state_name: The state name. + :paramtype state_name: str + :keyword providers: A list of Internet service providers. + :paramtype providers: list[str] + :keyword cities: List of available cities or towns in the state. + :paramtype cities: list[~azure.mgmt.network.v2021_08_01.models.AvailableProvidersListCity] + """ + super(AvailableProvidersListState, self).__init__(**kwargs) + self.state_name = state_name + self.providers = providers + self.cities = cities + + +class AvailableServiceAlias(msrest.serialization.Model): + """The available service alias. + + :ivar name: The name of the service alias. + :vartype name: str + :ivar id: The ID of the service alias. + :vartype id: str + :ivar type: The type of the resource. + :vartype type: str + :ivar resource_name: The resource name of the service alias. + :vartype resource_name: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'resource_name': {'key': 'resourceName', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + id: Optional[str] = None, + type: Optional[str] = None, + resource_name: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name of the service alias. + :paramtype name: str + :keyword id: The ID of the service alias. + :paramtype id: str + :keyword type: The type of the resource. + :paramtype type: str + :keyword resource_name: The resource name of the service alias. + :paramtype resource_name: str + """ + super(AvailableServiceAlias, self).__init__(**kwargs) + self.name = name + self.id = id + self.type = type + self.resource_name = resource_name + + +class AvailableServiceAliasesResult(msrest.serialization.Model): + """An array of available service aliases. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: An array of available service aliases. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.AvailableServiceAlias] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[AvailableServiceAlias]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["AvailableServiceAlias"]] = None, + **kwargs + ): + """ + :keyword value: An array of available service aliases. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.AvailableServiceAlias] + """ + super(AvailableServiceAliasesResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class AzureAsyncOperationResult(msrest.serialization.Model): + """The response body contains the status of the specified asynchronous operation, indicating whether it has succeeded, is in progress, or has failed. Note that this status is distinct from the HTTP status code returned for the Get Operation Status operation itself. If the asynchronous operation succeeded, the response body includes the HTTP status code for the successful request. If the asynchronous operation failed, the response body includes the HTTP status code for the failed request and error information regarding the failure. + + :ivar status: Status of the Azure async operation. Possible values include: "InProgress", + "Succeeded", "Failed". + :vartype status: str or ~azure.mgmt.network.v2021_08_01.models.NetworkOperationStatus + :ivar error: Details of the error occurred during specified asynchronous operation. + :vartype error: ~azure.mgmt.network.v2021_08_01.models.Error + """ + + _attribute_map = { + 'status': {'key': 'status', 'type': 'str'}, + 'error': {'key': 'error', 'type': 'Error'}, + } + + def __init__( + self, + *, + status: Optional[Union[str, "NetworkOperationStatus"]] = None, + error: Optional["Error"] = None, + **kwargs + ): + """ + :keyword status: Status of the Azure async operation. Possible values include: "InProgress", + "Succeeded", "Failed". + :paramtype status: str or ~azure.mgmt.network.v2021_08_01.models.NetworkOperationStatus + :keyword error: Details of the error occurred during specified asynchronous operation. + :paramtype error: ~azure.mgmt.network.v2021_08_01.models.Error + """ + super(AzureAsyncOperationResult, self).__init__(**kwargs) + self.status = status + self.error = error + + +class AzureFirewall(Resource): + """Azure Firewall resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar zones: A list of availability zones denoting where the resource needs to come from. + :vartype zones: list[str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar application_rule_collections: Collection of application rule collections used by Azure + Firewall. + :vartype application_rule_collections: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallApplicationRuleCollection] + :ivar nat_rule_collections: Collection of NAT rule collections used by Azure Firewall. + :vartype nat_rule_collections: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallNatRuleCollection] + :ivar network_rule_collections: Collection of network rule collections used by Azure Firewall. + :vartype network_rule_collections: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallNetworkRuleCollection] + :ivar ip_configurations: IP configuration of the Azure Firewall resource. + :vartype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallIPConfiguration] + :ivar management_ip_configuration: IP configuration of the Azure Firewall used for management + traffic. + :vartype management_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallIPConfiguration + :ivar provisioning_state: The provisioning state of the Azure firewall resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar threat_intel_mode: The operation mode for Threat Intelligence. Possible values include: + "Alert", "Deny", "Off". + :vartype threat_intel_mode: str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallThreatIntelMode + :ivar virtual_hub: The virtualHub to which the firewall belongs. + :vartype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar firewall_policy: The firewallPolicy associated with this azure firewall. + :vartype firewall_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar hub_ip_addresses: IP addresses associated with AzureFirewall. + :vartype hub_ip_addresses: ~azure.mgmt.network.v2021_08_01.models.HubIPAddresses + :ivar ip_groups: IpGroups associated with AzureFirewall. + :vartype ip_groups: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallIpGroups] + :ivar sku: The Azure Firewall Resource SKU. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.AzureFirewallSku + :ivar additional_properties: The additional properties used to further config this azure + firewall. + :vartype additional_properties: dict[str, str] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'ip_groups': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'zones': {'key': 'zones', 'type': '[str]'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'application_rule_collections': {'key': 'properties.applicationRuleCollections', 'type': '[AzureFirewallApplicationRuleCollection]'}, + 'nat_rule_collections': {'key': 'properties.natRuleCollections', 'type': '[AzureFirewallNatRuleCollection]'}, + 'network_rule_collections': {'key': 'properties.networkRuleCollections', 'type': '[AzureFirewallNetworkRuleCollection]'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[AzureFirewallIPConfiguration]'}, + 'management_ip_configuration': {'key': 'properties.managementIpConfiguration', 'type': 'AzureFirewallIPConfiguration'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'threat_intel_mode': {'key': 'properties.threatIntelMode', 'type': 'str'}, + 'virtual_hub': {'key': 'properties.virtualHub', 'type': 'SubResource'}, + 'firewall_policy': {'key': 'properties.firewallPolicy', 'type': 'SubResource'}, + 'hub_ip_addresses': {'key': 'properties.hubIPAddresses', 'type': 'HubIPAddresses'}, + 'ip_groups': {'key': 'properties.ipGroups', 'type': '[AzureFirewallIpGroups]'}, + 'sku': {'key': 'properties.sku', 'type': 'AzureFirewallSku'}, + 'additional_properties': {'key': 'properties.additionalProperties', 'type': '{str}'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + zones: Optional[List[str]] = None, + application_rule_collections: Optional[List["AzureFirewallApplicationRuleCollection"]] = None, + nat_rule_collections: Optional[List["AzureFirewallNatRuleCollection"]] = None, + network_rule_collections: Optional[List["AzureFirewallNetworkRuleCollection"]] = None, + ip_configurations: Optional[List["AzureFirewallIPConfiguration"]] = None, + management_ip_configuration: Optional["AzureFirewallIPConfiguration"] = None, + threat_intel_mode: Optional[Union[str, "AzureFirewallThreatIntelMode"]] = None, + virtual_hub: Optional["SubResource"] = None, + firewall_policy: Optional["SubResource"] = None, + hub_ip_addresses: Optional["HubIPAddresses"] = None, + sku: Optional["AzureFirewallSku"] = None, + additional_properties: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword zones: A list of availability zones denoting where the resource needs to come from. + :paramtype zones: list[str] + :keyword application_rule_collections: Collection of application rule collections used by Azure + Firewall. + :paramtype application_rule_collections: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallApplicationRuleCollection] + :keyword nat_rule_collections: Collection of NAT rule collections used by Azure Firewall. + :paramtype nat_rule_collections: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallNatRuleCollection] + :keyword network_rule_collections: Collection of network rule collections used by Azure + Firewall. + :paramtype network_rule_collections: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallNetworkRuleCollection] + :keyword ip_configurations: IP configuration of the Azure Firewall resource. + :paramtype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallIPConfiguration] + :keyword management_ip_configuration: IP configuration of the Azure Firewall used for + management traffic. + :paramtype management_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallIPConfiguration + :keyword threat_intel_mode: The operation mode for Threat Intelligence. Possible values + include: "Alert", "Deny", "Off". + :paramtype threat_intel_mode: str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallThreatIntelMode + :keyword virtual_hub: The virtualHub to which the firewall belongs. + :paramtype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword firewall_policy: The firewallPolicy associated with this azure firewall. + :paramtype firewall_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword hub_ip_addresses: IP addresses associated with AzureFirewall. + :paramtype hub_ip_addresses: ~azure.mgmt.network.v2021_08_01.models.HubIPAddresses + :keyword sku: The Azure Firewall Resource SKU. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.AzureFirewallSku + :keyword additional_properties: The additional properties used to further config this azure + firewall. + :paramtype additional_properties: dict[str, str] + """ + super(AzureFirewall, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.zones = zones + self.etag = None + self.application_rule_collections = application_rule_collections + self.nat_rule_collections = nat_rule_collections + self.network_rule_collections = network_rule_collections + self.ip_configurations = ip_configurations + self.management_ip_configuration = management_ip_configuration + self.provisioning_state = None + self.threat_intel_mode = threat_intel_mode + self.virtual_hub = virtual_hub + self.firewall_policy = firewall_policy + self.hub_ip_addresses = hub_ip_addresses + self.ip_groups = None + self.sku = sku + self.additional_properties = additional_properties + + +class AzureFirewallApplicationRule(msrest.serialization.Model): + """Properties of an application rule. + + :ivar name: Name of the application rule. + :vartype name: str + :ivar description: Description of the rule. + :vartype description: str + :ivar source_addresses: List of source IP addresses for this rule. + :vartype source_addresses: list[str] + :ivar protocols: Array of ApplicationRuleProtocols. + :vartype protocols: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallApplicationRuleProtocol] + :ivar target_fqdns: List of FQDNs for this rule. + :vartype target_fqdns: list[str] + :ivar fqdn_tags: List of FQDN Tags for this rule. + :vartype fqdn_tags: list[str] + :ivar source_ip_groups: List of source IpGroups for this rule. + :vartype source_ip_groups: list[str] + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'source_addresses': {'key': 'sourceAddresses', 'type': '[str]'}, + 'protocols': {'key': 'protocols', 'type': '[AzureFirewallApplicationRuleProtocol]'}, + 'target_fqdns': {'key': 'targetFqdns', 'type': '[str]'}, + 'fqdn_tags': {'key': 'fqdnTags', 'type': '[str]'}, + 'source_ip_groups': {'key': 'sourceIpGroups', 'type': '[str]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + description: Optional[str] = None, + source_addresses: Optional[List[str]] = None, + protocols: Optional[List["AzureFirewallApplicationRuleProtocol"]] = None, + target_fqdns: Optional[List[str]] = None, + fqdn_tags: Optional[List[str]] = None, + source_ip_groups: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword name: Name of the application rule. + :paramtype name: str + :keyword description: Description of the rule. + :paramtype description: str + :keyword source_addresses: List of source IP addresses for this rule. + :paramtype source_addresses: list[str] + :keyword protocols: Array of ApplicationRuleProtocols. + :paramtype protocols: + list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallApplicationRuleProtocol] + :keyword target_fqdns: List of FQDNs for this rule. + :paramtype target_fqdns: list[str] + :keyword fqdn_tags: List of FQDN Tags for this rule. + :paramtype fqdn_tags: list[str] + :keyword source_ip_groups: List of source IpGroups for this rule. + :paramtype source_ip_groups: list[str] + """ + super(AzureFirewallApplicationRule, self).__init__(**kwargs) + self.name = name + self.description = description + self.source_addresses = source_addresses + self.protocols = protocols + self.target_fqdns = target_fqdns + self.fqdn_tags = fqdn_tags + self.source_ip_groups = source_ip_groups + + +class AzureFirewallApplicationRuleCollection(SubResource): + """Application rule collection resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the Azure firewall. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar priority: Priority of the application rule collection resource. + :vartype priority: int + :ivar action: The action type of a rule collection. + :vartype action: ~azure.mgmt.network.v2021_08_01.models.AzureFirewallRCAction + :ivar rules: Collection of rules used by a application rule collection. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallApplicationRule] + :ivar provisioning_state: The provisioning state of the application rule collection resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'priority': {'maximum': 65000, 'minimum': 100}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'priority': {'key': 'properties.priority', 'type': 'int'}, + 'action': {'key': 'properties.action', 'type': 'AzureFirewallRCAction'}, + 'rules': {'key': 'properties.rules', 'type': '[AzureFirewallApplicationRule]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + priority: Optional[int] = None, + action: Optional["AzureFirewallRCAction"] = None, + rules: Optional[List["AzureFirewallApplicationRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the Azure firewall. This name can + be used to access the resource. + :paramtype name: str + :keyword priority: Priority of the application rule collection resource. + :paramtype priority: int + :keyword action: The action type of a rule collection. + :paramtype action: ~azure.mgmt.network.v2021_08_01.models.AzureFirewallRCAction + :keyword rules: Collection of rules used by a application rule collection. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallApplicationRule] + """ + super(AzureFirewallApplicationRuleCollection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.priority = priority + self.action = action + self.rules = rules + self.provisioning_state = None + + +class AzureFirewallApplicationRuleProtocol(msrest.serialization.Model): + """Properties of the application rule protocol. + + :ivar protocol_type: Protocol type. Possible values include: "Http", "Https", "Mssql". + :vartype protocol_type: str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallApplicationRuleProtocolType + :ivar port: Port number for the protocol, cannot be greater than 64000. This field is optional. + :vartype port: int + """ + + _validation = { + 'port': {'maximum': 64000, 'minimum': 0}, + } + + _attribute_map = { + 'protocol_type': {'key': 'protocolType', 'type': 'str'}, + 'port': {'key': 'port', 'type': 'int'}, + } + + def __init__( + self, + *, + protocol_type: Optional[Union[str, "AzureFirewallApplicationRuleProtocolType"]] = None, + port: Optional[int] = None, + **kwargs + ): + """ + :keyword protocol_type: Protocol type. Possible values include: "Http", "Https", "Mssql". + :paramtype protocol_type: str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallApplicationRuleProtocolType + :keyword port: Port number for the protocol, cannot be greater than 64000. This field is + optional. + :paramtype port: int + """ + super(AzureFirewallApplicationRuleProtocol, self).__init__(**kwargs) + self.protocol_type = protocol_type + self.port = port + + +class AzureFirewallFqdnTag(Resource): + """Azure Firewall FQDN Tag Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar provisioning_state: The provisioning state of the Azure firewall FQDN tag resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar fqdn_tag_name: The name of this FQDN Tag. + :vartype fqdn_tag_name: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'fqdn_tag_name': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'fqdn_tag_name': {'key': 'properties.fqdnTagName', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + """ + super(AzureFirewallFqdnTag, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.provisioning_state = None + self.fqdn_tag_name = None + + +class AzureFirewallFqdnTagListResult(msrest.serialization.Model): + """Response for ListAzureFirewallFqdnTags API service call. + + :ivar value: List of Azure Firewall FQDN Tags in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallFqdnTag] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[AzureFirewallFqdnTag]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["AzureFirewallFqdnTag"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Azure Firewall FQDN Tags in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallFqdnTag] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(AzureFirewallFqdnTagListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class AzureFirewallIPConfiguration(SubResource): + """IP configuration of an Azure Firewall. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the resource that is unique within a resource group. This name can be used + to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar private_ip_address: The Firewall Internal Load Balancer IP to be used as the next hop in + User Defined Routes. + :vartype private_ip_address: str + :ivar subnet: Reference to the subnet resource. This resource must be named + 'AzureFirewallSubnet' or 'AzureFirewallManagementSubnet'. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar public_ip_address: Reference to the PublicIP resource. This field is a mandatory input if + subnet is not null. + :vartype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the Azure firewall IP configuration + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'private_ip_address': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'SubResource'}, + 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + subnet: Optional["SubResource"] = None, + public_ip_address: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the resource that is unique within a resource group. This name can be + used to access the resource. + :paramtype name: str + :keyword subnet: Reference to the subnet resource. This resource must be named + 'AzureFirewallSubnet' or 'AzureFirewallManagementSubnet'. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword public_ip_address: Reference to the PublicIP resource. This field is a mandatory input + if subnet is not null. + :paramtype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(AzureFirewallIPConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.private_ip_address = None + self.subnet = subnet + self.public_ip_address = public_ip_address + self.provisioning_state = None + + +class AzureFirewallIpGroups(msrest.serialization.Model): + """IpGroups associated with azure firewall. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar change_number: The iteration number. + :vartype change_number: str + """ + + _validation = { + 'id': {'readonly': True}, + 'change_number': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'change_number': {'key': 'changeNumber', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(AzureFirewallIpGroups, self).__init__(**kwargs) + self.id = None + self.change_number = None + + +class AzureFirewallListResult(msrest.serialization.Model): + """Response for ListAzureFirewalls API service call. + + :ivar value: List of Azure Firewalls in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewall] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[AzureFirewall]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["AzureFirewall"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Azure Firewalls in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewall] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(AzureFirewallListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class AzureFirewallNatRCAction(msrest.serialization.Model): + """AzureFirewall NAT Rule Collection Action. + + :ivar type: The type of action. Possible values include: "Snat", "Dnat". + :vartype type: str or ~azure.mgmt.network.v2021_08_01.models.AzureFirewallNatRCActionType + """ + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "AzureFirewallNatRCActionType"]] = None, + **kwargs + ): + """ + :keyword type: The type of action. Possible values include: "Snat", "Dnat". + :paramtype type: str or ~azure.mgmt.network.v2021_08_01.models.AzureFirewallNatRCActionType + """ + super(AzureFirewallNatRCAction, self).__init__(**kwargs) + self.type = type + + +class AzureFirewallNatRule(msrest.serialization.Model): + """Properties of a NAT rule. + + :ivar name: Name of the NAT rule. + :vartype name: str + :ivar description: Description of the rule. + :vartype description: str + :ivar source_addresses: List of source IP addresses for this rule. + :vartype source_addresses: list[str] + :ivar destination_addresses: List of destination IP addresses for this rule. Supports IP + ranges, prefixes, and service tags. + :vartype destination_addresses: list[str] + :ivar destination_ports: List of destination ports. + :vartype destination_ports: list[str] + :ivar protocols: Array of AzureFirewallNetworkRuleProtocols applicable to this NAT rule. + :vartype protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallNetworkRuleProtocol] + :ivar translated_address: The translated address for this NAT rule. + :vartype translated_address: str + :ivar translated_port: The translated port for this NAT rule. + :vartype translated_port: str + :ivar translated_fqdn: The translated FQDN for this NAT rule. + :vartype translated_fqdn: str + :ivar source_ip_groups: List of source IpGroups for this rule. + :vartype source_ip_groups: list[str] + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'source_addresses': {'key': 'sourceAddresses', 'type': '[str]'}, + 'destination_addresses': {'key': 'destinationAddresses', 'type': '[str]'}, + 'destination_ports': {'key': 'destinationPorts', 'type': '[str]'}, + 'protocols': {'key': 'protocols', 'type': '[str]'}, + 'translated_address': {'key': 'translatedAddress', 'type': 'str'}, + 'translated_port': {'key': 'translatedPort', 'type': 'str'}, + 'translated_fqdn': {'key': 'translatedFqdn', 'type': 'str'}, + 'source_ip_groups': {'key': 'sourceIpGroups', 'type': '[str]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + description: Optional[str] = None, + source_addresses: Optional[List[str]] = None, + destination_addresses: Optional[List[str]] = None, + destination_ports: Optional[List[str]] = None, + protocols: Optional[List[Union[str, "AzureFirewallNetworkRuleProtocol"]]] = None, + translated_address: Optional[str] = None, + translated_port: Optional[str] = None, + translated_fqdn: Optional[str] = None, + source_ip_groups: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword name: Name of the NAT rule. + :paramtype name: str + :keyword description: Description of the rule. + :paramtype description: str + :keyword source_addresses: List of source IP addresses for this rule. + :paramtype source_addresses: list[str] + :keyword destination_addresses: List of destination IP addresses for this rule. Supports IP + ranges, prefixes, and service tags. + :paramtype destination_addresses: list[str] + :keyword destination_ports: List of destination ports. + :paramtype destination_ports: list[str] + :keyword protocols: Array of AzureFirewallNetworkRuleProtocols applicable to this NAT rule. + :paramtype protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallNetworkRuleProtocol] + :keyword translated_address: The translated address for this NAT rule. + :paramtype translated_address: str + :keyword translated_port: The translated port for this NAT rule. + :paramtype translated_port: str + :keyword translated_fqdn: The translated FQDN for this NAT rule. + :paramtype translated_fqdn: str + :keyword source_ip_groups: List of source IpGroups for this rule. + :paramtype source_ip_groups: list[str] + """ + super(AzureFirewallNatRule, self).__init__(**kwargs) + self.name = name + self.description = description + self.source_addresses = source_addresses + self.destination_addresses = destination_addresses + self.destination_ports = destination_ports + self.protocols = protocols + self.translated_address = translated_address + self.translated_port = translated_port + self.translated_fqdn = translated_fqdn + self.source_ip_groups = source_ip_groups + + +class AzureFirewallNatRuleCollection(SubResource): + """NAT rule collection resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the Azure firewall. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar priority: Priority of the NAT rule collection resource. + :vartype priority: int + :ivar action: The action type of a NAT rule collection. + :vartype action: ~azure.mgmt.network.v2021_08_01.models.AzureFirewallNatRCAction + :ivar rules: Collection of rules used by a NAT rule collection. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallNatRule] + :ivar provisioning_state: The provisioning state of the NAT rule collection resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'priority': {'maximum': 65000, 'minimum': 100}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'priority': {'key': 'properties.priority', 'type': 'int'}, + 'action': {'key': 'properties.action', 'type': 'AzureFirewallNatRCAction'}, + 'rules': {'key': 'properties.rules', 'type': '[AzureFirewallNatRule]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + priority: Optional[int] = None, + action: Optional["AzureFirewallNatRCAction"] = None, + rules: Optional[List["AzureFirewallNatRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the Azure firewall. This name can + be used to access the resource. + :paramtype name: str + :keyword priority: Priority of the NAT rule collection resource. + :paramtype priority: int + :keyword action: The action type of a NAT rule collection. + :paramtype action: ~azure.mgmt.network.v2021_08_01.models.AzureFirewallNatRCAction + :keyword rules: Collection of rules used by a NAT rule collection. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallNatRule] + """ + super(AzureFirewallNatRuleCollection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.priority = priority + self.action = action + self.rules = rules + self.provisioning_state = None + + +class AzureFirewallNetworkRule(msrest.serialization.Model): + """Properties of the network rule. + + :ivar name: Name of the network rule. + :vartype name: str + :ivar description: Description of the rule. + :vartype description: str + :ivar protocols: Array of AzureFirewallNetworkRuleProtocols. + :vartype protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallNetworkRuleProtocol] + :ivar source_addresses: List of source IP addresses for this rule. + :vartype source_addresses: list[str] + :ivar destination_addresses: List of destination IP addresses. + :vartype destination_addresses: list[str] + :ivar destination_ports: List of destination ports. + :vartype destination_ports: list[str] + :ivar destination_fqdns: List of destination FQDNs. + :vartype destination_fqdns: list[str] + :ivar source_ip_groups: List of source IpGroups for this rule. + :vartype source_ip_groups: list[str] + :ivar destination_ip_groups: List of destination IpGroups for this rule. + :vartype destination_ip_groups: list[str] + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'protocols': {'key': 'protocols', 'type': '[str]'}, + 'source_addresses': {'key': 'sourceAddresses', 'type': '[str]'}, + 'destination_addresses': {'key': 'destinationAddresses', 'type': '[str]'}, + 'destination_ports': {'key': 'destinationPorts', 'type': '[str]'}, + 'destination_fqdns': {'key': 'destinationFqdns', 'type': '[str]'}, + 'source_ip_groups': {'key': 'sourceIpGroups', 'type': '[str]'}, + 'destination_ip_groups': {'key': 'destinationIpGroups', 'type': '[str]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + description: Optional[str] = None, + protocols: Optional[List[Union[str, "AzureFirewallNetworkRuleProtocol"]]] = None, + source_addresses: Optional[List[str]] = None, + destination_addresses: Optional[List[str]] = None, + destination_ports: Optional[List[str]] = None, + destination_fqdns: Optional[List[str]] = None, + source_ip_groups: Optional[List[str]] = None, + destination_ip_groups: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword name: Name of the network rule. + :paramtype name: str + :keyword description: Description of the rule. + :paramtype description: str + :keyword protocols: Array of AzureFirewallNetworkRuleProtocols. + :paramtype protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallNetworkRuleProtocol] + :keyword source_addresses: List of source IP addresses for this rule. + :paramtype source_addresses: list[str] + :keyword destination_addresses: List of destination IP addresses. + :paramtype destination_addresses: list[str] + :keyword destination_ports: List of destination ports. + :paramtype destination_ports: list[str] + :keyword destination_fqdns: List of destination FQDNs. + :paramtype destination_fqdns: list[str] + :keyword source_ip_groups: List of source IpGroups for this rule. + :paramtype source_ip_groups: list[str] + :keyword destination_ip_groups: List of destination IpGroups for this rule. + :paramtype destination_ip_groups: list[str] + """ + super(AzureFirewallNetworkRule, self).__init__(**kwargs) + self.name = name + self.description = description + self.protocols = protocols + self.source_addresses = source_addresses + self.destination_addresses = destination_addresses + self.destination_ports = destination_ports + self.destination_fqdns = destination_fqdns + self.source_ip_groups = source_ip_groups + self.destination_ip_groups = destination_ip_groups + + +class AzureFirewallNetworkRuleCollection(SubResource): + """Network rule collection resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the Azure firewall. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar priority: Priority of the network rule collection resource. + :vartype priority: int + :ivar action: The action type of a rule collection. + :vartype action: ~azure.mgmt.network.v2021_08_01.models.AzureFirewallRCAction + :ivar rules: Collection of rules used by a network rule collection. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallNetworkRule] + :ivar provisioning_state: The provisioning state of the network rule collection resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'priority': {'maximum': 65000, 'minimum': 100}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'priority': {'key': 'properties.priority', 'type': 'int'}, + 'action': {'key': 'properties.action', 'type': 'AzureFirewallRCAction'}, + 'rules': {'key': 'properties.rules', 'type': '[AzureFirewallNetworkRule]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + priority: Optional[int] = None, + action: Optional["AzureFirewallRCAction"] = None, + rules: Optional[List["AzureFirewallNetworkRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the Azure firewall. This name can + be used to access the resource. + :paramtype name: str + :keyword priority: Priority of the network rule collection resource. + :paramtype priority: int + :keyword action: The action type of a rule collection. + :paramtype action: ~azure.mgmt.network.v2021_08_01.models.AzureFirewallRCAction + :keyword rules: Collection of rules used by a network rule collection. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallNetworkRule] + """ + super(AzureFirewallNetworkRuleCollection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.priority = priority + self.action = action + self.rules = rules + self.provisioning_state = None + + +class AzureFirewallPublicIPAddress(msrest.serialization.Model): + """Public IP Address associated with azure firewall. + + :ivar address: Public IP Address value. + :vartype address: str + """ + + _attribute_map = { + 'address': {'key': 'address', 'type': 'str'}, + } + + def __init__( + self, + *, + address: Optional[str] = None, + **kwargs + ): + """ + :keyword address: Public IP Address value. + :paramtype address: str + """ + super(AzureFirewallPublicIPAddress, self).__init__(**kwargs) + self.address = address + + +class AzureFirewallRCAction(msrest.serialization.Model): + """Properties of the AzureFirewallRCAction. + + :ivar type: The type of action. Possible values include: "Allow", "Deny". + :vartype type: str or ~azure.mgmt.network.v2021_08_01.models.AzureFirewallRCActionType + """ + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "AzureFirewallRCActionType"]] = None, + **kwargs + ): + """ + :keyword type: The type of action. Possible values include: "Allow", "Deny". + :paramtype type: str or ~azure.mgmt.network.v2021_08_01.models.AzureFirewallRCActionType + """ + super(AzureFirewallRCAction, self).__init__(**kwargs) + self.type = type + + +class AzureFirewallSku(msrest.serialization.Model): + """SKU of an Azure Firewall. + + :ivar name: Name of an Azure Firewall SKU. Possible values include: "AZFW_VNet", "AZFW_Hub". + :vartype name: str or ~azure.mgmt.network.v2021_08_01.models.AzureFirewallSkuName + :ivar tier: Tier of an Azure Firewall. Possible values include: "Standard", "Premium", "Basic". + :vartype tier: str or ~azure.mgmt.network.v2021_08_01.models.AzureFirewallSkuTier + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[Union[str, "AzureFirewallSkuName"]] = None, + tier: Optional[Union[str, "AzureFirewallSkuTier"]] = None, + **kwargs + ): + """ + :keyword name: Name of an Azure Firewall SKU. Possible values include: "AZFW_VNet", "AZFW_Hub". + :paramtype name: str or ~azure.mgmt.network.v2021_08_01.models.AzureFirewallSkuName + :keyword tier: Tier of an Azure Firewall. Possible values include: "Standard", "Premium", + "Basic". + :paramtype tier: str or ~azure.mgmt.network.v2021_08_01.models.AzureFirewallSkuTier + """ + super(AzureFirewallSku, self).__init__(**kwargs) + self.name = name + self.tier = tier + + +class AzureReachabilityReport(msrest.serialization.Model): + """Azure reachability report details. + + All required parameters must be populated in order to send to Azure. + + :ivar aggregation_level: Required. The aggregation level of Azure reachability report. Can be + Country, State or City. + :vartype aggregation_level: str + :ivar provider_location: Required. Parameters that define a geographic location. + :vartype provider_location: + ~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportLocation + :ivar reachability_report: Required. List of Azure reachability report items. + :vartype reachability_report: + list[~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportItem] + """ + + _validation = { + 'aggregation_level': {'required': True}, + 'provider_location': {'required': True}, + 'reachability_report': {'required': True}, + } + + _attribute_map = { + 'aggregation_level': {'key': 'aggregationLevel', 'type': 'str'}, + 'provider_location': {'key': 'providerLocation', 'type': 'AzureReachabilityReportLocation'}, + 'reachability_report': {'key': 'reachabilityReport', 'type': '[AzureReachabilityReportItem]'}, + } + + def __init__( + self, + *, + aggregation_level: str, + provider_location: "AzureReachabilityReportLocation", + reachability_report: List["AzureReachabilityReportItem"], + **kwargs + ): + """ + :keyword aggregation_level: Required. The aggregation level of Azure reachability report. Can + be Country, State or City. + :paramtype aggregation_level: str + :keyword provider_location: Required. Parameters that define a geographic location. + :paramtype provider_location: + ~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportLocation + :keyword reachability_report: Required. List of Azure reachability report items. + :paramtype reachability_report: + list[~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportItem] + """ + super(AzureReachabilityReport, self).__init__(**kwargs) + self.aggregation_level = aggregation_level + self.provider_location = provider_location + self.reachability_report = reachability_report + + +class AzureReachabilityReportItem(msrest.serialization.Model): + """Azure reachability report details for a given provider location. + + :ivar provider: The Internet service provider. + :vartype provider: str + :ivar azure_location: The Azure region. + :vartype azure_location: str + :ivar latencies: List of latency details for each of the time series. + :vartype latencies: + list[~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportLatencyInfo] + """ + + _attribute_map = { + 'provider': {'key': 'provider', 'type': 'str'}, + 'azure_location': {'key': 'azureLocation', 'type': 'str'}, + 'latencies': {'key': 'latencies', 'type': '[AzureReachabilityReportLatencyInfo]'}, + } + + def __init__( + self, + *, + provider: Optional[str] = None, + azure_location: Optional[str] = None, + latencies: Optional[List["AzureReachabilityReportLatencyInfo"]] = None, + **kwargs + ): + """ + :keyword provider: The Internet service provider. + :paramtype provider: str + :keyword azure_location: The Azure region. + :paramtype azure_location: str + :keyword latencies: List of latency details for each of the time series. + :paramtype latencies: + list[~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportLatencyInfo] + """ + super(AzureReachabilityReportItem, self).__init__(**kwargs) + self.provider = provider + self.azure_location = azure_location + self.latencies = latencies + + +class AzureReachabilityReportLatencyInfo(msrest.serialization.Model): + """Details on latency for a time series. + + :ivar time_stamp: The time stamp. + :vartype time_stamp: ~datetime.datetime + :ivar score: The relative latency score between 1 and 100, higher values indicating a faster + connection. + :vartype score: int + """ + + _validation = { + 'score': {'maximum': 100, 'minimum': 1}, + } + + _attribute_map = { + 'time_stamp': {'key': 'timeStamp', 'type': 'iso-8601'}, + 'score': {'key': 'score', 'type': 'int'}, + } + + def __init__( + self, + *, + time_stamp: Optional[datetime.datetime] = None, + score: Optional[int] = None, + **kwargs + ): + """ + :keyword time_stamp: The time stamp. + :paramtype time_stamp: ~datetime.datetime + :keyword score: The relative latency score between 1 and 100, higher values indicating a faster + connection. + :paramtype score: int + """ + super(AzureReachabilityReportLatencyInfo, self).__init__(**kwargs) + self.time_stamp = time_stamp + self.score = score + + +class AzureReachabilityReportLocation(msrest.serialization.Model): + """Parameters that define a geographic location. + + All required parameters must be populated in order to send to Azure. + + :ivar country: Required. The name of the country. + :vartype country: str + :ivar state: The name of the state. + :vartype state: str + :ivar city: The name of the city or town. + :vartype city: str + """ + + _validation = { + 'country': {'required': True}, + } + + _attribute_map = { + 'country': {'key': 'country', 'type': 'str'}, + 'state': {'key': 'state', 'type': 'str'}, + 'city': {'key': 'city', 'type': 'str'}, + } + + def __init__( + self, + *, + country: str, + state: Optional[str] = None, + city: Optional[str] = None, + **kwargs + ): + """ + :keyword country: Required. The name of the country. + :paramtype country: str + :keyword state: The name of the state. + :paramtype state: str + :keyword city: The name of the city or town. + :paramtype city: str + """ + super(AzureReachabilityReportLocation, self).__init__(**kwargs) + self.country = country + self.state = state + self.city = city + + +class AzureReachabilityReportParameters(msrest.serialization.Model): + """Geographic and time constraints for Azure reachability report. + + All required parameters must be populated in order to send to Azure. + + :ivar provider_location: Required. Parameters that define a geographic location. + :vartype provider_location: + ~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportLocation + :ivar providers: List of Internet service providers. + :vartype providers: list[str] + :ivar azure_locations: Optional Azure regions to scope the query to. + :vartype azure_locations: list[str] + :ivar start_time: Required. The start time for the Azure reachability report. + :vartype start_time: ~datetime.datetime + :ivar end_time: Required. The end time for the Azure reachability report. + :vartype end_time: ~datetime.datetime + """ + + _validation = { + 'provider_location': {'required': True}, + 'start_time': {'required': True}, + 'end_time': {'required': True}, + } + + _attribute_map = { + 'provider_location': {'key': 'providerLocation', 'type': 'AzureReachabilityReportLocation'}, + 'providers': {'key': 'providers', 'type': '[str]'}, + 'azure_locations': {'key': 'azureLocations', 'type': '[str]'}, + 'start_time': {'key': 'startTime', 'type': 'iso-8601'}, + 'end_time': {'key': 'endTime', 'type': 'iso-8601'}, + } + + def __init__( + self, + *, + provider_location: "AzureReachabilityReportLocation", + start_time: datetime.datetime, + end_time: datetime.datetime, + providers: Optional[List[str]] = None, + azure_locations: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword provider_location: Required. Parameters that define a geographic location. + :paramtype provider_location: + ~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportLocation + :keyword providers: List of Internet service providers. + :paramtype providers: list[str] + :keyword azure_locations: Optional Azure regions to scope the query to. + :paramtype azure_locations: list[str] + :keyword start_time: Required. The start time for the Azure reachability report. + :paramtype start_time: ~datetime.datetime + :keyword end_time: Required. The end time for the Azure reachability report. + :paramtype end_time: ~datetime.datetime + """ + super(AzureReachabilityReportParameters, self).__init__(**kwargs) + self.provider_location = provider_location + self.providers = providers + self.azure_locations = azure_locations + self.start_time = start_time + self.end_time = end_time + + +class AzureWebCategory(msrest.serialization.Model): + """Azure Web Category Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar group: The name of the group that the category belongs to. + :vartype group: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'group': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'group': {'key': 'properties.group', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + """ + super(AzureWebCategory, self).__init__(**kwargs) + self.id = id + self.name = None + self.type = None + self.etag = None + self.group = None + + +class AzureWebCategoryListResult(msrest.serialization.Model): + """Response for ListAzureWebCategories API service call. + + :ivar value: List of Azure Web Categories for a given Subscription. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.AzureWebCategory] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[AzureWebCategory]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["AzureWebCategory"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Azure Web Categories for a given Subscription. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.AzureWebCategory] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(AzureWebCategoryListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class BackendAddressInboundNatRulePortMappings(msrest.serialization.Model): + """The response for a QueryInboundNatRulePortMapping API. + + :ivar inbound_nat_rule_port_mappings: Collection of inbound NAT rule port mappings. + :vartype inbound_nat_rule_port_mappings: + list[~azure.mgmt.network.v2021_08_01.models.InboundNatRulePortMapping] + """ + + _attribute_map = { + 'inbound_nat_rule_port_mappings': {'key': 'inboundNatRulePortMappings', 'type': '[InboundNatRulePortMapping]'}, + } + + def __init__( + self, + *, + inbound_nat_rule_port_mappings: Optional[List["InboundNatRulePortMapping"]] = None, + **kwargs + ): + """ + :keyword inbound_nat_rule_port_mappings: Collection of inbound NAT rule port mappings. + :paramtype inbound_nat_rule_port_mappings: + list[~azure.mgmt.network.v2021_08_01.models.InboundNatRulePortMapping] + """ + super(BackendAddressInboundNatRulePortMappings, self).__init__(**kwargs) + self.inbound_nat_rule_port_mappings = inbound_nat_rule_port_mappings + + +class BackendAddressPool(SubResource): + """Pool of backend IP addresses. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the set of backend address pools + used by the load balancer. This name can be used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar location: The location of the backend address pool. + :vartype location: str + :ivar tunnel_interfaces: An array of gateway load balancer tunnel interfaces. + :vartype tunnel_interfaces: + list[~azure.mgmt.network.v2021_08_01.models.GatewayLoadBalancerTunnelInterface] + :ivar load_balancer_backend_addresses: An array of backend addresses. + :vartype load_balancer_backend_addresses: + list[~azure.mgmt.network.v2021_08_01.models.LoadBalancerBackendAddress] + :ivar backend_ip_configurations: An array of references to IP addresses defined in network + interfaces. + :vartype backend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration] + :ivar load_balancing_rules: An array of references to load balancing rules that use this + backend address pool. + :vartype load_balancing_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar outbound_rule: A reference to an outbound rule that uses this backend address pool. + :vartype outbound_rule: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar outbound_rules: An array of references to outbound rules that use this backend address + pool. + :vartype outbound_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar inbound_nat_rules: An array of references to inbound NAT rules that use this backend + address pool. + :vartype inbound_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar provisioning_state: The provisioning state of the backend address pool resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar drain_period_in_seconds: Amount of seconds Load Balancer waits for before sending RESET + to client and backend address. + :vartype drain_period_in_seconds: int + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'backend_ip_configurations': {'readonly': True}, + 'load_balancing_rules': {'readonly': True}, + 'outbound_rule': {'readonly': True}, + 'outbound_rules': {'readonly': True}, + 'inbound_nat_rules': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'properties.location', 'type': 'str'}, + 'tunnel_interfaces': {'key': 'properties.tunnelInterfaces', 'type': '[GatewayLoadBalancerTunnelInterface]'}, + 'load_balancer_backend_addresses': {'key': 'properties.loadBalancerBackendAddresses', 'type': '[LoadBalancerBackendAddress]'}, + 'backend_ip_configurations': {'key': 'properties.backendIPConfigurations', 'type': '[NetworkInterfaceIPConfiguration]'}, + 'load_balancing_rules': {'key': 'properties.loadBalancingRules', 'type': '[SubResource]'}, + 'outbound_rule': {'key': 'properties.outboundRule', 'type': 'SubResource'}, + 'outbound_rules': {'key': 'properties.outboundRules', 'type': '[SubResource]'}, + 'inbound_nat_rules': {'key': 'properties.inboundNatRules', 'type': '[SubResource]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'drain_period_in_seconds': {'key': 'properties.drainPeriodInSeconds', 'type': 'int'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + location: Optional[str] = None, + tunnel_interfaces: Optional[List["GatewayLoadBalancerTunnelInterface"]] = None, + load_balancer_backend_addresses: Optional[List["LoadBalancerBackendAddress"]] = None, + drain_period_in_seconds: Optional[int] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the set of backend address pools + used by the load balancer. This name can be used to access the resource. + :paramtype name: str + :keyword location: The location of the backend address pool. + :paramtype location: str + :keyword tunnel_interfaces: An array of gateway load balancer tunnel interfaces. + :paramtype tunnel_interfaces: + list[~azure.mgmt.network.v2021_08_01.models.GatewayLoadBalancerTunnelInterface] + :keyword load_balancer_backend_addresses: An array of backend addresses. + :paramtype load_balancer_backend_addresses: + list[~azure.mgmt.network.v2021_08_01.models.LoadBalancerBackendAddress] + :keyword drain_period_in_seconds: Amount of seconds Load Balancer waits for before sending + RESET to client and backend address. + :paramtype drain_period_in_seconds: int + """ + super(BackendAddressPool, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.location = location + self.tunnel_interfaces = tunnel_interfaces + self.load_balancer_backend_addresses = load_balancer_backend_addresses + self.backend_ip_configurations = None + self.load_balancing_rules = None + self.outbound_rule = None + self.outbound_rules = None + self.inbound_nat_rules = None + self.provisioning_state = None + self.drain_period_in_seconds = drain_period_in_seconds + + +class BastionActiveSession(msrest.serialization.Model): + """The session detail for a target. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar session_id: A unique id for the session. + :vartype session_id: str + :ivar start_time: The time when the session started. + :vartype start_time: any + :ivar target_subscription_id: The subscription id for the target virtual machine. + :vartype target_subscription_id: str + :ivar resource_type: The type of the resource. + :vartype resource_type: str + :ivar target_host_name: The host name of the target. + :vartype target_host_name: str + :ivar target_resource_group: The resource group of the target. + :vartype target_resource_group: str + :ivar user_name: The user name who is active on this session. + :vartype user_name: str + :ivar target_ip_address: The IP Address of the target. + :vartype target_ip_address: str + :ivar protocol: The protocol used to connect to the target. Possible values include: "SSH", + "RDP". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.BastionConnectProtocol + :ivar target_resource_id: The resource id of the target. + :vartype target_resource_id: str + :ivar session_duration_in_mins: Duration in mins the session has been active. + :vartype session_duration_in_mins: float + """ + + _validation = { + 'session_id': {'readonly': True}, + 'start_time': {'readonly': True}, + 'target_subscription_id': {'readonly': True}, + 'resource_type': {'readonly': True}, + 'target_host_name': {'readonly': True}, + 'target_resource_group': {'readonly': True}, + 'user_name': {'readonly': True}, + 'target_ip_address': {'readonly': True}, + 'protocol': {'readonly': True}, + 'target_resource_id': {'readonly': True}, + 'session_duration_in_mins': {'readonly': True}, + } + + _attribute_map = { + 'session_id': {'key': 'sessionId', 'type': 'str'}, + 'start_time': {'key': 'startTime', 'type': 'object'}, + 'target_subscription_id': {'key': 'targetSubscriptionId', 'type': 'str'}, + 'resource_type': {'key': 'resourceType', 'type': 'str'}, + 'target_host_name': {'key': 'targetHostName', 'type': 'str'}, + 'target_resource_group': {'key': 'targetResourceGroup', 'type': 'str'}, + 'user_name': {'key': 'userName', 'type': 'str'}, + 'target_ip_address': {'key': 'targetIpAddress', 'type': 'str'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'target_resource_id': {'key': 'targetResourceId', 'type': 'str'}, + 'session_duration_in_mins': {'key': 'sessionDurationInMins', 'type': 'float'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(BastionActiveSession, self).__init__(**kwargs) + self.session_id = None + self.start_time = None + self.target_subscription_id = None + self.resource_type = None + self.target_host_name = None + self.target_resource_group = None + self.user_name = None + self.target_ip_address = None + self.protocol = None + self.target_resource_id = None + self.session_duration_in_mins = None + + +class BastionActiveSessionListResult(msrest.serialization.Model): + """Response for GetActiveSessions. + + :ivar value: List of active sessions on the bastion. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.BastionActiveSession] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[BastionActiveSession]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["BastionActiveSession"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of active sessions on the bastion. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.BastionActiveSession] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(BastionActiveSessionListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class BastionHost(Resource): + """Bastion Host resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar sku: The sku of this Bastion Host. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.Sku + :ivar ip_configurations: IP configuration of the Bastion Host resource. + :vartype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.BastionHostIPConfiguration] + :ivar dns_name: FQDN for the endpoint on which bastion host is accessible. + :vartype dns_name: str + :ivar provisioning_state: The provisioning state of the bastion host resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar scale_units: The scale units for the Bastion Host resource. + :vartype scale_units: int + :ivar disable_copy_paste: Enable/Disable Copy/Paste feature of the Bastion Host resource. + :vartype disable_copy_paste: bool + :ivar enable_file_copy: Enable/Disable File Copy feature of the Bastion Host resource. + :vartype enable_file_copy: bool + :ivar enable_ip_connect: Enable/Disable IP Connect feature of the Bastion Host resource. + :vartype enable_ip_connect: bool + :ivar enable_shareable_link: Enable/Disable Shareable Link of the Bastion Host resource. + :vartype enable_shareable_link: bool + :ivar enable_tunneling: Enable/Disable Tunneling feature of the Bastion Host resource. + :vartype enable_tunneling: bool + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'scale_units': {'maximum': 50, 'minimum': 2}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'sku': {'key': 'sku', 'type': 'Sku'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[BastionHostIPConfiguration]'}, + 'dns_name': {'key': 'properties.dnsName', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'scale_units': {'key': 'properties.scaleUnits', 'type': 'int'}, + 'disable_copy_paste': {'key': 'properties.disableCopyPaste', 'type': 'bool'}, + 'enable_file_copy': {'key': 'properties.enableFileCopy', 'type': 'bool'}, + 'enable_ip_connect': {'key': 'properties.enableIpConnect', 'type': 'bool'}, + 'enable_shareable_link': {'key': 'properties.enableShareableLink', 'type': 'bool'}, + 'enable_tunneling': {'key': 'properties.enableTunneling', 'type': 'bool'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + sku: Optional["Sku"] = None, + ip_configurations: Optional[List["BastionHostIPConfiguration"]] = None, + dns_name: Optional[str] = None, + scale_units: Optional[int] = None, + disable_copy_paste: Optional[bool] = False, + enable_file_copy: Optional[bool] = False, + enable_ip_connect: Optional[bool] = False, + enable_shareable_link: Optional[bool] = False, + enable_tunneling: Optional[bool] = False, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword sku: The sku of this Bastion Host. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.Sku + :keyword ip_configurations: IP configuration of the Bastion Host resource. + :paramtype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.BastionHostIPConfiguration] + :keyword dns_name: FQDN for the endpoint on which bastion host is accessible. + :paramtype dns_name: str + :keyword scale_units: The scale units for the Bastion Host resource. + :paramtype scale_units: int + :keyword disable_copy_paste: Enable/Disable Copy/Paste feature of the Bastion Host resource. + :paramtype disable_copy_paste: bool + :keyword enable_file_copy: Enable/Disable File Copy feature of the Bastion Host resource. + :paramtype enable_file_copy: bool + :keyword enable_ip_connect: Enable/Disable IP Connect feature of the Bastion Host resource. + :paramtype enable_ip_connect: bool + :keyword enable_shareable_link: Enable/Disable Shareable Link of the Bastion Host resource. + :paramtype enable_shareable_link: bool + :keyword enable_tunneling: Enable/Disable Tunneling feature of the Bastion Host resource. + :paramtype enable_tunneling: bool + """ + super(BastionHost, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.sku = sku + self.ip_configurations = ip_configurations + self.dns_name = dns_name + self.provisioning_state = None + self.scale_units = scale_units + self.disable_copy_paste = disable_copy_paste + self.enable_file_copy = enable_file_copy + self.enable_ip_connect = enable_ip_connect + self.enable_shareable_link = enable_shareable_link + self.enable_tunneling = enable_tunneling + + +class BastionHostIPConfiguration(SubResource): + """IP configuration of an Bastion Host. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the resource that is unique within a resource group. This name can be used + to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Ip configuration type. + :vartype type: str + :ivar subnet: Reference of the subnet resource. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar public_ip_address: Reference of the PublicIP resource. + :vartype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the bastion host IP configuration resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar private_ip_allocation_method: Private IP allocation method. Possible values include: + "Static", "Dynamic". + :vartype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'SubResource'}, + 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'private_ip_allocation_method': {'key': 'properties.privateIPAllocationMethod', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + subnet: Optional["SubResource"] = None, + public_ip_address: Optional["SubResource"] = None, + private_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the resource that is unique within a resource group. This name can be + used to access the resource. + :paramtype name: str + :keyword subnet: Reference of the subnet resource. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword public_ip_address: Reference of the PublicIP resource. + :paramtype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword private_ip_allocation_method: Private IP allocation method. Possible values include: + "Static", "Dynamic". + :paramtype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + """ + super(BastionHostIPConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.subnet = subnet + self.public_ip_address = public_ip_address + self.provisioning_state = None + self.private_ip_allocation_method = private_ip_allocation_method + + +class BastionHostListResult(msrest.serialization.Model): + """Response for ListBastionHosts API service call. + + :ivar value: List of Bastion Hosts in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.BastionHost] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[BastionHost]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["BastionHost"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Bastion Hosts in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.BastionHost] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(BastionHostListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class BastionSessionDeleteResult(msrest.serialization.Model): + """Response for DisconnectActiveSessions. + + :ivar value: List of sessions with their corresponding state. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.BastionSessionState] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[BastionSessionState]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["BastionSessionState"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of sessions with their corresponding state. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.BastionSessionState] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(BastionSessionDeleteResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class BastionSessionState(msrest.serialization.Model): + """The session state detail for a target. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar session_id: A unique id for the session. + :vartype session_id: str + :ivar message: Used for extra information. + :vartype message: str + :ivar state: The state of the session. Disconnected/Failed/NotFound. + :vartype state: str + """ + + _validation = { + 'session_id': {'readonly': True}, + 'message': {'readonly': True}, + 'state': {'readonly': True}, + } + + _attribute_map = { + 'session_id': {'key': 'sessionId', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'state': {'key': 'state', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(BastionSessionState, self).__init__(**kwargs) + self.session_id = None + self.message = None + self.state = None + + +class BastionShareableLink(msrest.serialization.Model): + """Bastion Shareable Link. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar vm: Required. Reference of the virtual machine resource. + :vartype vm: ~azure.mgmt.network.v2021_08_01.models.VM + :ivar bsl: The unique Bastion Shareable Link to the virtual machine. + :vartype bsl: str + :ivar created_at: The time when the link was created. + :vartype created_at: str + :ivar message: Optional field indicating the warning or error message related to the vm in case + of partial failure. + :vartype message: str + """ + + _validation = { + 'vm': {'required': True}, + 'bsl': {'readonly': True}, + 'created_at': {'readonly': True}, + 'message': {'readonly': True}, + } + + _attribute_map = { + 'vm': {'key': 'vm', 'type': 'VM'}, + 'bsl': {'key': 'bsl', 'type': 'str'}, + 'created_at': {'key': 'createdAt', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + } + + def __init__( + self, + *, + vm: "VM", + **kwargs + ): + """ + :keyword vm: Required. Reference of the virtual machine resource. + :paramtype vm: ~azure.mgmt.network.v2021_08_01.models.VM + """ + super(BastionShareableLink, self).__init__(**kwargs) + self.vm = vm + self.bsl = None + self.created_at = None + self.message = None + + +class BastionShareableLinkListRequest(msrest.serialization.Model): + """Post request for all the Bastion Shareable Link endpoints. + + :ivar vms: List of VM references. + :vartype vms: list[~azure.mgmt.network.v2021_08_01.models.BastionShareableLink] + """ + + _attribute_map = { + 'vms': {'key': 'vms', 'type': '[BastionShareableLink]'}, + } + + def __init__( + self, + *, + vms: Optional[List["BastionShareableLink"]] = None, + **kwargs + ): + """ + :keyword vms: List of VM references. + :paramtype vms: list[~azure.mgmt.network.v2021_08_01.models.BastionShareableLink] + """ + super(BastionShareableLinkListRequest, self).__init__(**kwargs) + self.vms = vms + + +class BastionShareableLinkListResult(msrest.serialization.Model): + """Response for all the Bastion Shareable Link endpoints. + + :ivar value: List of Bastion Shareable Links for the request. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.BastionShareableLink] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[BastionShareableLink]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["BastionShareableLink"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Bastion Shareable Links for the request. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.BastionShareableLink] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(BastionShareableLinkListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class BGPCommunity(msrest.serialization.Model): + """Contains bgp community information offered in Service Community resources. + + :ivar service_supported_region: The region which the service support. e.g. For O365, region is + Global. + :vartype service_supported_region: str + :ivar community_name: The name of the bgp community. e.g. Skype. + :vartype community_name: str + :ivar community_value: The value of the bgp community. For more information: + https://docs.microsoft.com/en-us/azure/expressroute/expressroute-routing. + :vartype community_value: str + :ivar community_prefixes: The prefixes that the bgp community contains. + :vartype community_prefixes: list[str] + :ivar is_authorized_to_use: Customer is authorized to use bgp community or not. + :vartype is_authorized_to_use: bool + :ivar service_group: The service group of the bgp community contains. + :vartype service_group: str + """ + + _attribute_map = { + 'service_supported_region': {'key': 'serviceSupportedRegion', 'type': 'str'}, + 'community_name': {'key': 'communityName', 'type': 'str'}, + 'community_value': {'key': 'communityValue', 'type': 'str'}, + 'community_prefixes': {'key': 'communityPrefixes', 'type': '[str]'}, + 'is_authorized_to_use': {'key': 'isAuthorizedToUse', 'type': 'bool'}, + 'service_group': {'key': 'serviceGroup', 'type': 'str'}, + } + + def __init__( + self, + *, + service_supported_region: Optional[str] = None, + community_name: Optional[str] = None, + community_value: Optional[str] = None, + community_prefixes: Optional[List[str]] = None, + is_authorized_to_use: Optional[bool] = None, + service_group: Optional[str] = None, + **kwargs + ): + """ + :keyword service_supported_region: The region which the service support. e.g. For O365, region + is Global. + :paramtype service_supported_region: str + :keyword community_name: The name of the bgp community. e.g. Skype. + :paramtype community_name: str + :keyword community_value: The value of the bgp community. For more information: + https://docs.microsoft.com/en-us/azure/expressroute/expressroute-routing. + :paramtype community_value: str + :keyword community_prefixes: The prefixes that the bgp community contains. + :paramtype community_prefixes: list[str] + :keyword is_authorized_to_use: Customer is authorized to use bgp community or not. + :paramtype is_authorized_to_use: bool + :keyword service_group: The service group of the bgp community contains. + :paramtype service_group: str + """ + super(BGPCommunity, self).__init__(**kwargs) + self.service_supported_region = service_supported_region + self.community_name = community_name + self.community_value = community_value + self.community_prefixes = community_prefixes + self.is_authorized_to_use = is_authorized_to_use + self.service_group = service_group + + +class BgpConnection(SubResource): + """Virtual Appliance Site resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the connection. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Connection type. + :vartype type: str + :ivar peer_asn: Peer ASN. + :vartype peer_asn: long + :ivar peer_ip: Peer IP. + :vartype peer_ip: str + :ivar hub_virtual_network_connection: The reference to the HubVirtualNetworkConnection + resource. + :vartype hub_virtual_network_connection: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the resource. Possible values include: + "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar connection_state: The current state of the VirtualHub to Peer. Possible values include: + "Unknown", "Connecting", "Connected", "NotConnected". + :vartype connection_state: str or ~azure.mgmt.network.v2021_08_01.models.HubBgpConnectionStatus + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'peer_asn': {'maximum': 4294967295, 'minimum': 0}, + 'provisioning_state': {'readonly': True}, + 'connection_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'peer_asn': {'key': 'properties.peerAsn', 'type': 'long'}, + 'peer_ip': {'key': 'properties.peerIp', 'type': 'str'}, + 'hub_virtual_network_connection': {'key': 'properties.hubVirtualNetworkConnection', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'connection_state': {'key': 'properties.connectionState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + peer_asn: Optional[int] = None, + peer_ip: Optional[str] = None, + hub_virtual_network_connection: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the connection. + :paramtype name: str + :keyword peer_asn: Peer ASN. + :paramtype peer_asn: long + :keyword peer_ip: Peer IP. + :paramtype peer_ip: str + :keyword hub_virtual_network_connection: The reference to the HubVirtualNetworkConnection + resource. + :paramtype hub_virtual_network_connection: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(BgpConnection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.peer_asn = peer_asn + self.peer_ip = peer_ip + self.hub_virtual_network_connection = hub_virtual_network_connection + self.provisioning_state = None + self.connection_state = None + + +class BgpPeerStatus(msrest.serialization.Model): + """BGP peer status details. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar local_address: The virtual network gateway's local address. + :vartype local_address: str + :ivar neighbor: The remote BGP peer. + :vartype neighbor: str + :ivar asn: The autonomous system number of the remote BGP peer. + :vartype asn: long + :ivar state: The BGP peer state. Possible values include: "Unknown", "Stopped", "Idle", + "Connecting", "Connected". + :vartype state: str or ~azure.mgmt.network.v2021_08_01.models.BgpPeerState + :ivar connected_duration: For how long the peering has been up. + :vartype connected_duration: str + :ivar routes_received: The number of routes learned from this peer. + :vartype routes_received: long + :ivar messages_sent: The number of BGP messages sent. + :vartype messages_sent: long + :ivar messages_received: The number of BGP messages received. + :vartype messages_received: long + """ + + _validation = { + 'local_address': {'readonly': True}, + 'neighbor': {'readonly': True}, + 'asn': {'readonly': True, 'maximum': 4294967295, 'minimum': 0}, + 'state': {'readonly': True}, + 'connected_duration': {'readonly': True}, + 'routes_received': {'readonly': True}, + 'messages_sent': {'readonly': True}, + 'messages_received': {'readonly': True}, + } + + _attribute_map = { + 'local_address': {'key': 'localAddress', 'type': 'str'}, + 'neighbor': {'key': 'neighbor', 'type': 'str'}, + 'asn': {'key': 'asn', 'type': 'long'}, + 'state': {'key': 'state', 'type': 'str'}, + 'connected_duration': {'key': 'connectedDuration', 'type': 'str'}, + 'routes_received': {'key': 'routesReceived', 'type': 'long'}, + 'messages_sent': {'key': 'messagesSent', 'type': 'long'}, + 'messages_received': {'key': 'messagesReceived', 'type': 'long'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(BgpPeerStatus, self).__init__(**kwargs) + self.local_address = None + self.neighbor = None + self.asn = None + self.state = None + self.connected_duration = None + self.routes_received = None + self.messages_sent = None + self.messages_received = None + + +class BgpPeerStatusListResult(msrest.serialization.Model): + """Response for list BGP peer status API service call. + + :ivar value: List of BGP peers. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.BgpPeerStatus] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[BgpPeerStatus]'}, + } + + def __init__( + self, + *, + value: Optional[List["BgpPeerStatus"]] = None, + **kwargs + ): + """ + :keyword value: List of BGP peers. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.BgpPeerStatus] + """ + super(BgpPeerStatusListResult, self).__init__(**kwargs) + self.value = value + + +class BgpServiceCommunity(Resource): + """Service Community Properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar service_name: The name of the bgp community. e.g. Skype. + :vartype service_name: str + :ivar bgp_communities: A list of bgp communities. + :vartype bgp_communities: list[~azure.mgmt.network.v2021_08_01.models.BGPCommunity] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'service_name': {'key': 'properties.serviceName', 'type': 'str'}, + 'bgp_communities': {'key': 'properties.bgpCommunities', 'type': '[BGPCommunity]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + service_name: Optional[str] = None, + bgp_communities: Optional[List["BGPCommunity"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword service_name: The name of the bgp community. e.g. Skype. + :paramtype service_name: str + :keyword bgp_communities: A list of bgp communities. + :paramtype bgp_communities: list[~azure.mgmt.network.v2021_08_01.models.BGPCommunity] + """ + super(BgpServiceCommunity, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.service_name = service_name + self.bgp_communities = bgp_communities + + +class BgpServiceCommunityListResult(msrest.serialization.Model): + """Response for the ListServiceCommunity API service call. + + :ivar value: A list of service community resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.BgpServiceCommunity] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[BgpServiceCommunity]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["BgpServiceCommunity"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of service community resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.BgpServiceCommunity] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(BgpServiceCommunityListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class BgpSettings(msrest.serialization.Model): + """BGP settings details. + + :ivar asn: The BGP speaker's ASN. + :vartype asn: long + :ivar bgp_peering_address: The BGP peering address and BGP identifier of this BGP speaker. + :vartype bgp_peering_address: str + :ivar peer_weight: The weight added to routes learned from this BGP speaker. + :vartype peer_weight: int + :ivar bgp_peering_addresses: BGP peering address with IP configuration ID for virtual network + gateway. + :vartype bgp_peering_addresses: + list[~azure.mgmt.network.v2021_08_01.models.IPConfigurationBgpPeeringAddress] + """ + + _validation = { + 'asn': {'maximum': 4294967295, 'minimum': 0}, + } + + _attribute_map = { + 'asn': {'key': 'asn', 'type': 'long'}, + 'bgp_peering_address': {'key': 'bgpPeeringAddress', 'type': 'str'}, + 'peer_weight': {'key': 'peerWeight', 'type': 'int'}, + 'bgp_peering_addresses': {'key': 'bgpPeeringAddresses', 'type': '[IPConfigurationBgpPeeringAddress]'}, + } + + def __init__( + self, + *, + asn: Optional[int] = None, + bgp_peering_address: Optional[str] = None, + peer_weight: Optional[int] = None, + bgp_peering_addresses: Optional[List["IPConfigurationBgpPeeringAddress"]] = None, + **kwargs + ): + """ + :keyword asn: The BGP speaker's ASN. + :paramtype asn: long + :keyword bgp_peering_address: The BGP peering address and BGP identifier of this BGP speaker. + :paramtype bgp_peering_address: str + :keyword peer_weight: The weight added to routes learned from this BGP speaker. + :paramtype peer_weight: int + :keyword bgp_peering_addresses: BGP peering address with IP configuration ID for virtual + network gateway. + :paramtype bgp_peering_addresses: + list[~azure.mgmt.network.v2021_08_01.models.IPConfigurationBgpPeeringAddress] + """ + super(BgpSettings, self).__init__(**kwargs) + self.asn = asn + self.bgp_peering_address = bgp_peering_address + self.peer_weight = peer_weight + self.bgp_peering_addresses = bgp_peering_addresses + + +class BreakOutCategoryPolicies(msrest.serialization.Model): + """Network Virtual Appliance Sku Properties. + + :ivar allow: Flag to control breakout of o365 allow category. + :vartype allow: bool + :ivar optimize: Flag to control breakout of o365 optimize category. + :vartype optimize: bool + :ivar default: Flag to control breakout of o365 default category. + :vartype default: bool + """ + + _attribute_map = { + 'allow': {'key': 'allow', 'type': 'bool'}, + 'optimize': {'key': 'optimize', 'type': 'bool'}, + 'default': {'key': 'default', 'type': 'bool'}, + } + + def __init__( + self, + *, + allow: Optional[bool] = None, + optimize: Optional[bool] = None, + default: Optional[bool] = None, + **kwargs + ): + """ + :keyword allow: Flag to control breakout of o365 allow category. + :paramtype allow: bool + :keyword optimize: Flag to control breakout of o365 optimize category. + :paramtype optimize: bool + :keyword default: Flag to control breakout of o365 default category. + :paramtype default: bool + """ + super(BreakOutCategoryPolicies, self).__init__(**kwargs) + self.allow = allow + self.optimize = optimize + self.default = default + + +class CheckPrivateLinkServiceVisibilityRequest(msrest.serialization.Model): + """Request body of the CheckPrivateLinkServiceVisibility API service call. + + :ivar private_link_service_alias: The alias of the private link service. + :vartype private_link_service_alias: str + """ + + _attribute_map = { + 'private_link_service_alias': {'key': 'privateLinkServiceAlias', 'type': 'str'}, + } + + def __init__( + self, + *, + private_link_service_alias: Optional[str] = None, + **kwargs + ): + """ + :keyword private_link_service_alias: The alias of the private link service. + :paramtype private_link_service_alias: str + """ + super(CheckPrivateLinkServiceVisibilityRequest, self).__init__(**kwargs) + self.private_link_service_alias = private_link_service_alias + + +class CloudErrorBody(msrest.serialization.Model): + """An error response from the service. + + :ivar code: An identifier for the error. Codes are invariant and are intended to be consumed + programmatically. + :vartype code: str + :ivar message: A message describing the error, intended to be suitable for display in a user + interface. + :vartype message: str + :ivar target: The target of the particular error. For example, the name of the property in + error. + :vartype target: str + :ivar details: A list of additional details about the error. + :vartype details: list[~azure.mgmt.network.v2021_08_01.models.CloudErrorBody] + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + 'details': {'key': 'details', 'type': '[CloudErrorBody]'}, + } + + def __init__( + self, + *, + code: Optional[str] = None, + message: Optional[str] = None, + target: Optional[str] = None, + details: Optional[List["CloudErrorBody"]] = None, + **kwargs + ): + """ + :keyword code: An identifier for the error. Codes are invariant and are intended to be consumed + programmatically. + :paramtype code: str + :keyword message: A message describing the error, intended to be suitable for display in a user + interface. + :paramtype message: str + :keyword target: The target of the particular error. For example, the name of the property in + error. + :paramtype target: str + :keyword details: A list of additional details about the error. + :paramtype details: list[~azure.mgmt.network.v2021_08_01.models.CloudErrorBody] + """ + super(CloudErrorBody, self).__init__(**kwargs) + self.code = code + self.message = message + self.target = target + self.details = details + + +class Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties(msrest.serialization.Model): + """Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar principal_id: The principal id of user assigned identity. + :vartype principal_id: str + :ivar client_id: The client id of user assigned identity. + :vartype client_id: str + """ + + _validation = { + 'principal_id': {'readonly': True}, + 'client_id': {'readonly': True}, + } + + _attribute_map = { + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'client_id': {'key': 'clientId', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties, self).__init__(**kwargs) + self.principal_id = None + self.client_id = None + + +class ConnectionMonitor(msrest.serialization.Model): + """Parameters that define the operation to create a connection monitor. + + :ivar location: Connection monitor location. + :vartype location: str + :ivar tags: A set of tags. Connection monitor tags. + :vartype tags: dict[str, str] + :ivar source: Describes the source of connection monitor. + :vartype source: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSource + :ivar destination: Describes the destination of connection monitor. + :vartype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorDestination + :ivar auto_start: Determines if the connection monitor will start automatically once created. + :vartype auto_start: bool + :ivar monitoring_interval_in_seconds: Monitoring interval in seconds. + :vartype monitoring_interval_in_seconds: int + :ivar endpoints: List of connection monitor endpoints. + :vartype endpoints: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpoint] + :ivar test_configurations: List of connection monitor test configurations. + :vartype test_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfiguration] + :ivar test_groups: List of connection monitor test groups. + :vartype test_groups: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestGroup] + :ivar outputs: List of connection monitor outputs. + :vartype outputs: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorOutput] + :ivar notes: Optional notes to be associated with the connection monitor. + :vartype notes: str + """ + + _validation = { + 'monitoring_interval_in_seconds': {'maximum': 1800, 'minimum': 30}, + } + + _attribute_map = { + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'source': {'key': 'properties.source', 'type': 'ConnectionMonitorSource'}, + 'destination': {'key': 'properties.destination', 'type': 'ConnectionMonitorDestination'}, + 'auto_start': {'key': 'properties.autoStart', 'type': 'bool'}, + 'monitoring_interval_in_seconds': {'key': 'properties.monitoringIntervalInSeconds', 'type': 'int'}, + 'endpoints': {'key': 'properties.endpoints', 'type': '[ConnectionMonitorEndpoint]'}, + 'test_configurations': {'key': 'properties.testConfigurations', 'type': '[ConnectionMonitorTestConfiguration]'}, + 'test_groups': {'key': 'properties.testGroups', 'type': '[ConnectionMonitorTestGroup]'}, + 'outputs': {'key': 'properties.outputs', 'type': '[ConnectionMonitorOutput]'}, + 'notes': {'key': 'properties.notes', 'type': 'str'}, + } + + def __init__( + self, + *, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + source: Optional["ConnectionMonitorSource"] = None, + destination: Optional["ConnectionMonitorDestination"] = None, + auto_start: Optional[bool] = True, + monitoring_interval_in_seconds: Optional[int] = 60, + endpoints: Optional[List["ConnectionMonitorEndpoint"]] = None, + test_configurations: Optional[List["ConnectionMonitorTestConfiguration"]] = None, + test_groups: Optional[List["ConnectionMonitorTestGroup"]] = None, + outputs: Optional[List["ConnectionMonitorOutput"]] = None, + notes: Optional[str] = None, + **kwargs + ): + """ + :keyword location: Connection monitor location. + :paramtype location: str + :keyword tags: A set of tags. Connection monitor tags. + :paramtype tags: dict[str, str] + :keyword source: Describes the source of connection monitor. + :paramtype source: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSource + :keyword destination: Describes the destination of connection monitor. + :paramtype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorDestination + :keyword auto_start: Determines if the connection monitor will start automatically once + created. + :paramtype auto_start: bool + :keyword monitoring_interval_in_seconds: Monitoring interval in seconds. + :paramtype monitoring_interval_in_seconds: int + :keyword endpoints: List of connection monitor endpoints. + :paramtype endpoints: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpoint] + :keyword test_configurations: List of connection monitor test configurations. + :paramtype test_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfiguration] + :keyword test_groups: List of connection monitor test groups. + :paramtype test_groups: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestGroup] + :keyword outputs: List of connection monitor outputs. + :paramtype outputs: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorOutput] + :keyword notes: Optional notes to be associated with the connection monitor. + :paramtype notes: str + """ + super(ConnectionMonitor, self).__init__(**kwargs) + self.location = location + self.tags = tags + self.source = source + self.destination = destination + self.auto_start = auto_start + self.monitoring_interval_in_seconds = monitoring_interval_in_seconds + self.endpoints = endpoints + self.test_configurations = test_configurations + self.test_groups = test_groups + self.outputs = outputs + self.notes = notes + + +class ConnectionMonitorDestination(msrest.serialization.Model): + """Describes the destination of connection monitor. + + :ivar resource_id: The ID of the resource used as the destination by connection monitor. + :vartype resource_id: str + :ivar address: Address of the connection monitor destination (IP or domain name). + :vartype address: str + :ivar port: The destination port used by connection monitor. + :vartype port: int + """ + + _validation = { + 'port': {'maximum': 65535, 'minimum': 0}, + } + + _attribute_map = { + 'resource_id': {'key': 'resourceId', 'type': 'str'}, + 'address': {'key': 'address', 'type': 'str'}, + 'port': {'key': 'port', 'type': 'int'}, + } + + def __init__( + self, + *, + resource_id: Optional[str] = None, + address: Optional[str] = None, + port: Optional[int] = None, + **kwargs + ): + """ + :keyword resource_id: The ID of the resource used as the destination by connection monitor. + :paramtype resource_id: str + :keyword address: Address of the connection monitor destination (IP or domain name). + :paramtype address: str + :keyword port: The destination port used by connection monitor. + :paramtype port: int + """ + super(ConnectionMonitorDestination, self).__init__(**kwargs) + self.resource_id = resource_id + self.address = address + self.port = port + + +class ConnectionMonitorEndpoint(msrest.serialization.Model): + """Describes the connection monitor endpoint. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Required. The name of the connection monitor endpoint. + :vartype name: str + :ivar type: The endpoint type. Possible values include: "AzureVM", "AzureVNet", "AzureSubnet", + "ExternalAddress", "MMAWorkspaceMachine", "MMAWorkspaceNetwork". + :vartype type: str or ~azure.mgmt.network.v2021_08_01.models.EndpointType + :ivar resource_id: Resource ID of the connection monitor endpoint. + :vartype resource_id: str + :ivar address: Address of the connection monitor endpoint (IP or domain name). + :vartype address: str + :ivar filter: Filter for sub-items within the endpoint. + :vartype filter: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointFilter + :ivar scope: Endpoint scope. + :vartype scope: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointScope + :ivar coverage_level: Test coverage for the endpoint. Possible values include: "Default", + "Low", "BelowAverage", "Average", "AboveAverage", "Full". + :vartype coverage_level: str or ~azure.mgmt.network.v2021_08_01.models.CoverageLevel + """ + + _validation = { + 'name': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'resource_id': {'key': 'resourceId', 'type': 'str'}, + 'address': {'key': 'address', 'type': 'str'}, + 'filter': {'key': 'filter', 'type': 'ConnectionMonitorEndpointFilter'}, + 'scope': {'key': 'scope', 'type': 'ConnectionMonitorEndpointScope'}, + 'coverage_level': {'key': 'coverageLevel', 'type': 'str'}, + } + + def __init__( + self, + *, + name: str, + type: Optional[Union[str, "EndpointType"]] = None, + resource_id: Optional[str] = None, + address: Optional[str] = None, + filter: Optional["ConnectionMonitorEndpointFilter"] = None, + scope: Optional["ConnectionMonitorEndpointScope"] = None, + coverage_level: Optional[Union[str, "CoverageLevel"]] = None, + **kwargs + ): + """ + :keyword name: Required. The name of the connection monitor endpoint. + :paramtype name: str + :keyword type: The endpoint type. Possible values include: "AzureVM", "AzureVNet", + "AzureSubnet", "ExternalAddress", "MMAWorkspaceMachine", "MMAWorkspaceNetwork". + :paramtype type: str or ~azure.mgmt.network.v2021_08_01.models.EndpointType + :keyword resource_id: Resource ID of the connection monitor endpoint. + :paramtype resource_id: str + :keyword address: Address of the connection monitor endpoint (IP or domain name). + :paramtype address: str + :keyword filter: Filter for sub-items within the endpoint. + :paramtype filter: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointFilter + :keyword scope: Endpoint scope. + :paramtype scope: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointScope + :keyword coverage_level: Test coverage for the endpoint. Possible values include: "Default", + "Low", "BelowAverage", "Average", "AboveAverage", "Full". + :paramtype coverage_level: str or ~azure.mgmt.network.v2021_08_01.models.CoverageLevel + """ + super(ConnectionMonitorEndpoint, self).__init__(**kwargs) + self.name = name + self.type = type + self.resource_id = resource_id + self.address = address + self.filter = filter + self.scope = scope + self.coverage_level = coverage_level + + +class ConnectionMonitorEndpointFilter(msrest.serialization.Model): + """Describes the connection monitor endpoint filter. + + :ivar type: The behavior of the endpoint filter. Currently only 'Include' is supported. + Possible values include: "Include". + :vartype type: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointFilterType + :ivar items: List of items in the filter. + :vartype items: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointFilterItem] + """ + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'items': {'key': 'items', 'type': '[ConnectionMonitorEndpointFilterItem]'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "ConnectionMonitorEndpointFilterType"]] = None, + items: Optional[List["ConnectionMonitorEndpointFilterItem"]] = None, + **kwargs + ): + """ + :keyword type: The behavior of the endpoint filter. Currently only 'Include' is supported. + Possible values include: "Include". + :paramtype type: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointFilterType + :keyword items: List of items in the filter. + :paramtype items: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointFilterItem] + """ + super(ConnectionMonitorEndpointFilter, self).__init__(**kwargs) + self.type = type + self.items = items + + +class ConnectionMonitorEndpointFilterItem(msrest.serialization.Model): + """Describes the connection monitor endpoint filter item. + + :ivar type: The type of item included in the filter. Currently only 'AgentAddress' is + supported. Possible values include: "AgentAddress". + :vartype type: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointFilterItemType + :ivar address: The address of the filter item. + :vartype address: str + """ + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'address': {'key': 'address', 'type': 'str'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "ConnectionMonitorEndpointFilterItemType"]] = None, + address: Optional[str] = None, + **kwargs + ): + """ + :keyword type: The type of item included in the filter. Currently only 'AgentAddress' is + supported. Possible values include: "AgentAddress". + :paramtype type: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointFilterItemType + :keyword address: The address of the filter item. + :paramtype address: str + """ + super(ConnectionMonitorEndpointFilterItem, self).__init__(**kwargs) + self.type = type + self.address = address + + +class ConnectionMonitorEndpointScope(msrest.serialization.Model): + """Describes the connection monitor endpoint scope. + + :ivar include: List of items which needs to be included to the endpoint scope. + :vartype include: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointScopeItem] + :ivar exclude: List of items which needs to be excluded from the endpoint scope. + :vartype exclude: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointScopeItem] + """ + + _attribute_map = { + 'include': {'key': 'include', 'type': '[ConnectionMonitorEndpointScopeItem]'}, + 'exclude': {'key': 'exclude', 'type': '[ConnectionMonitorEndpointScopeItem]'}, + } + + def __init__( + self, + *, + include: Optional[List["ConnectionMonitorEndpointScopeItem"]] = None, + exclude: Optional[List["ConnectionMonitorEndpointScopeItem"]] = None, + **kwargs + ): + """ + :keyword include: List of items which needs to be included to the endpoint scope. + :paramtype include: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointScopeItem] + :keyword exclude: List of items which needs to be excluded from the endpoint scope. + :paramtype exclude: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpointScopeItem] + """ + super(ConnectionMonitorEndpointScope, self).__init__(**kwargs) + self.include = include + self.exclude = exclude + + +class ConnectionMonitorEndpointScopeItem(msrest.serialization.Model): + """Describes the connection monitor endpoint scope item. + + :ivar address: The address of the endpoint item. Supported types are IPv4/IPv6 subnet mask or + IPv4/IPv6 IP address. + :vartype address: str + """ + + _attribute_map = { + 'address': {'key': 'address', 'type': 'str'}, + } + + def __init__( + self, + *, + address: Optional[str] = None, + **kwargs + ): + """ + :keyword address: The address of the endpoint item. Supported types are IPv4/IPv6 subnet mask + or IPv4/IPv6 IP address. + :paramtype address: str + """ + super(ConnectionMonitorEndpointScopeItem, self).__init__(**kwargs) + self.address = address + + +class ConnectionMonitorHttpConfiguration(msrest.serialization.Model): + """Describes the HTTP configuration. + + :ivar port: The port to connect to. + :vartype port: int + :ivar method: The HTTP method to use. Possible values include: "Get", "Post". + :vartype method: str or ~azure.mgmt.network.v2021_08_01.models.HTTPConfigurationMethod + :ivar path: The path component of the URI. For instance, "/dir1/dir2". + :vartype path: str + :ivar request_headers: The HTTP headers to transmit with the request. + :vartype request_headers: list[~azure.mgmt.network.v2021_08_01.models.HTTPHeader] + :ivar valid_status_code_ranges: HTTP status codes to consider successful. For instance, + "2xx,301-304,418". + :vartype valid_status_code_ranges: list[str] + :ivar prefer_https: Value indicating whether HTTPS is preferred over HTTP in cases where the + choice is not explicit. + :vartype prefer_https: bool + """ + + _validation = { + 'port': {'maximum': 65535, 'minimum': 0}, + } + + _attribute_map = { + 'port': {'key': 'port', 'type': 'int'}, + 'method': {'key': 'method', 'type': 'str'}, + 'path': {'key': 'path', 'type': 'str'}, + 'request_headers': {'key': 'requestHeaders', 'type': '[HTTPHeader]'}, + 'valid_status_code_ranges': {'key': 'validStatusCodeRanges', 'type': '[str]'}, + 'prefer_https': {'key': 'preferHTTPS', 'type': 'bool'}, + } + + def __init__( + self, + *, + port: Optional[int] = None, + method: Optional[Union[str, "HTTPConfigurationMethod"]] = None, + path: Optional[str] = None, + request_headers: Optional[List["HTTPHeader"]] = None, + valid_status_code_ranges: Optional[List[str]] = None, + prefer_https: Optional[bool] = None, + **kwargs + ): + """ + :keyword port: The port to connect to. + :paramtype port: int + :keyword method: The HTTP method to use. Possible values include: "Get", "Post". + :paramtype method: str or ~azure.mgmt.network.v2021_08_01.models.HTTPConfigurationMethod + :keyword path: The path component of the URI. For instance, "/dir1/dir2". + :paramtype path: str + :keyword request_headers: The HTTP headers to transmit with the request. + :paramtype request_headers: list[~azure.mgmt.network.v2021_08_01.models.HTTPHeader] + :keyword valid_status_code_ranges: HTTP status codes to consider successful. For instance, + "2xx,301-304,418". + :paramtype valid_status_code_ranges: list[str] + :keyword prefer_https: Value indicating whether HTTPS is preferred over HTTP in cases where the + choice is not explicit. + :paramtype prefer_https: bool + """ + super(ConnectionMonitorHttpConfiguration, self).__init__(**kwargs) + self.port = port + self.method = method + self.path = path + self.request_headers = request_headers + self.valid_status_code_ranges = valid_status_code_ranges + self.prefer_https = prefer_https + + +class ConnectionMonitorIcmpConfiguration(msrest.serialization.Model): + """Describes the ICMP configuration. + + :ivar disable_trace_route: Value indicating whether path evaluation with trace route should be + disabled. + :vartype disable_trace_route: bool + """ + + _attribute_map = { + 'disable_trace_route': {'key': 'disableTraceRoute', 'type': 'bool'}, + } + + def __init__( + self, + *, + disable_trace_route: Optional[bool] = None, + **kwargs + ): + """ + :keyword disable_trace_route: Value indicating whether path evaluation with trace route should + be disabled. + :paramtype disable_trace_route: bool + """ + super(ConnectionMonitorIcmpConfiguration, self).__init__(**kwargs) + self.disable_trace_route = disable_trace_route + + +class ConnectionMonitorListResult(msrest.serialization.Model): + """List of connection monitors. + + :ivar value: Information about connection monitors. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorResult] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ConnectionMonitorResult]'}, + } + + def __init__( + self, + *, + value: Optional[List["ConnectionMonitorResult"]] = None, + **kwargs + ): + """ + :keyword value: Information about connection monitors. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorResult] + """ + super(ConnectionMonitorListResult, self).__init__(**kwargs) + self.value = value + + +class ConnectionMonitorOutput(msrest.serialization.Model): + """Describes a connection monitor output destination. + + :ivar type: Connection monitor output destination type. Currently, only "Workspace" is + supported. Possible values include: "Workspace". + :vartype type: str or ~azure.mgmt.network.v2021_08_01.models.OutputType + :ivar workspace_settings: Describes the settings for producing output into a log analytics + workspace. + :vartype workspace_settings: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorWorkspaceSettings + """ + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'workspace_settings': {'key': 'workspaceSettings', 'type': 'ConnectionMonitorWorkspaceSettings'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "OutputType"]] = None, + workspace_settings: Optional["ConnectionMonitorWorkspaceSettings"] = None, + **kwargs + ): + """ + :keyword type: Connection monitor output destination type. Currently, only "Workspace" is + supported. Possible values include: "Workspace". + :paramtype type: str or ~azure.mgmt.network.v2021_08_01.models.OutputType + :keyword workspace_settings: Describes the settings for producing output into a log analytics + workspace. + :paramtype workspace_settings: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorWorkspaceSettings + """ + super(ConnectionMonitorOutput, self).__init__(**kwargs) + self.type = type + self.workspace_settings = workspace_settings + + +class ConnectionMonitorParameters(msrest.serialization.Model): + """Parameters that define the operation to create a connection monitor. + + :ivar source: Describes the source of connection monitor. + :vartype source: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSource + :ivar destination: Describes the destination of connection monitor. + :vartype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorDestination + :ivar auto_start: Determines if the connection monitor will start automatically once created. + :vartype auto_start: bool + :ivar monitoring_interval_in_seconds: Monitoring interval in seconds. + :vartype monitoring_interval_in_seconds: int + :ivar endpoints: List of connection monitor endpoints. + :vartype endpoints: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpoint] + :ivar test_configurations: List of connection monitor test configurations. + :vartype test_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfiguration] + :ivar test_groups: List of connection monitor test groups. + :vartype test_groups: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestGroup] + :ivar outputs: List of connection monitor outputs. + :vartype outputs: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorOutput] + :ivar notes: Optional notes to be associated with the connection monitor. + :vartype notes: str + """ + + _validation = { + 'monitoring_interval_in_seconds': {'maximum': 1800, 'minimum': 30}, + } + + _attribute_map = { + 'source': {'key': 'source', 'type': 'ConnectionMonitorSource'}, + 'destination': {'key': 'destination', 'type': 'ConnectionMonitorDestination'}, + 'auto_start': {'key': 'autoStart', 'type': 'bool'}, + 'monitoring_interval_in_seconds': {'key': 'monitoringIntervalInSeconds', 'type': 'int'}, + 'endpoints': {'key': 'endpoints', 'type': '[ConnectionMonitorEndpoint]'}, + 'test_configurations': {'key': 'testConfigurations', 'type': '[ConnectionMonitorTestConfiguration]'}, + 'test_groups': {'key': 'testGroups', 'type': '[ConnectionMonitorTestGroup]'}, + 'outputs': {'key': 'outputs', 'type': '[ConnectionMonitorOutput]'}, + 'notes': {'key': 'notes', 'type': 'str'}, + } + + def __init__( + self, + *, + source: Optional["ConnectionMonitorSource"] = None, + destination: Optional["ConnectionMonitorDestination"] = None, + auto_start: Optional[bool] = True, + monitoring_interval_in_seconds: Optional[int] = 60, + endpoints: Optional[List["ConnectionMonitorEndpoint"]] = None, + test_configurations: Optional[List["ConnectionMonitorTestConfiguration"]] = None, + test_groups: Optional[List["ConnectionMonitorTestGroup"]] = None, + outputs: Optional[List["ConnectionMonitorOutput"]] = None, + notes: Optional[str] = None, + **kwargs + ): + """ + :keyword source: Describes the source of connection monitor. + :paramtype source: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSource + :keyword destination: Describes the destination of connection monitor. + :paramtype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorDestination + :keyword auto_start: Determines if the connection monitor will start automatically once + created. + :paramtype auto_start: bool + :keyword monitoring_interval_in_seconds: Monitoring interval in seconds. + :paramtype monitoring_interval_in_seconds: int + :keyword endpoints: List of connection monitor endpoints. + :paramtype endpoints: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpoint] + :keyword test_configurations: List of connection monitor test configurations. + :paramtype test_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfiguration] + :keyword test_groups: List of connection monitor test groups. + :paramtype test_groups: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestGroup] + :keyword outputs: List of connection monitor outputs. + :paramtype outputs: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorOutput] + :keyword notes: Optional notes to be associated with the connection monitor. + :paramtype notes: str + """ + super(ConnectionMonitorParameters, self).__init__(**kwargs) + self.source = source + self.destination = destination + self.auto_start = auto_start + self.monitoring_interval_in_seconds = monitoring_interval_in_seconds + self.endpoints = endpoints + self.test_configurations = test_configurations + self.test_groups = test_groups + self.outputs = outputs + self.notes = notes + + +class ConnectionMonitorQueryResult(msrest.serialization.Model): + """List of connection states snapshots. + + :ivar source_status: Status of connection monitor source. Possible values include: "Unknown", + "Active", "Inactive". + :vartype source_status: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSourceStatus + :ivar states: Information about connection states. + :vartype states: list[~azure.mgmt.network.v2021_08_01.models.ConnectionStateSnapshot] + """ + + _attribute_map = { + 'source_status': {'key': 'sourceStatus', 'type': 'str'}, + 'states': {'key': 'states', 'type': '[ConnectionStateSnapshot]'}, + } + + def __init__( + self, + *, + source_status: Optional[Union[str, "ConnectionMonitorSourceStatus"]] = None, + states: Optional[List["ConnectionStateSnapshot"]] = None, + **kwargs + ): + """ + :keyword source_status: Status of connection monitor source. Possible values include: + "Unknown", "Active", "Inactive". + :paramtype source_status: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSourceStatus + :keyword states: Information about connection states. + :paramtype states: list[~azure.mgmt.network.v2021_08_01.models.ConnectionStateSnapshot] + """ + super(ConnectionMonitorQueryResult, self).__init__(**kwargs) + self.source_status = source_status + self.states = states + + +class ConnectionMonitorResult(msrest.serialization.Model): + """Information about the connection monitor. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: Name of the connection monitor. + :vartype name: str + :ivar id: ID of the connection monitor. + :vartype id: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Connection monitor type. + :vartype type: str + :ivar location: Connection monitor location. + :vartype location: str + :ivar tags: A set of tags. Connection monitor tags. + :vartype tags: dict[str, str] + :ivar source: Describes the source of connection monitor. + :vartype source: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSource + :ivar destination: Describes the destination of connection monitor. + :vartype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorDestination + :ivar auto_start: Determines if the connection monitor will start automatically once created. + :vartype auto_start: bool + :ivar monitoring_interval_in_seconds: Monitoring interval in seconds. + :vartype monitoring_interval_in_seconds: int + :ivar endpoints: List of connection monitor endpoints. + :vartype endpoints: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpoint] + :ivar test_configurations: List of connection monitor test configurations. + :vartype test_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfiguration] + :ivar test_groups: List of connection monitor test groups. + :vartype test_groups: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestGroup] + :ivar outputs: List of connection monitor outputs. + :vartype outputs: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorOutput] + :ivar notes: Optional notes to be associated with the connection monitor. + :vartype notes: str + :ivar provisioning_state: The provisioning state of the connection monitor. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar start_time: The date and time when the connection monitor was started. + :vartype start_time: ~datetime.datetime + :ivar monitoring_status: The monitoring status of the connection monitor. + :vartype monitoring_status: str + :ivar connection_monitor_type: Type of connection monitor. Possible values include: + "MultiEndpoint", "SingleSourceDestination". + :vartype connection_monitor_type: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorType + """ + + _validation = { + 'name': {'readonly': True}, + 'id': {'readonly': True}, + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'monitoring_interval_in_seconds': {'maximum': 1800, 'minimum': 30}, + 'provisioning_state': {'readonly': True}, + 'start_time': {'readonly': True}, + 'monitoring_status': {'readonly': True}, + 'connection_monitor_type': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'source': {'key': 'properties.source', 'type': 'ConnectionMonitorSource'}, + 'destination': {'key': 'properties.destination', 'type': 'ConnectionMonitorDestination'}, + 'auto_start': {'key': 'properties.autoStart', 'type': 'bool'}, + 'monitoring_interval_in_seconds': {'key': 'properties.monitoringIntervalInSeconds', 'type': 'int'}, + 'endpoints': {'key': 'properties.endpoints', 'type': '[ConnectionMonitorEndpoint]'}, + 'test_configurations': {'key': 'properties.testConfigurations', 'type': '[ConnectionMonitorTestConfiguration]'}, + 'test_groups': {'key': 'properties.testGroups', 'type': '[ConnectionMonitorTestGroup]'}, + 'outputs': {'key': 'properties.outputs', 'type': '[ConnectionMonitorOutput]'}, + 'notes': {'key': 'properties.notes', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'start_time': {'key': 'properties.startTime', 'type': 'iso-8601'}, + 'monitoring_status': {'key': 'properties.monitoringStatus', 'type': 'str'}, + 'connection_monitor_type': {'key': 'properties.connectionMonitorType', 'type': 'str'}, + } + + def __init__( + self, + *, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + source: Optional["ConnectionMonitorSource"] = None, + destination: Optional["ConnectionMonitorDestination"] = None, + auto_start: Optional[bool] = True, + monitoring_interval_in_seconds: Optional[int] = 60, + endpoints: Optional[List["ConnectionMonitorEndpoint"]] = None, + test_configurations: Optional[List["ConnectionMonitorTestConfiguration"]] = None, + test_groups: Optional[List["ConnectionMonitorTestGroup"]] = None, + outputs: Optional[List["ConnectionMonitorOutput"]] = None, + notes: Optional[str] = None, + **kwargs + ): + """ + :keyword location: Connection monitor location. + :paramtype location: str + :keyword tags: A set of tags. Connection monitor tags. + :paramtype tags: dict[str, str] + :keyword source: Describes the source of connection monitor. + :paramtype source: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSource + :keyword destination: Describes the destination of connection monitor. + :paramtype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorDestination + :keyword auto_start: Determines if the connection monitor will start automatically once + created. + :paramtype auto_start: bool + :keyword monitoring_interval_in_seconds: Monitoring interval in seconds. + :paramtype monitoring_interval_in_seconds: int + :keyword endpoints: List of connection monitor endpoints. + :paramtype endpoints: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpoint] + :keyword test_configurations: List of connection monitor test configurations. + :paramtype test_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfiguration] + :keyword test_groups: List of connection monitor test groups. + :paramtype test_groups: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestGroup] + :keyword outputs: List of connection monitor outputs. + :paramtype outputs: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorOutput] + :keyword notes: Optional notes to be associated with the connection monitor. + :paramtype notes: str + """ + super(ConnectionMonitorResult, self).__init__(**kwargs) + self.name = None + self.id = None + self.etag = None + self.type = None + self.location = location + self.tags = tags + self.source = source + self.destination = destination + self.auto_start = auto_start + self.monitoring_interval_in_seconds = monitoring_interval_in_seconds + self.endpoints = endpoints + self.test_configurations = test_configurations + self.test_groups = test_groups + self.outputs = outputs + self.notes = notes + self.provisioning_state = None + self.start_time = None + self.monitoring_status = None + self.connection_monitor_type = None + + +class ConnectionMonitorResultProperties(ConnectionMonitorParameters): + """Describes the properties of a connection monitor. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar source: Describes the source of connection monitor. + :vartype source: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSource + :ivar destination: Describes the destination of connection monitor. + :vartype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorDestination + :ivar auto_start: Determines if the connection monitor will start automatically once created. + :vartype auto_start: bool + :ivar monitoring_interval_in_seconds: Monitoring interval in seconds. + :vartype monitoring_interval_in_seconds: int + :ivar endpoints: List of connection monitor endpoints. + :vartype endpoints: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpoint] + :ivar test_configurations: List of connection monitor test configurations. + :vartype test_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfiguration] + :ivar test_groups: List of connection monitor test groups. + :vartype test_groups: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestGroup] + :ivar outputs: List of connection monitor outputs. + :vartype outputs: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorOutput] + :ivar notes: Optional notes to be associated with the connection monitor. + :vartype notes: str + :ivar provisioning_state: The provisioning state of the connection monitor. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar start_time: The date and time when the connection monitor was started. + :vartype start_time: ~datetime.datetime + :ivar monitoring_status: The monitoring status of the connection monitor. + :vartype monitoring_status: str + :ivar connection_monitor_type: Type of connection monitor. Possible values include: + "MultiEndpoint", "SingleSourceDestination". + :vartype connection_monitor_type: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorType + """ + + _validation = { + 'monitoring_interval_in_seconds': {'maximum': 1800, 'minimum': 30}, + 'provisioning_state': {'readonly': True}, + 'start_time': {'readonly': True}, + 'monitoring_status': {'readonly': True}, + 'connection_monitor_type': {'readonly': True}, + } + + _attribute_map = { + 'source': {'key': 'source', 'type': 'ConnectionMonitorSource'}, + 'destination': {'key': 'destination', 'type': 'ConnectionMonitorDestination'}, + 'auto_start': {'key': 'autoStart', 'type': 'bool'}, + 'monitoring_interval_in_seconds': {'key': 'monitoringIntervalInSeconds', 'type': 'int'}, + 'endpoints': {'key': 'endpoints', 'type': '[ConnectionMonitorEndpoint]'}, + 'test_configurations': {'key': 'testConfigurations', 'type': '[ConnectionMonitorTestConfiguration]'}, + 'test_groups': {'key': 'testGroups', 'type': '[ConnectionMonitorTestGroup]'}, + 'outputs': {'key': 'outputs', 'type': '[ConnectionMonitorOutput]'}, + 'notes': {'key': 'notes', 'type': 'str'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'start_time': {'key': 'startTime', 'type': 'iso-8601'}, + 'monitoring_status': {'key': 'monitoringStatus', 'type': 'str'}, + 'connection_monitor_type': {'key': 'connectionMonitorType', 'type': 'str'}, + } + + def __init__( + self, + *, + source: Optional["ConnectionMonitorSource"] = None, + destination: Optional["ConnectionMonitorDestination"] = None, + auto_start: Optional[bool] = True, + monitoring_interval_in_seconds: Optional[int] = 60, + endpoints: Optional[List["ConnectionMonitorEndpoint"]] = None, + test_configurations: Optional[List["ConnectionMonitorTestConfiguration"]] = None, + test_groups: Optional[List["ConnectionMonitorTestGroup"]] = None, + outputs: Optional[List["ConnectionMonitorOutput"]] = None, + notes: Optional[str] = None, + **kwargs + ): + """ + :keyword source: Describes the source of connection monitor. + :paramtype source: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSource + :keyword destination: Describes the destination of connection monitor. + :paramtype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorDestination + :keyword auto_start: Determines if the connection monitor will start automatically once + created. + :paramtype auto_start: bool + :keyword monitoring_interval_in_seconds: Monitoring interval in seconds. + :paramtype monitoring_interval_in_seconds: int + :keyword endpoints: List of connection monitor endpoints. + :paramtype endpoints: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorEndpoint] + :keyword test_configurations: List of connection monitor test configurations. + :paramtype test_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfiguration] + :keyword test_groups: List of connection monitor test groups. + :paramtype test_groups: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestGroup] + :keyword outputs: List of connection monitor outputs. + :paramtype outputs: list[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorOutput] + :keyword notes: Optional notes to be associated with the connection monitor. + :paramtype notes: str + """ + super(ConnectionMonitorResultProperties, self).__init__(source=source, destination=destination, auto_start=auto_start, monitoring_interval_in_seconds=monitoring_interval_in_seconds, endpoints=endpoints, test_configurations=test_configurations, test_groups=test_groups, outputs=outputs, notes=notes, **kwargs) + self.provisioning_state = None + self.start_time = None + self.monitoring_status = None + self.connection_monitor_type = None + + +class ConnectionMonitorSource(msrest.serialization.Model): + """Describes the source of connection monitor. + + All required parameters must be populated in order to send to Azure. + + :ivar resource_id: Required. The ID of the resource used as the source by connection monitor. + :vartype resource_id: str + :ivar port: The source port used by connection monitor. + :vartype port: int + """ + + _validation = { + 'resource_id': {'required': True}, + 'port': {'maximum': 65535, 'minimum': 0}, + } + + _attribute_map = { + 'resource_id': {'key': 'resourceId', 'type': 'str'}, + 'port': {'key': 'port', 'type': 'int'}, + } + + def __init__( + self, + *, + resource_id: str, + port: Optional[int] = None, + **kwargs + ): + """ + :keyword resource_id: Required. The ID of the resource used as the source by connection + monitor. + :paramtype resource_id: str + :keyword port: The source port used by connection monitor. + :paramtype port: int + """ + super(ConnectionMonitorSource, self).__init__(**kwargs) + self.resource_id = resource_id + self.port = port + + +class ConnectionMonitorSuccessThreshold(msrest.serialization.Model): + """Describes the threshold for declaring a test successful. + + :ivar checks_failed_percent: The maximum percentage of failed checks permitted for a test to + evaluate as successful. + :vartype checks_failed_percent: int + :ivar round_trip_time_ms: The maximum round-trip time in milliseconds permitted for a test to + evaluate as successful. + :vartype round_trip_time_ms: float + """ + + _attribute_map = { + 'checks_failed_percent': {'key': 'checksFailedPercent', 'type': 'int'}, + 'round_trip_time_ms': {'key': 'roundTripTimeMs', 'type': 'float'}, + } + + def __init__( + self, + *, + checks_failed_percent: Optional[int] = None, + round_trip_time_ms: Optional[float] = None, + **kwargs + ): + """ + :keyword checks_failed_percent: The maximum percentage of failed checks permitted for a test to + evaluate as successful. + :paramtype checks_failed_percent: int + :keyword round_trip_time_ms: The maximum round-trip time in milliseconds permitted for a test + to evaluate as successful. + :paramtype round_trip_time_ms: float + """ + super(ConnectionMonitorSuccessThreshold, self).__init__(**kwargs) + self.checks_failed_percent = checks_failed_percent + self.round_trip_time_ms = round_trip_time_ms + + +class ConnectionMonitorTcpConfiguration(msrest.serialization.Model): + """Describes the TCP configuration. + + :ivar port: The port to connect to. + :vartype port: int + :ivar disable_trace_route: Value indicating whether path evaluation with trace route should be + disabled. + :vartype disable_trace_route: bool + :ivar destination_port_behavior: Destination port behavior. Possible values include: "None", + "ListenIfAvailable". + :vartype destination_port_behavior: str or + ~azure.mgmt.network.v2021_08_01.models.DestinationPortBehavior + """ + + _validation = { + 'port': {'maximum': 65535, 'minimum': 0}, + } + + _attribute_map = { + 'port': {'key': 'port', 'type': 'int'}, + 'disable_trace_route': {'key': 'disableTraceRoute', 'type': 'bool'}, + 'destination_port_behavior': {'key': 'destinationPortBehavior', 'type': 'str'}, + } + + def __init__( + self, + *, + port: Optional[int] = None, + disable_trace_route: Optional[bool] = None, + destination_port_behavior: Optional[Union[str, "DestinationPortBehavior"]] = None, + **kwargs + ): + """ + :keyword port: The port to connect to. + :paramtype port: int + :keyword disable_trace_route: Value indicating whether path evaluation with trace route should + be disabled. + :paramtype disable_trace_route: bool + :keyword destination_port_behavior: Destination port behavior. Possible values include: "None", + "ListenIfAvailable". + :paramtype destination_port_behavior: str or + ~azure.mgmt.network.v2021_08_01.models.DestinationPortBehavior + """ + super(ConnectionMonitorTcpConfiguration, self).__init__(**kwargs) + self.port = port + self.disable_trace_route = disable_trace_route + self.destination_port_behavior = destination_port_behavior + + +class ConnectionMonitorTestConfiguration(msrest.serialization.Model): + """Describes a connection monitor test configuration. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Required. The name of the connection monitor test configuration. + :vartype name: str + :ivar test_frequency_sec: The frequency of test evaluation, in seconds. + :vartype test_frequency_sec: int + :ivar protocol: Required. The protocol to use in test evaluation. Possible values include: + "Tcp", "Http", "Icmp". + :vartype protocol: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfigurationProtocol + :ivar preferred_ip_version: The preferred IP version to use in test evaluation. The connection + monitor may choose to use a different version depending on other parameters. Possible values + include: "IPv4", "IPv6". + :vartype preferred_ip_version: str or ~azure.mgmt.network.v2021_08_01.models.PreferredIPVersion + :ivar http_configuration: The parameters used to perform test evaluation over HTTP. + :vartype http_configuration: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorHttpConfiguration + :ivar tcp_configuration: The parameters used to perform test evaluation over TCP. + :vartype tcp_configuration: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTcpConfiguration + :ivar icmp_configuration: The parameters used to perform test evaluation over ICMP. + :vartype icmp_configuration: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorIcmpConfiguration + :ivar success_threshold: The threshold for declaring a test successful. + :vartype success_threshold: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSuccessThreshold + """ + + _validation = { + 'name': {'required': True}, + 'protocol': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'test_frequency_sec': {'key': 'testFrequencySec', 'type': 'int'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'preferred_ip_version': {'key': 'preferredIPVersion', 'type': 'str'}, + 'http_configuration': {'key': 'httpConfiguration', 'type': 'ConnectionMonitorHttpConfiguration'}, + 'tcp_configuration': {'key': 'tcpConfiguration', 'type': 'ConnectionMonitorTcpConfiguration'}, + 'icmp_configuration': {'key': 'icmpConfiguration', 'type': 'ConnectionMonitorIcmpConfiguration'}, + 'success_threshold': {'key': 'successThreshold', 'type': 'ConnectionMonitorSuccessThreshold'}, + } + + def __init__( + self, + *, + name: str, + protocol: Union[str, "ConnectionMonitorTestConfigurationProtocol"], + test_frequency_sec: Optional[int] = None, + preferred_ip_version: Optional[Union[str, "PreferredIPVersion"]] = None, + http_configuration: Optional["ConnectionMonitorHttpConfiguration"] = None, + tcp_configuration: Optional["ConnectionMonitorTcpConfiguration"] = None, + icmp_configuration: Optional["ConnectionMonitorIcmpConfiguration"] = None, + success_threshold: Optional["ConnectionMonitorSuccessThreshold"] = None, + **kwargs + ): + """ + :keyword name: Required. The name of the connection monitor test configuration. + :paramtype name: str + :keyword test_frequency_sec: The frequency of test evaluation, in seconds. + :paramtype test_frequency_sec: int + :keyword protocol: Required. The protocol to use in test evaluation. Possible values include: + "Tcp", "Http", "Icmp". + :paramtype protocol: str or + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTestConfigurationProtocol + :keyword preferred_ip_version: The preferred IP version to use in test evaluation. The + connection monitor may choose to use a different version depending on other parameters. + Possible values include: "IPv4", "IPv6". + :paramtype preferred_ip_version: str or + ~azure.mgmt.network.v2021_08_01.models.PreferredIPVersion + :keyword http_configuration: The parameters used to perform test evaluation over HTTP. + :paramtype http_configuration: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorHttpConfiguration + :keyword tcp_configuration: The parameters used to perform test evaluation over TCP. + :paramtype tcp_configuration: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorTcpConfiguration + :keyword icmp_configuration: The parameters used to perform test evaluation over ICMP. + :paramtype icmp_configuration: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorIcmpConfiguration + :keyword success_threshold: The threshold for declaring a test successful. + :paramtype success_threshold: + ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorSuccessThreshold + """ + super(ConnectionMonitorTestConfiguration, self).__init__(**kwargs) + self.name = name + self.test_frequency_sec = test_frequency_sec + self.protocol = protocol + self.preferred_ip_version = preferred_ip_version + self.http_configuration = http_configuration + self.tcp_configuration = tcp_configuration + self.icmp_configuration = icmp_configuration + self.success_threshold = success_threshold + + +class ConnectionMonitorTestGroup(msrest.serialization.Model): + """Describes the connection monitor test group. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Required. The name of the connection monitor test group. + :vartype name: str + :ivar disable: Value indicating whether test group is disabled. + :vartype disable: bool + :ivar test_configurations: Required. List of test configuration names. + :vartype test_configurations: list[str] + :ivar sources: Required. List of source endpoint names. + :vartype sources: list[str] + :ivar destinations: Required. List of destination endpoint names. + :vartype destinations: list[str] + """ + + _validation = { + 'name': {'required': True}, + 'test_configurations': {'required': True}, + 'sources': {'required': True}, + 'destinations': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'disable': {'key': 'disable', 'type': 'bool'}, + 'test_configurations': {'key': 'testConfigurations', 'type': '[str]'}, + 'sources': {'key': 'sources', 'type': '[str]'}, + 'destinations': {'key': 'destinations', 'type': '[str]'}, + } + + def __init__( + self, + *, + name: str, + test_configurations: List[str], + sources: List[str], + destinations: List[str], + disable: Optional[bool] = None, + **kwargs + ): + """ + :keyword name: Required. The name of the connection monitor test group. + :paramtype name: str + :keyword disable: Value indicating whether test group is disabled. + :paramtype disable: bool + :keyword test_configurations: Required. List of test configuration names. + :paramtype test_configurations: list[str] + :keyword sources: Required. List of source endpoint names. + :paramtype sources: list[str] + :keyword destinations: Required. List of destination endpoint names. + :paramtype destinations: list[str] + """ + super(ConnectionMonitorTestGroup, self).__init__(**kwargs) + self.name = name + self.disable = disable + self.test_configurations = test_configurations + self.sources = sources + self.destinations = destinations + + +class ConnectionMonitorWorkspaceSettings(msrest.serialization.Model): + """Describes the settings for producing output into a log analytics workspace. + + :ivar workspace_resource_id: Log analytics workspace resource ID. + :vartype workspace_resource_id: str + """ + + _attribute_map = { + 'workspace_resource_id': {'key': 'workspaceResourceId', 'type': 'str'}, + } + + def __init__( + self, + *, + workspace_resource_id: Optional[str] = None, + **kwargs + ): + """ + :keyword workspace_resource_id: Log analytics workspace resource ID. + :paramtype workspace_resource_id: str + """ + super(ConnectionMonitorWorkspaceSettings, self).__init__(**kwargs) + self.workspace_resource_id = workspace_resource_id + + +class ConnectionResetSharedKey(msrest.serialization.Model): + """The virtual network connection reset shared key. + + All required parameters must be populated in order to send to Azure. + + :ivar key_length: Required. The virtual network connection reset shared key length, should + between 1 and 128. + :vartype key_length: int + """ + + _validation = { + 'key_length': {'required': True, 'maximum': 128, 'minimum': 1}, + } + + _attribute_map = { + 'key_length': {'key': 'keyLength', 'type': 'int'}, + } + + def __init__( + self, + *, + key_length: int, + **kwargs + ): + """ + :keyword key_length: Required. The virtual network connection reset shared key length, should + between 1 and 128. + :paramtype key_length: int + """ + super(ConnectionResetSharedKey, self).__init__(**kwargs) + self.key_length = key_length + + +class ConnectionSharedKey(SubResource): + """Response for GetConnectionSharedKey API service call. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource ID. + :vartype id: str + :ivar value: Required. The virtual network connection shared key value. + :vartype value: str + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__( + self, + *, + value: str, + id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword value: Required. The virtual network connection shared key value. + :paramtype value: str + """ + super(ConnectionSharedKey, self).__init__(id=id, **kwargs) + self.value = value + + +class ConnectionStateSnapshot(msrest.serialization.Model): + """Connection state snapshot. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar connection_state: The connection state. Possible values include: "Reachable", + "Unreachable", "Unknown". + :vartype connection_state: str or ~azure.mgmt.network.v2021_08_01.models.ConnectionState + :ivar start_time: The start time of the connection snapshot. + :vartype start_time: ~datetime.datetime + :ivar end_time: The end time of the connection snapshot. + :vartype end_time: ~datetime.datetime + :ivar evaluation_state: Connectivity analysis evaluation state. Possible values include: + "NotStarted", "InProgress", "Completed". + :vartype evaluation_state: str or ~azure.mgmt.network.v2021_08_01.models.EvaluationState + :ivar avg_latency_in_ms: Average latency in ms. + :vartype avg_latency_in_ms: long + :ivar min_latency_in_ms: Minimum latency in ms. + :vartype min_latency_in_ms: long + :ivar max_latency_in_ms: Maximum latency in ms. + :vartype max_latency_in_ms: long + :ivar probes_sent: The number of sent probes. + :vartype probes_sent: long + :ivar probes_failed: The number of failed probes. + :vartype probes_failed: long + :ivar hops: List of hops between the source and the destination. + :vartype hops: list[~azure.mgmt.network.v2021_08_01.models.ConnectivityHop] + """ + + _validation = { + 'avg_latency_in_ms': {'maximum': 4294967295, 'minimum': 0}, + 'min_latency_in_ms': {'maximum': 4294967295, 'minimum': 0}, + 'max_latency_in_ms': {'maximum': 4294967295, 'minimum': 0}, + 'probes_sent': {'maximum': 4294967295, 'minimum': 0}, + 'probes_failed': {'maximum': 4294967295, 'minimum': 0}, + 'hops': {'readonly': True}, + } + + _attribute_map = { + 'connection_state': {'key': 'connectionState', 'type': 'str'}, + 'start_time': {'key': 'startTime', 'type': 'iso-8601'}, + 'end_time': {'key': 'endTime', 'type': 'iso-8601'}, + 'evaluation_state': {'key': 'evaluationState', 'type': 'str'}, + 'avg_latency_in_ms': {'key': 'avgLatencyInMs', 'type': 'long'}, + 'min_latency_in_ms': {'key': 'minLatencyInMs', 'type': 'long'}, + 'max_latency_in_ms': {'key': 'maxLatencyInMs', 'type': 'long'}, + 'probes_sent': {'key': 'probesSent', 'type': 'long'}, + 'probes_failed': {'key': 'probesFailed', 'type': 'long'}, + 'hops': {'key': 'hops', 'type': '[ConnectivityHop]'}, + } + + def __init__( + self, + *, + connection_state: Optional[Union[str, "ConnectionState"]] = None, + start_time: Optional[datetime.datetime] = None, + end_time: Optional[datetime.datetime] = None, + evaluation_state: Optional[Union[str, "EvaluationState"]] = None, + avg_latency_in_ms: Optional[int] = None, + min_latency_in_ms: Optional[int] = None, + max_latency_in_ms: Optional[int] = None, + probes_sent: Optional[int] = None, + probes_failed: Optional[int] = None, + **kwargs + ): + """ + :keyword connection_state: The connection state. Possible values include: "Reachable", + "Unreachable", "Unknown". + :paramtype connection_state: str or ~azure.mgmt.network.v2021_08_01.models.ConnectionState + :keyword start_time: The start time of the connection snapshot. + :paramtype start_time: ~datetime.datetime + :keyword end_time: The end time of the connection snapshot. + :paramtype end_time: ~datetime.datetime + :keyword evaluation_state: Connectivity analysis evaluation state. Possible values include: + "NotStarted", "InProgress", "Completed". + :paramtype evaluation_state: str or ~azure.mgmt.network.v2021_08_01.models.EvaluationState + :keyword avg_latency_in_ms: Average latency in ms. + :paramtype avg_latency_in_ms: long + :keyword min_latency_in_ms: Minimum latency in ms. + :paramtype min_latency_in_ms: long + :keyword max_latency_in_ms: Maximum latency in ms. + :paramtype max_latency_in_ms: long + :keyword probes_sent: The number of sent probes. + :paramtype probes_sent: long + :keyword probes_failed: The number of failed probes. + :paramtype probes_failed: long + """ + super(ConnectionStateSnapshot, self).__init__(**kwargs) + self.connection_state = connection_state + self.start_time = start_time + self.end_time = end_time + self.evaluation_state = evaluation_state + self.avg_latency_in_ms = avg_latency_in_ms + self.min_latency_in_ms = min_latency_in_ms + self.max_latency_in_ms = max_latency_in_ms + self.probes_sent = probes_sent + self.probes_failed = probes_failed + self.hops = None + + +class ConnectivityDestination(msrest.serialization.Model): + """Parameters that define destination of connection. + + :ivar resource_id: The ID of the resource to which a connection attempt will be made. + :vartype resource_id: str + :ivar address: The IP address or URI the resource to which a connection attempt will be made. + :vartype address: str + :ivar port: Port on which check connectivity will be performed. + :vartype port: int + """ + + _validation = { + 'port': {'maximum': 65535, 'minimum': 0}, + } + + _attribute_map = { + 'resource_id': {'key': 'resourceId', 'type': 'str'}, + 'address': {'key': 'address', 'type': 'str'}, + 'port': {'key': 'port', 'type': 'int'}, + } + + def __init__( + self, + *, + resource_id: Optional[str] = None, + address: Optional[str] = None, + port: Optional[int] = None, + **kwargs + ): + """ + :keyword resource_id: The ID of the resource to which a connection attempt will be made. + :paramtype resource_id: str + :keyword address: The IP address or URI the resource to which a connection attempt will be + made. + :paramtype address: str + :keyword port: Port on which check connectivity will be performed. + :paramtype port: int + """ + super(ConnectivityDestination, self).__init__(**kwargs) + self.resource_id = resource_id + self.address = address + self.port = port + + +class ConnectivityHop(msrest.serialization.Model): + """Information about a hop between the source and the destination. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar type: The type of the hop. + :vartype type: str + :ivar id: The ID of the hop. + :vartype id: str + :ivar address: The IP address of the hop. + :vartype address: str + :ivar resource_id: The ID of the resource corresponding to this hop. + :vartype resource_id: str + :ivar next_hop_ids: List of next hop identifiers. + :vartype next_hop_ids: list[str] + :ivar previous_hop_ids: List of previous hop identifiers. + :vartype previous_hop_ids: list[str] + :ivar links: List of hop links. + :vartype links: list[~azure.mgmt.network.v2021_08_01.models.HopLink] + :ivar previous_links: List of previous hop links. + :vartype previous_links: list[~azure.mgmt.network.v2021_08_01.models.HopLink] + :ivar issues: List of issues. + :vartype issues: list[~azure.mgmt.network.v2021_08_01.models.ConnectivityIssue] + """ + + _validation = { + 'type': {'readonly': True}, + 'id': {'readonly': True}, + 'address': {'readonly': True}, + 'resource_id': {'readonly': True}, + 'next_hop_ids': {'readonly': True}, + 'previous_hop_ids': {'readonly': True}, + 'links': {'readonly': True}, + 'previous_links': {'readonly': True}, + 'issues': {'readonly': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'address': {'key': 'address', 'type': 'str'}, + 'resource_id': {'key': 'resourceId', 'type': 'str'}, + 'next_hop_ids': {'key': 'nextHopIds', 'type': '[str]'}, + 'previous_hop_ids': {'key': 'previousHopIds', 'type': '[str]'}, + 'links': {'key': 'links', 'type': '[HopLink]'}, + 'previous_links': {'key': 'previousLinks', 'type': '[HopLink]'}, + 'issues': {'key': 'issues', 'type': '[ConnectivityIssue]'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(ConnectivityHop, self).__init__(**kwargs) + self.type = None + self.id = None + self.address = None + self.resource_id = None + self.next_hop_ids = None + self.previous_hop_ids = None + self.links = None + self.previous_links = None + self.issues = None + + +class ConnectivityInformation(msrest.serialization.Model): + """Information on the connectivity status. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar hops: List of hops between the source and the destination. + :vartype hops: list[~azure.mgmt.network.v2021_08_01.models.ConnectivityHop] + :ivar connection_status: The connection status. Possible values include: "Unknown", + "Connected", "Disconnected", "Degraded". + :vartype connection_status: str or ~azure.mgmt.network.v2021_08_01.models.ConnectionStatus + :ivar avg_latency_in_ms: Average latency in milliseconds. + :vartype avg_latency_in_ms: int + :ivar min_latency_in_ms: Minimum latency in milliseconds. + :vartype min_latency_in_ms: int + :ivar max_latency_in_ms: Maximum latency in milliseconds. + :vartype max_latency_in_ms: int + :ivar probes_sent: Total number of probes sent. + :vartype probes_sent: int + :ivar probes_failed: Number of failed probes. + :vartype probes_failed: int + """ + + _validation = { + 'hops': {'readonly': True}, + 'connection_status': {'readonly': True}, + 'avg_latency_in_ms': {'readonly': True}, + 'min_latency_in_ms': {'readonly': True}, + 'max_latency_in_ms': {'readonly': True}, + 'probes_sent': {'readonly': True}, + 'probes_failed': {'readonly': True}, + } + + _attribute_map = { + 'hops': {'key': 'hops', 'type': '[ConnectivityHop]'}, + 'connection_status': {'key': 'connectionStatus', 'type': 'str'}, + 'avg_latency_in_ms': {'key': 'avgLatencyInMs', 'type': 'int'}, + 'min_latency_in_ms': {'key': 'minLatencyInMs', 'type': 'int'}, + 'max_latency_in_ms': {'key': 'maxLatencyInMs', 'type': 'int'}, + 'probes_sent': {'key': 'probesSent', 'type': 'int'}, + 'probes_failed': {'key': 'probesFailed', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(ConnectivityInformation, self).__init__(**kwargs) + self.hops = None + self.connection_status = None + self.avg_latency_in_ms = None + self.min_latency_in_ms = None + self.max_latency_in_ms = None + self.probes_sent = None + self.probes_failed = None + + +class ConnectivityIssue(msrest.serialization.Model): + """Information about an issue encountered in the process of checking for connectivity. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar origin: The origin of the issue. Possible values include: "Local", "Inbound", "Outbound". + :vartype origin: str or ~azure.mgmt.network.v2021_08_01.models.Origin + :ivar severity: The severity of the issue. Possible values include: "Error", "Warning". + :vartype severity: str or ~azure.mgmt.network.v2021_08_01.models.Severity + :ivar type: The type of issue. Possible values include: "Unknown", "AgentStopped", + "GuestFirewall", "DnsResolution", "SocketBind", "NetworkSecurityRule", "UserDefinedRoute", + "PortThrottled", "Platform". + :vartype type: str or ~azure.mgmt.network.v2021_08_01.models.IssueType + :ivar context: Provides additional context on the issue. + :vartype context: list[dict[str, str]] + """ + + _validation = { + 'origin': {'readonly': True}, + 'severity': {'readonly': True}, + 'type': {'readonly': True}, + 'context': {'readonly': True}, + } + + _attribute_map = { + 'origin': {'key': 'origin', 'type': 'str'}, + 'severity': {'key': 'severity', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'context': {'key': 'context', 'type': '[{str}]'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(ConnectivityIssue, self).__init__(**kwargs) + self.origin = None + self.severity = None + self.type = None + self.context = None + + +class ConnectivityParameters(msrest.serialization.Model): + """Parameters that determine how the connectivity check will be performed. + + All required parameters must be populated in order to send to Azure. + + :ivar source: Required. The source of the connection. + :vartype source: ~azure.mgmt.network.v2021_08_01.models.ConnectivitySource + :ivar destination: Required. The destination of connection. + :vartype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectivityDestination + :ivar protocol: Network protocol. Possible values include: "Tcp", "Http", "Https", "Icmp". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.Protocol + :ivar protocol_configuration: Configuration of the protocol. + :vartype protocol_configuration: ~azure.mgmt.network.v2021_08_01.models.ProtocolConfiguration + :ivar preferred_ip_version: Preferred IP version of the connection. Possible values include: + "IPv4", "IPv6". + :vartype preferred_ip_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + """ + + _validation = { + 'source': {'required': True}, + 'destination': {'required': True}, + } + + _attribute_map = { + 'source': {'key': 'source', 'type': 'ConnectivitySource'}, + 'destination': {'key': 'destination', 'type': 'ConnectivityDestination'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'protocol_configuration': {'key': 'protocolConfiguration', 'type': 'ProtocolConfiguration'}, + 'preferred_ip_version': {'key': 'preferredIPVersion', 'type': 'str'}, + } + + def __init__( + self, + *, + source: "ConnectivitySource", + destination: "ConnectivityDestination", + protocol: Optional[Union[str, "Protocol"]] = None, + protocol_configuration: Optional["ProtocolConfiguration"] = None, + preferred_ip_version: Optional[Union[str, "IPVersion"]] = None, + **kwargs + ): + """ + :keyword source: Required. The source of the connection. + :paramtype source: ~azure.mgmt.network.v2021_08_01.models.ConnectivitySource + :keyword destination: Required. The destination of connection. + :paramtype destination: ~azure.mgmt.network.v2021_08_01.models.ConnectivityDestination + :keyword protocol: Network protocol. Possible values include: "Tcp", "Http", "Https", "Icmp". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.Protocol + :keyword protocol_configuration: Configuration of the protocol. + :paramtype protocol_configuration: ~azure.mgmt.network.v2021_08_01.models.ProtocolConfiguration + :keyword preferred_ip_version: Preferred IP version of the connection. Possible values include: + "IPv4", "IPv6". + :paramtype preferred_ip_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + """ + super(ConnectivityParameters, self).__init__(**kwargs) + self.source = source + self.destination = destination + self.protocol = protocol + self.protocol_configuration = protocol_configuration + self.preferred_ip_version = preferred_ip_version + + +class ConnectivitySource(msrest.serialization.Model): + """Parameters that define the source of the connection. + + All required parameters must be populated in order to send to Azure. + + :ivar resource_id: Required. The ID of the resource from which a connectivity check will be + initiated. + :vartype resource_id: str + :ivar port: The source port from which a connectivity check will be performed. + :vartype port: int + """ + + _validation = { + 'resource_id': {'required': True}, + 'port': {'maximum': 65535, 'minimum': 0}, + } + + _attribute_map = { + 'resource_id': {'key': 'resourceId', 'type': 'str'}, + 'port': {'key': 'port', 'type': 'int'}, + } + + def __init__( + self, + *, + resource_id: str, + port: Optional[int] = None, + **kwargs + ): + """ + :keyword resource_id: Required. The ID of the resource from which a connectivity check will be + initiated. + :paramtype resource_id: str + :keyword port: The source port from which a connectivity check will be performed. + :paramtype port: int + """ + super(ConnectivitySource, self).__init__(**kwargs) + self.resource_id = resource_id + self.port = port + + +class Container(SubResource): + """Reference to container resource in remote resource provider. + + :ivar id: Resource ID. + :vartype id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + """ + super(Container, self).__init__(id=id, **kwargs) + + +class ContainerNetworkInterface(SubResource): + """Container network interface child resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource. This name can be used to access the resource. + :vartype name: str + :ivar type: Sub Resource type. + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar container_network_interface_configuration: Container network interface configuration from + which this container network interface is created. + :vartype container_network_interface_configuration: + ~azure.mgmt.network.v2021_08_01.models.ContainerNetworkInterfaceConfiguration + :ivar container: Reference to the container to which this container network interface is + attached. + :vartype container: ~azure.mgmt.network.v2021_08_01.models.Container + :ivar ip_configurations: Reference to the ip configuration on this container nic. + :vartype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ContainerNetworkInterfaceIpConfiguration] + :ivar provisioning_state: The provisioning state of the container network interface resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'container_network_interface_configuration': {'readonly': True}, + 'ip_configurations': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'container_network_interface_configuration': {'key': 'properties.containerNetworkInterfaceConfiguration', 'type': 'ContainerNetworkInterfaceConfiguration'}, + 'container': {'key': 'properties.container', 'type': 'Container'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[ContainerNetworkInterfaceIpConfiguration]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + container: Optional["Container"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource. This name can be used to access the resource. + :paramtype name: str + :keyword container: Reference to the container to which this container network interface is + attached. + :paramtype container: ~azure.mgmt.network.v2021_08_01.models.Container + """ + super(ContainerNetworkInterface, self).__init__(id=id, **kwargs) + self.name = name + self.type = None + self.etag = None + self.container_network_interface_configuration = None + self.container = container + self.ip_configurations = None + self.provisioning_state = None + + +class ContainerNetworkInterfaceConfiguration(SubResource): + """Container network interface configuration child resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource. This name can be used to access the resource. + :vartype name: str + :ivar type: Sub Resource type. + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar ip_configurations: A list of ip configurations of the container network interface + configuration. + :vartype ip_configurations: list[~azure.mgmt.network.v2021_08_01.models.IPConfigurationProfile] + :ivar container_network_interfaces: A list of container network interfaces created from this + container network interface configuration. + :vartype container_network_interfaces: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar provisioning_state: The provisioning state of the container network interface + configuration resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[IPConfigurationProfile]'}, + 'container_network_interfaces': {'key': 'properties.containerNetworkInterfaces', 'type': '[SubResource]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + ip_configurations: Optional[List["IPConfigurationProfile"]] = None, + container_network_interfaces: Optional[List["SubResource"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource. This name can be used to access the resource. + :paramtype name: str + :keyword ip_configurations: A list of ip configurations of the container network interface + configuration. + :paramtype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.IPConfigurationProfile] + :keyword container_network_interfaces: A list of container network interfaces created from this + container network interface configuration. + :paramtype container_network_interfaces: + list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + super(ContainerNetworkInterfaceConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.type = None + self.etag = None + self.ip_configurations = ip_configurations + self.container_network_interfaces = container_network_interfaces + self.provisioning_state = None + + +class ContainerNetworkInterfaceIpConfiguration(msrest.serialization.Model): + """The ip configuration for a container network interface. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: The name of the resource. This name can be used to access the resource. + :vartype name: str + :ivar type: Sub Resource type. + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar provisioning_state: The provisioning state of the container network interface IP + configuration resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name of the resource. This name can be used to access the resource. + :paramtype name: str + """ + super(ContainerNetworkInterfaceIpConfiguration, self).__init__(**kwargs) + self.name = name + self.type = None + self.etag = None + self.provisioning_state = None + + +class CustomDnsConfigPropertiesFormat(msrest.serialization.Model): + """Contains custom Dns resolution configuration from customer. + + :ivar fqdn: Fqdn that resolves to private endpoint ip address. + :vartype fqdn: str + :ivar ip_addresses: A list of private ip addresses of the private endpoint. + :vartype ip_addresses: list[str] + """ + + _attribute_map = { + 'fqdn': {'key': 'fqdn', 'type': 'str'}, + 'ip_addresses': {'key': 'ipAddresses', 'type': '[str]'}, + } + + def __init__( + self, + *, + fqdn: Optional[str] = None, + ip_addresses: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword fqdn: Fqdn that resolves to private endpoint ip address. + :paramtype fqdn: str + :keyword ip_addresses: A list of private ip addresses of the private endpoint. + :paramtype ip_addresses: list[str] + """ + super(CustomDnsConfigPropertiesFormat, self).__init__(**kwargs) + self.fqdn = fqdn + self.ip_addresses = ip_addresses + + +class CustomIpPrefix(Resource): + """Custom IP prefix resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar extended_location: The extended location of the custom IP prefix. + :vartype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar zones: A list of availability zones denoting the IP allocated for the resource needs to + come from. + :vartype zones: list[str] + :ivar cidr: The prefix range in CIDR notation. Should include the start address and the prefix + length. + :vartype cidr: str + :ivar signed_message: Signed message for WAN validation. + :vartype signed_message: str + :ivar authorization_message: Authorization message for WAN validation. + :vartype authorization_message: str + :ivar custom_ip_prefix_parent: The Parent CustomIpPrefix for IPv6 /64 CustomIpPrefix. + :vartype custom_ip_prefix_parent: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar child_custom_ip_prefixes: The list of all Children for IPv6 /48 CustomIpPrefix. + :vartype child_custom_ip_prefixes: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar commissioned_state: The commissioned state of the Custom IP Prefix. Possible values + include: "Provisioning", "Provisioned", "Commissioning", "Commissioned", "Decommissioning", + "Deprovisioning". + :vartype commissioned_state: str or ~azure.mgmt.network.v2021_08_01.models.CommissionedState + :ivar public_ip_prefixes: The list of all referenced PublicIpPrefixes. + :vartype public_ip_prefixes: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar resource_guid: The resource GUID property of the custom IP prefix resource. + :vartype resource_guid: str + :ivar failed_reason: The reason why resource is in failed state. + :vartype failed_reason: str + :ivar provisioning_state: The provisioning state of the custom IP prefix resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'child_custom_ip_prefixes': {'readonly': True}, + 'public_ip_prefixes': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'failed_reason': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'extended_location': {'key': 'extendedLocation', 'type': 'ExtendedLocation'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'zones': {'key': 'zones', 'type': '[str]'}, + 'cidr': {'key': 'properties.cidr', 'type': 'str'}, + 'signed_message': {'key': 'properties.signedMessage', 'type': 'str'}, + 'authorization_message': {'key': 'properties.authorizationMessage', 'type': 'str'}, + 'custom_ip_prefix_parent': {'key': 'properties.customIpPrefixParent', 'type': 'SubResource'}, + 'child_custom_ip_prefixes': {'key': 'properties.childCustomIpPrefixes', 'type': '[SubResource]'}, + 'commissioned_state': {'key': 'properties.commissionedState', 'type': 'str'}, + 'public_ip_prefixes': {'key': 'properties.publicIpPrefixes', 'type': '[SubResource]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'failed_reason': {'key': 'properties.failedReason', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + extended_location: Optional["ExtendedLocation"] = None, + zones: Optional[List[str]] = None, + cidr: Optional[str] = None, + signed_message: Optional[str] = None, + authorization_message: Optional[str] = None, + custom_ip_prefix_parent: Optional["SubResource"] = None, + commissioned_state: Optional[Union[str, "CommissionedState"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword extended_location: The extended location of the custom IP prefix. + :paramtype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :keyword zones: A list of availability zones denoting the IP allocated for the resource needs + to come from. + :paramtype zones: list[str] + :keyword cidr: The prefix range in CIDR notation. Should include the start address and the + prefix length. + :paramtype cidr: str + :keyword signed_message: Signed message for WAN validation. + :paramtype signed_message: str + :keyword authorization_message: Authorization message for WAN validation. + :paramtype authorization_message: str + :keyword custom_ip_prefix_parent: The Parent CustomIpPrefix for IPv6 /64 CustomIpPrefix. + :paramtype custom_ip_prefix_parent: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword commissioned_state: The commissioned state of the Custom IP Prefix. Possible values + include: "Provisioning", "Provisioned", "Commissioning", "Commissioned", "Decommissioning", + "Deprovisioning". + :paramtype commissioned_state: str or ~azure.mgmt.network.v2021_08_01.models.CommissionedState + """ + super(CustomIpPrefix, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.extended_location = extended_location + self.etag = None + self.zones = zones + self.cidr = cidr + self.signed_message = signed_message + self.authorization_message = authorization_message + self.custom_ip_prefix_parent = custom_ip_prefix_parent + self.child_custom_ip_prefixes = None + self.commissioned_state = commissioned_state + self.public_ip_prefixes = None + self.resource_guid = None + self.failed_reason = None + self.provisioning_state = None + + +class CustomIpPrefixListResult(msrest.serialization.Model): + """Response for ListCustomIpPrefixes API service call. + + :ivar value: A list of Custom IP prefixes that exists in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[CustomIpPrefix]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["CustomIpPrefix"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of Custom IP prefixes that exists in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(CustomIpPrefixListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class DdosCustomPolicy(Resource): + """A DDoS custom policy in a resource group. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar resource_guid: The resource GUID property of the DDoS custom policy resource. It uniquely + identifies the resource, even if the user changes its name or migrate the resource across + subscriptions or resource groups. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the DDoS custom policy resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar public_ip_addresses: The list of public IPs associated with the DDoS custom policy + resource. This list is read-only. + :vartype public_ip_addresses: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar protocol_custom_settings: The protocol-specific DDoS policy customization parameters. + :vartype protocol_custom_settings: + list[~azure.mgmt.network.v2021_08_01.models.ProtocolCustomSettingsFormat] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'public_ip_addresses': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'public_ip_addresses': {'key': 'properties.publicIPAddresses', 'type': '[SubResource]'}, + 'protocol_custom_settings': {'key': 'properties.protocolCustomSettings', 'type': '[ProtocolCustomSettingsFormat]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + protocol_custom_settings: Optional[List["ProtocolCustomSettingsFormat"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword protocol_custom_settings: The protocol-specific DDoS policy customization parameters. + :paramtype protocol_custom_settings: + list[~azure.mgmt.network.v2021_08_01.models.ProtocolCustomSettingsFormat] + """ + super(DdosCustomPolicy, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.resource_guid = None + self.provisioning_state = None + self.public_ip_addresses = None + self.protocol_custom_settings = protocol_custom_settings + + +class DdosProtectionPlan(msrest.serialization.Model): + """A DDoS protection plan in a resource group. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar resource_guid: The resource GUID property of the DDoS protection plan resource. It + uniquely identifies the resource, even if the user changes its name or migrate the resource + across subscriptions or resource groups. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the DDoS protection plan resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar virtual_networks: The list of virtual networks associated with the DDoS protection plan + resource. This list is read-only. + :vartype virtual_networks: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'virtual_networks': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'virtual_networks': {'key': 'properties.virtualNetworks', 'type': '[SubResource]'}, + } + + def __init__( + self, + *, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + """ + super(DdosProtectionPlan, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.location = location + self.tags = tags + self.etag = None + self.resource_guid = None + self.provisioning_state = None + self.virtual_networks = None + + +class DdosProtectionPlanListResult(msrest.serialization.Model): + """A list of DDoS protection plans. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of DDoS protection plans. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[DdosProtectionPlan]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["DdosProtectionPlan"]] = None, + **kwargs + ): + """ + :keyword value: A list of DDoS protection plans. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan] + """ + super(DdosProtectionPlanListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class DdosSettings(msrest.serialization.Model): + """Contains the DDoS protection settings of the public IP. + + :ivar ddos_custom_policy: The DDoS custom policy associated with the public IP. + :vartype ddos_custom_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar protection_coverage: The DDoS protection policy customizability of the public IP. Only + standard coverage will have the ability to be customized. Possible values include: "Basic", + "Standard". + :vartype protection_coverage: str or + ~azure.mgmt.network.v2021_08_01.models.DdosSettingsProtectionCoverage + :ivar protected_ip: Enables DDoS protection on the public IP. + :vartype protected_ip: bool + """ + + _attribute_map = { + 'ddos_custom_policy': {'key': 'ddosCustomPolicy', 'type': 'SubResource'}, + 'protection_coverage': {'key': 'protectionCoverage', 'type': 'str'}, + 'protected_ip': {'key': 'protectedIP', 'type': 'bool'}, + } + + def __init__( + self, + *, + ddos_custom_policy: Optional["SubResource"] = None, + protection_coverage: Optional[Union[str, "DdosSettingsProtectionCoverage"]] = None, + protected_ip: Optional[bool] = None, + **kwargs + ): + """ + :keyword ddos_custom_policy: The DDoS custom policy associated with the public IP. + :paramtype ddos_custom_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword protection_coverage: The DDoS protection policy customizability of the public IP. Only + standard coverage will have the ability to be customized. Possible values include: "Basic", + "Standard". + :paramtype protection_coverage: str or + ~azure.mgmt.network.v2021_08_01.models.DdosSettingsProtectionCoverage + :keyword protected_ip: Enables DDoS protection on the public IP. + :paramtype protected_ip: bool + """ + super(DdosSettings, self).__init__(**kwargs) + self.ddos_custom_policy = ddos_custom_policy + self.protection_coverage = protection_coverage + self.protected_ip = protected_ip + + +class Delegation(SubResource): + """Details the service to which the subnet is delegated. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a subnet. This name can be used to + access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar service_name: The name of the service to whom the subnet should be delegated (e.g. + Microsoft.Sql/servers). + :vartype service_name: str + :ivar actions: The actions permitted to the service upon delegation. + :vartype actions: list[str] + :ivar provisioning_state: The provisioning state of the service delegation resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'actions': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'service_name': {'key': 'properties.serviceName', 'type': 'str'}, + 'actions': {'key': 'properties.actions', 'type': '[str]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + type: Optional[str] = None, + service_name: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a subnet. This name can be used + to access the resource. + :paramtype name: str + :keyword type: Resource type. + :paramtype type: str + :keyword service_name: The name of the service to whom the subnet should be delegated (e.g. + Microsoft.Sql/servers). + :paramtype service_name: str + """ + super(Delegation, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = type + self.service_name = service_name + self.actions = None + self.provisioning_state = None + + +class DeviceProperties(msrest.serialization.Model): + """List of properties of the device. + + :ivar device_vendor: Name of the device Vendor. + :vartype device_vendor: str + :ivar device_model: Model of the device. + :vartype device_model: str + :ivar link_speed_in_mbps: Link speed. + :vartype link_speed_in_mbps: int + """ + + _attribute_map = { + 'device_vendor': {'key': 'deviceVendor', 'type': 'str'}, + 'device_model': {'key': 'deviceModel', 'type': 'str'}, + 'link_speed_in_mbps': {'key': 'linkSpeedInMbps', 'type': 'int'}, + } + + def __init__( + self, + *, + device_vendor: Optional[str] = None, + device_model: Optional[str] = None, + link_speed_in_mbps: Optional[int] = None, + **kwargs + ): + """ + :keyword device_vendor: Name of the device Vendor. + :paramtype device_vendor: str + :keyword device_model: Model of the device. + :paramtype device_model: str + :keyword link_speed_in_mbps: Link speed. + :paramtype link_speed_in_mbps: int + """ + super(DeviceProperties, self).__init__(**kwargs) + self.device_vendor = device_vendor + self.device_model = device_model + self.link_speed_in_mbps = link_speed_in_mbps + + +class DhcpOptions(msrest.serialization.Model): + """DhcpOptions contains an array of DNS servers available to VMs deployed in the virtual network. Standard DHCP option for a subnet overrides VNET DHCP options. + + :ivar dns_servers: The list of DNS servers IP addresses. + :vartype dns_servers: list[str] + """ + + _attribute_map = { + 'dns_servers': {'key': 'dnsServers', 'type': '[str]'}, + } + + def __init__( + self, + *, + dns_servers: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword dns_servers: The list of DNS servers IP addresses. + :paramtype dns_servers: list[str] + """ + super(DhcpOptions, self).__init__(**kwargs) + self.dns_servers = dns_servers + + +class Dimension(msrest.serialization.Model): + """Dimension of the metric. + + :ivar name: The name of the dimension. + :vartype name: str + :ivar display_name: The display name of the dimension. + :vartype display_name: str + :ivar internal_name: The internal name of the dimension. + :vartype internal_name: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display_name': {'key': 'displayName', 'type': 'str'}, + 'internal_name': {'key': 'internalName', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + display_name: Optional[str] = None, + internal_name: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name of the dimension. + :paramtype name: str + :keyword display_name: The display name of the dimension. + :paramtype display_name: str + :keyword internal_name: The internal name of the dimension. + :paramtype internal_name: str + """ + super(Dimension, self).__init__(**kwargs) + self.name = name + self.display_name = display_name + self.internal_name = internal_name + + +class DnsNameAvailabilityResult(msrest.serialization.Model): + """Response for the CheckDnsNameAvailability API service call. + + :ivar available: Domain availability (True/False). + :vartype available: bool + """ + + _attribute_map = { + 'available': {'key': 'available', 'type': 'bool'}, + } + + def __init__( + self, + *, + available: Optional[bool] = None, + **kwargs + ): + """ + :keyword available: Domain availability (True/False). + :paramtype available: bool + """ + super(DnsNameAvailabilityResult, self).__init__(**kwargs) + self.available = available + + +class DnsSettings(msrest.serialization.Model): + """DNS Proxy Settings in Firewall Policy. + + :ivar servers: List of Custom DNS Servers. + :vartype servers: list[str] + :ivar enable_proxy: Enable DNS Proxy on Firewalls attached to the Firewall Policy. + :vartype enable_proxy: bool + :ivar require_proxy_for_network_rules: FQDNs in Network Rules are supported when set to true. + :vartype require_proxy_for_network_rules: bool + """ + + _attribute_map = { + 'servers': {'key': 'servers', 'type': '[str]'}, + 'enable_proxy': {'key': 'enableProxy', 'type': 'bool'}, + 'require_proxy_for_network_rules': {'key': 'requireProxyForNetworkRules', 'type': 'bool'}, + } + + def __init__( + self, + *, + servers: Optional[List[str]] = None, + enable_proxy: Optional[bool] = None, + require_proxy_for_network_rules: Optional[bool] = None, + **kwargs + ): + """ + :keyword servers: List of Custom DNS Servers. + :paramtype servers: list[str] + :keyword enable_proxy: Enable DNS Proxy on Firewalls attached to the Firewall Policy. + :paramtype enable_proxy: bool + :keyword require_proxy_for_network_rules: FQDNs in Network Rules are supported when set to + true. + :paramtype require_proxy_for_network_rules: bool + """ + super(DnsSettings, self).__init__(**kwargs) + self.servers = servers + self.enable_proxy = enable_proxy + self.require_proxy_for_network_rules = require_proxy_for_network_rules + + +class DscpConfiguration(Resource): + """Differentiated Services Code Point configuration for any given network interface. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar markings: List of markings to be used in the configuration. + :vartype markings: list[int] + :ivar source_ip_ranges: Source IP ranges. + :vartype source_ip_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosIpRange] + :ivar destination_ip_ranges: Destination IP ranges. + :vartype destination_ip_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosIpRange] + :ivar source_port_ranges: Sources port ranges. + :vartype source_port_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosPortRange] + :ivar destination_port_ranges: Destination port ranges. + :vartype destination_port_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosPortRange] + :ivar protocol: RNM supported protocol types. Possible values include: "DoNotUse", "Icmp", + "Tcp", "Udp", "Gre", "Esp", "Ah", "Vxlan", "All". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ProtocolType + :ivar qos_definition_collection: QoS object definitions. + :vartype qos_definition_collection: list[~azure.mgmt.network.v2021_08_01.models.QosDefinition] + :ivar qos_collection_id: Qos Collection ID generated by RNM. + :vartype qos_collection_id: str + :ivar associated_network_interfaces: Associated Network Interfaces to the DSCP Configuration. + :vartype associated_network_interfaces: + list[~azure.mgmt.network.v2021_08_01.models.NetworkInterface] + :ivar resource_guid: The resource GUID property of the DSCP Configuration resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the DSCP Configuration resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'qos_collection_id': {'readonly': True}, + 'associated_network_interfaces': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'markings': {'key': 'properties.markings', 'type': '[int]'}, + 'source_ip_ranges': {'key': 'properties.sourceIpRanges', 'type': '[QosIpRange]'}, + 'destination_ip_ranges': {'key': 'properties.destinationIpRanges', 'type': '[QosIpRange]'}, + 'source_port_ranges': {'key': 'properties.sourcePortRanges', 'type': '[QosPortRange]'}, + 'destination_port_ranges': {'key': 'properties.destinationPortRanges', 'type': '[QosPortRange]'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'qos_definition_collection': {'key': 'properties.qosDefinitionCollection', 'type': '[QosDefinition]'}, + 'qos_collection_id': {'key': 'properties.qosCollectionId', 'type': 'str'}, + 'associated_network_interfaces': {'key': 'properties.associatedNetworkInterfaces', 'type': '[NetworkInterface]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + markings: Optional[List[int]] = None, + source_ip_ranges: Optional[List["QosIpRange"]] = None, + destination_ip_ranges: Optional[List["QosIpRange"]] = None, + source_port_ranges: Optional[List["QosPortRange"]] = None, + destination_port_ranges: Optional[List["QosPortRange"]] = None, + protocol: Optional[Union[str, "ProtocolType"]] = None, + qos_definition_collection: Optional[List["QosDefinition"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword markings: List of markings to be used in the configuration. + :paramtype markings: list[int] + :keyword source_ip_ranges: Source IP ranges. + :paramtype source_ip_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosIpRange] + :keyword destination_ip_ranges: Destination IP ranges. + :paramtype destination_ip_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosIpRange] + :keyword source_port_ranges: Sources port ranges. + :paramtype source_port_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosPortRange] + :keyword destination_port_ranges: Destination port ranges. + :paramtype destination_port_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosPortRange] + :keyword protocol: RNM supported protocol types. Possible values include: "DoNotUse", "Icmp", + "Tcp", "Udp", "Gre", "Esp", "Ah", "Vxlan", "All". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ProtocolType + :keyword qos_definition_collection: QoS object definitions. + :paramtype qos_definition_collection: + list[~azure.mgmt.network.v2021_08_01.models.QosDefinition] + """ + super(DscpConfiguration, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.markings = markings + self.source_ip_ranges = source_ip_ranges + self.destination_ip_ranges = destination_ip_ranges + self.source_port_ranges = source_port_ranges + self.destination_port_ranges = destination_port_ranges + self.protocol = protocol + self.qos_definition_collection = qos_definition_collection + self.qos_collection_id = None + self.associated_network_interfaces = None + self.resource_guid = None + self.provisioning_state = None + + +class DscpConfigurationListResult(msrest.serialization.Model): + """Response for the DscpConfigurationList API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of dscp configurations in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.DscpConfiguration] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[DscpConfiguration]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["DscpConfiguration"]] = None, + **kwargs + ): + """ + :keyword value: A list of dscp configurations in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.DscpConfiguration] + """ + super(DscpConfigurationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class EffectiveNetworkSecurityGroup(msrest.serialization.Model): + """Effective network security group. + + :ivar network_security_group: The ID of network security group that is applied. + :vartype network_security_group: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar association: Associated resources. + :vartype association: + ~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityGroupAssociation + :ivar effective_security_rules: A collection of effective security rules. + :vartype effective_security_rules: + list[~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityRule] + :ivar tag_map: Mapping of tags to list of IP Addresses included within the tag. + :vartype tag_map: str + """ + + _attribute_map = { + 'network_security_group': {'key': 'networkSecurityGroup', 'type': 'SubResource'}, + 'association': {'key': 'association', 'type': 'EffectiveNetworkSecurityGroupAssociation'}, + 'effective_security_rules': {'key': 'effectiveSecurityRules', 'type': '[EffectiveNetworkSecurityRule]'}, + 'tag_map': {'key': 'tagMap', 'type': 'str'}, + } + + def __init__( + self, + *, + network_security_group: Optional["SubResource"] = None, + association: Optional["EffectiveNetworkSecurityGroupAssociation"] = None, + effective_security_rules: Optional[List["EffectiveNetworkSecurityRule"]] = None, + tag_map: Optional[str] = None, + **kwargs + ): + """ + :keyword network_security_group: The ID of network security group that is applied. + :paramtype network_security_group: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword association: Associated resources. + :paramtype association: + ~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityGroupAssociation + :keyword effective_security_rules: A collection of effective security rules. + :paramtype effective_security_rules: + list[~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityRule] + :keyword tag_map: Mapping of tags to list of IP Addresses included within the tag. + :paramtype tag_map: str + """ + super(EffectiveNetworkSecurityGroup, self).__init__(**kwargs) + self.network_security_group = network_security_group + self.association = association + self.effective_security_rules = effective_security_rules + self.tag_map = tag_map + + +class EffectiveNetworkSecurityGroupAssociation(msrest.serialization.Model): + """The effective network security group association. + + :ivar network_manager: The ID of the Azure network manager if assigned. + :vartype network_manager: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar subnet: The ID of the subnet if assigned. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar network_interface: The ID of the network interface if assigned. + :vartype network_interface: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + + _attribute_map = { + 'network_manager': {'key': 'networkManager', 'type': 'SubResource'}, + 'subnet': {'key': 'subnet', 'type': 'SubResource'}, + 'network_interface': {'key': 'networkInterface', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + network_manager: Optional["SubResource"] = None, + subnet: Optional["SubResource"] = None, + network_interface: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword network_manager: The ID of the Azure network manager if assigned. + :paramtype network_manager: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword subnet: The ID of the subnet if assigned. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword network_interface: The ID of the network interface if assigned. + :paramtype network_interface: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(EffectiveNetworkSecurityGroupAssociation, self).__init__(**kwargs) + self.network_manager = network_manager + self.subnet = subnet + self.network_interface = network_interface + + +class EffectiveNetworkSecurityGroupListResult(msrest.serialization.Model): + """Response for list effective network security groups API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of effective network security groups. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityGroup] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[EffectiveNetworkSecurityGroup]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["EffectiveNetworkSecurityGroup"]] = None, + **kwargs + ): + """ + :keyword value: A list of effective network security groups. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityGroup] + """ + super(EffectiveNetworkSecurityGroupListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class EffectiveNetworkSecurityRule(msrest.serialization.Model): + """Effective network security rules. + + :ivar name: The name of the security rule specified by the user (if created by the user). + :vartype name: str + :ivar protocol: The network protocol this rule applies to. Possible values include: "Tcp", + "Udp", "All". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.EffectiveSecurityRuleProtocol + :ivar source_port_range: The source port or range. + :vartype source_port_range: str + :ivar destination_port_range: The destination port or range. + :vartype destination_port_range: str + :ivar source_port_ranges: The source port ranges. Expected values include a single integer + between 0 and 65535, a range using '-' as separator (e.g. 100-400), or an asterisk (*). + :vartype source_port_ranges: list[str] + :ivar destination_port_ranges: The destination port ranges. Expected values include a single + integer between 0 and 65535, a range using '-' as separator (e.g. 100-400), or an asterisk (*). + :vartype destination_port_ranges: list[str] + :ivar source_address_prefix: The source address prefix. + :vartype source_address_prefix: str + :ivar destination_address_prefix: The destination address prefix. + :vartype destination_address_prefix: str + :ivar source_address_prefixes: The source address prefixes. Expected values include CIDR IP + ranges, Default Tags (VirtualNetwork, AzureLoadBalancer, Internet), System Tags, and the + asterisk (*). + :vartype source_address_prefixes: list[str] + :ivar destination_address_prefixes: The destination address prefixes. Expected values include + CIDR IP ranges, Default Tags (VirtualNetwork, AzureLoadBalancer, Internet), System Tags, and + the asterisk (*). + :vartype destination_address_prefixes: list[str] + :ivar expanded_source_address_prefix: The expanded source address prefix. + :vartype expanded_source_address_prefix: list[str] + :ivar expanded_destination_address_prefix: Expanded destination address prefix. + :vartype expanded_destination_address_prefix: list[str] + :ivar access: Whether network traffic is allowed or denied. Possible values include: "Allow", + "Deny". + :vartype access: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleAccess + :ivar priority: The priority of the rule. + :vartype priority: int + :ivar direction: The direction of the rule. Possible values include: "Inbound", "Outbound". + :vartype direction: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleDirection + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'source_port_range': {'key': 'sourcePortRange', 'type': 'str'}, + 'destination_port_range': {'key': 'destinationPortRange', 'type': 'str'}, + 'source_port_ranges': {'key': 'sourcePortRanges', 'type': '[str]'}, + 'destination_port_ranges': {'key': 'destinationPortRanges', 'type': '[str]'}, + 'source_address_prefix': {'key': 'sourceAddressPrefix', 'type': 'str'}, + 'destination_address_prefix': {'key': 'destinationAddressPrefix', 'type': 'str'}, + 'source_address_prefixes': {'key': 'sourceAddressPrefixes', 'type': '[str]'}, + 'destination_address_prefixes': {'key': 'destinationAddressPrefixes', 'type': '[str]'}, + 'expanded_source_address_prefix': {'key': 'expandedSourceAddressPrefix', 'type': '[str]'}, + 'expanded_destination_address_prefix': {'key': 'expandedDestinationAddressPrefix', 'type': '[str]'}, + 'access': {'key': 'access', 'type': 'str'}, + 'priority': {'key': 'priority', 'type': 'int'}, + 'direction': {'key': 'direction', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + protocol: Optional[Union[str, "EffectiveSecurityRuleProtocol"]] = None, + source_port_range: Optional[str] = None, + destination_port_range: Optional[str] = None, + source_port_ranges: Optional[List[str]] = None, + destination_port_ranges: Optional[List[str]] = None, + source_address_prefix: Optional[str] = None, + destination_address_prefix: Optional[str] = None, + source_address_prefixes: Optional[List[str]] = None, + destination_address_prefixes: Optional[List[str]] = None, + expanded_source_address_prefix: Optional[List[str]] = None, + expanded_destination_address_prefix: Optional[List[str]] = None, + access: Optional[Union[str, "SecurityRuleAccess"]] = None, + priority: Optional[int] = None, + direction: Optional[Union[str, "SecurityRuleDirection"]] = None, + **kwargs + ): + """ + :keyword name: The name of the security rule specified by the user (if created by the user). + :paramtype name: str + :keyword protocol: The network protocol this rule applies to. Possible values include: "Tcp", + "Udp", "All". + :paramtype protocol: str or + ~azure.mgmt.network.v2021_08_01.models.EffectiveSecurityRuleProtocol + :keyword source_port_range: The source port or range. + :paramtype source_port_range: str + :keyword destination_port_range: The destination port or range. + :paramtype destination_port_range: str + :keyword source_port_ranges: The source port ranges. Expected values include a single integer + between 0 and 65535, a range using '-' as separator (e.g. 100-400), or an asterisk (*). + :paramtype source_port_ranges: list[str] + :keyword destination_port_ranges: The destination port ranges. Expected values include a single + integer between 0 and 65535, a range using '-' as separator (e.g. 100-400), or an asterisk (*). + :paramtype destination_port_ranges: list[str] + :keyword source_address_prefix: The source address prefix. + :paramtype source_address_prefix: str + :keyword destination_address_prefix: The destination address prefix. + :paramtype destination_address_prefix: str + :keyword source_address_prefixes: The source address prefixes. Expected values include CIDR IP + ranges, Default Tags (VirtualNetwork, AzureLoadBalancer, Internet), System Tags, and the + asterisk (*). + :paramtype source_address_prefixes: list[str] + :keyword destination_address_prefixes: The destination address prefixes. Expected values + include CIDR IP ranges, Default Tags (VirtualNetwork, AzureLoadBalancer, Internet), System + Tags, and the asterisk (*). + :paramtype destination_address_prefixes: list[str] + :keyword expanded_source_address_prefix: The expanded source address prefix. + :paramtype expanded_source_address_prefix: list[str] + :keyword expanded_destination_address_prefix: Expanded destination address prefix. + :paramtype expanded_destination_address_prefix: list[str] + :keyword access: Whether network traffic is allowed or denied. Possible values include: + "Allow", "Deny". + :paramtype access: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleAccess + :keyword priority: The priority of the rule. + :paramtype priority: int + :keyword direction: The direction of the rule. Possible values include: "Inbound", "Outbound". + :paramtype direction: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleDirection + """ + super(EffectiveNetworkSecurityRule, self).__init__(**kwargs) + self.name = name + self.protocol = protocol + self.source_port_range = source_port_range + self.destination_port_range = destination_port_range + self.source_port_ranges = source_port_ranges + self.destination_port_ranges = destination_port_ranges + self.source_address_prefix = source_address_prefix + self.destination_address_prefix = destination_address_prefix + self.source_address_prefixes = source_address_prefixes + self.destination_address_prefixes = destination_address_prefixes + self.expanded_source_address_prefix = expanded_source_address_prefix + self.expanded_destination_address_prefix = expanded_destination_address_prefix + self.access = access + self.priority = priority + self.direction = direction + + +class EffectiveRoute(msrest.serialization.Model): + """Effective Route. + + :ivar name: The name of the user defined route. This is optional. + :vartype name: str + :ivar disable_bgp_route_propagation: If true, on-premises routes are not propagated to the + network interfaces in the subnet. + :vartype disable_bgp_route_propagation: bool + :ivar source: Who created the route. Possible values include: "Unknown", "User", + "VirtualNetworkGateway", "Default". + :vartype source: str or ~azure.mgmt.network.v2021_08_01.models.EffectiveRouteSource + :ivar state: The value of effective route. Possible values include: "Active", "Invalid". + :vartype state: str or ~azure.mgmt.network.v2021_08_01.models.EffectiveRouteState + :ivar address_prefix: The address prefixes of the effective routes in CIDR notation. + :vartype address_prefix: list[str] + :ivar next_hop_ip_address: The IP address of the next hop of the effective route. + :vartype next_hop_ip_address: list[str] + :ivar next_hop_type: The type of Azure hop the packet should be sent to. Possible values + include: "VirtualNetworkGateway", "VnetLocal", "Internet", "VirtualAppliance", "None". + :vartype next_hop_type: str or ~azure.mgmt.network.v2021_08_01.models.RouteNextHopType + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'disable_bgp_route_propagation': {'key': 'disableBgpRoutePropagation', 'type': 'bool'}, + 'source': {'key': 'source', 'type': 'str'}, + 'state': {'key': 'state', 'type': 'str'}, + 'address_prefix': {'key': 'addressPrefix', 'type': '[str]'}, + 'next_hop_ip_address': {'key': 'nextHopIpAddress', 'type': '[str]'}, + 'next_hop_type': {'key': 'nextHopType', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + disable_bgp_route_propagation: Optional[bool] = None, + source: Optional[Union[str, "EffectiveRouteSource"]] = None, + state: Optional[Union[str, "EffectiveRouteState"]] = None, + address_prefix: Optional[List[str]] = None, + next_hop_ip_address: Optional[List[str]] = None, + next_hop_type: Optional[Union[str, "RouteNextHopType"]] = None, + **kwargs + ): + """ + :keyword name: The name of the user defined route. This is optional. + :paramtype name: str + :keyword disable_bgp_route_propagation: If true, on-premises routes are not propagated to the + network interfaces in the subnet. + :paramtype disable_bgp_route_propagation: bool + :keyword source: Who created the route. Possible values include: "Unknown", "User", + "VirtualNetworkGateway", "Default". + :paramtype source: str or ~azure.mgmt.network.v2021_08_01.models.EffectiveRouteSource + :keyword state: The value of effective route. Possible values include: "Active", "Invalid". + :paramtype state: str or ~azure.mgmt.network.v2021_08_01.models.EffectiveRouteState + :keyword address_prefix: The address prefixes of the effective routes in CIDR notation. + :paramtype address_prefix: list[str] + :keyword next_hop_ip_address: The IP address of the next hop of the effective route. + :paramtype next_hop_ip_address: list[str] + :keyword next_hop_type: The type of Azure hop the packet should be sent to. Possible values + include: "VirtualNetworkGateway", "VnetLocal", "Internet", "VirtualAppliance", "None". + :paramtype next_hop_type: str or ~azure.mgmt.network.v2021_08_01.models.RouteNextHopType + """ + super(EffectiveRoute, self).__init__(**kwargs) + self.name = name + self.disable_bgp_route_propagation = disable_bgp_route_propagation + self.source = source + self.state = state + self.address_prefix = address_prefix + self.next_hop_ip_address = next_hop_ip_address + self.next_hop_type = next_hop_type + + +class EffectiveRouteListResult(msrest.serialization.Model): + """Response for list effective route API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of effective routes. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.EffectiveRoute] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[EffectiveRoute]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["EffectiveRoute"]] = None, + **kwargs + ): + """ + :keyword value: A list of effective routes. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.EffectiveRoute] + """ + super(EffectiveRouteListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class EffectiveRoutesParameters(msrest.serialization.Model): + """The parameters specifying the resource whose effective routes are being requested. + + :ivar resource_id: The resource whose effective routes are being requested. + :vartype resource_id: str + :ivar virtual_wan_resource_type: The type of the specified resource like RouteTable, + ExpressRouteConnection, HubVirtualNetworkConnection, VpnConnection and P2SConnection. + :vartype virtual_wan_resource_type: str + """ + + _attribute_map = { + 'resource_id': {'key': 'resourceId', 'type': 'str'}, + 'virtual_wan_resource_type': {'key': 'virtualWanResourceType', 'type': 'str'}, + } + + def __init__( + self, + *, + resource_id: Optional[str] = None, + virtual_wan_resource_type: Optional[str] = None, + **kwargs + ): + """ + :keyword resource_id: The resource whose effective routes are being requested. + :paramtype resource_id: str + :keyword virtual_wan_resource_type: The type of the specified resource like RouteTable, + ExpressRouteConnection, HubVirtualNetworkConnection, VpnConnection and P2SConnection. + :paramtype virtual_wan_resource_type: str + """ + super(EffectiveRoutesParameters, self).__init__(**kwargs) + self.resource_id = resource_id + self.virtual_wan_resource_type = virtual_wan_resource_type + + +class EndpointServiceResult(SubResource): + """Endpoint service. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the endpoint service. + :vartype name: str + :ivar type: Type of the endpoint service. + :vartype type: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + """ + super(EndpointServiceResult, self).__init__(id=id, **kwargs) + self.name = None + self.type = None + + +class EndpointServicesListResult(msrest.serialization.Model): + """Response for the ListAvailableEndpointServices API service call. + + :ivar value: List of available endpoint services in a region. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.EndpointServiceResult] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[EndpointServiceResult]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["EndpointServiceResult"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of available endpoint services in a region. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.EndpointServiceResult] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(EndpointServicesListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class Error(msrest.serialization.Model): + """Common error representation. + + :ivar code: Error code. + :vartype code: str + :ivar message: Error message. + :vartype message: str + :ivar target: Error target. + :vartype target: str + :ivar details: Error details. + :vartype details: list[~azure.mgmt.network.v2021_08_01.models.ErrorDetails] + :ivar inner_error: Inner error message. + :vartype inner_error: str + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + 'details': {'key': 'details', 'type': '[ErrorDetails]'}, + 'inner_error': {'key': 'innerError', 'type': 'str'}, + } + + def __init__( + self, + *, + code: Optional[str] = None, + message: Optional[str] = None, + target: Optional[str] = None, + details: Optional[List["ErrorDetails"]] = None, + inner_error: Optional[str] = None, + **kwargs + ): + """ + :keyword code: Error code. + :paramtype code: str + :keyword message: Error message. + :paramtype message: str + :keyword target: Error target. + :paramtype target: str + :keyword details: Error details. + :paramtype details: list[~azure.mgmt.network.v2021_08_01.models.ErrorDetails] + :keyword inner_error: Inner error message. + :paramtype inner_error: str + """ + super(Error, self).__init__(**kwargs) + self.code = code + self.message = message + self.target = target + self.details = details + self.inner_error = inner_error + + +class ErrorDetails(msrest.serialization.Model): + """Common error details representation. + + :ivar code: Error code. + :vartype code: str + :ivar target: Error target. + :vartype target: str + :ivar message: Error message. + :vartype message: str + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + } + + def __init__( + self, + *, + code: Optional[str] = None, + target: Optional[str] = None, + message: Optional[str] = None, + **kwargs + ): + """ + :keyword code: Error code. + :paramtype code: str + :keyword target: Error target. + :paramtype target: str + :keyword message: Error message. + :paramtype message: str + """ + super(ErrorDetails, self).__init__(**kwargs) + self.code = code + self.target = target + self.message = message + + +class ErrorResponse(msrest.serialization.Model): + """The error object. + + :ivar error: The error details object. + :vartype error: ~azure.mgmt.network.v2021_08_01.models.ErrorDetails + """ + + _attribute_map = { + 'error': {'key': 'error', 'type': 'ErrorDetails'}, + } + + def __init__( + self, + *, + error: Optional["ErrorDetails"] = None, + **kwargs + ): + """ + :keyword error: The error details object. + :paramtype error: ~azure.mgmt.network.v2021_08_01.models.ErrorDetails + """ + super(ErrorResponse, self).__init__(**kwargs) + self.error = error + + +class EvaluatedNetworkSecurityGroup(msrest.serialization.Model): + """Results of network security group evaluation. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar network_security_group_id: Network security group ID. + :vartype network_security_group_id: str + :ivar applied_to: Resource ID of nic or subnet to which network security group is applied. + :vartype applied_to: str + :ivar matched_rule: Matched network security rule. + :vartype matched_rule: ~azure.mgmt.network.v2021_08_01.models.MatchedRule + :ivar rules_evaluation_result: List of network security rules evaluation results. + :vartype rules_evaluation_result: + list[~azure.mgmt.network.v2021_08_01.models.NetworkSecurityRulesEvaluationResult] + """ + + _validation = { + 'rules_evaluation_result': {'readonly': True}, + } + + _attribute_map = { + 'network_security_group_id': {'key': 'networkSecurityGroupId', 'type': 'str'}, + 'applied_to': {'key': 'appliedTo', 'type': 'str'}, + 'matched_rule': {'key': 'matchedRule', 'type': 'MatchedRule'}, + 'rules_evaluation_result': {'key': 'rulesEvaluationResult', 'type': '[NetworkSecurityRulesEvaluationResult]'}, + } + + def __init__( + self, + *, + network_security_group_id: Optional[str] = None, + applied_to: Optional[str] = None, + matched_rule: Optional["MatchedRule"] = None, + **kwargs + ): + """ + :keyword network_security_group_id: Network security group ID. + :paramtype network_security_group_id: str + :keyword applied_to: Resource ID of nic or subnet to which network security group is applied. + :paramtype applied_to: str + :keyword matched_rule: Matched network security rule. + :paramtype matched_rule: ~azure.mgmt.network.v2021_08_01.models.MatchedRule + """ + super(EvaluatedNetworkSecurityGroup, self).__init__(**kwargs) + self.network_security_group_id = network_security_group_id + self.applied_to = applied_to + self.matched_rule = matched_rule + self.rules_evaluation_result = None + + +class ExclusionManagedRule(msrest.serialization.Model): + """Defines a managed rule to use for exclusion. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_id: Required. Identifier for the managed rule. + :vartype rule_id: str + """ + + _validation = { + 'rule_id': {'required': True}, + } + + _attribute_map = { + 'rule_id': {'key': 'ruleId', 'type': 'str'}, + } + + def __init__( + self, + *, + rule_id: str, + **kwargs + ): + """ + :keyword rule_id: Required. Identifier for the managed rule. + :paramtype rule_id: str + """ + super(ExclusionManagedRule, self).__init__(**kwargs) + self.rule_id = rule_id + + +class ExclusionManagedRuleGroup(msrest.serialization.Model): + """Defines a managed rule group to use for exclusion. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_group_name: Required. The managed rule group for exclusion. + :vartype rule_group_name: str + :ivar rules: List of rules that will be excluded. If none specified, all rules in the group + will be excluded. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.ExclusionManagedRule] + """ + + _validation = { + 'rule_group_name': {'required': True}, + } + + _attribute_map = { + 'rule_group_name': {'key': 'ruleGroupName', 'type': 'str'}, + 'rules': {'key': 'rules', 'type': '[ExclusionManagedRule]'}, + } + + def __init__( + self, + *, + rule_group_name: str, + rules: Optional[List["ExclusionManagedRule"]] = None, + **kwargs + ): + """ + :keyword rule_group_name: Required. The managed rule group for exclusion. + :paramtype rule_group_name: str + :keyword rules: List of rules that will be excluded. If none specified, all rules in the group + will be excluded. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.ExclusionManagedRule] + """ + super(ExclusionManagedRuleGroup, self).__init__(**kwargs) + self.rule_group_name = rule_group_name + self.rules = rules + + +class ExclusionManagedRuleSet(msrest.serialization.Model): + """Defines a managed rule set for Exclusions. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_set_type: Required. Defines the rule set type to use. + :vartype rule_set_type: str + :ivar rule_set_version: Required. Defines the version of the rule set to use. + :vartype rule_set_version: str + :ivar rule_groups: Defines the rule groups to apply to the rule set. + :vartype rule_groups: list[~azure.mgmt.network.v2021_08_01.models.ExclusionManagedRuleGroup] + """ + + _validation = { + 'rule_set_type': {'required': True}, + 'rule_set_version': {'required': True}, + } + + _attribute_map = { + 'rule_set_type': {'key': 'ruleSetType', 'type': 'str'}, + 'rule_set_version': {'key': 'ruleSetVersion', 'type': 'str'}, + 'rule_groups': {'key': 'ruleGroups', 'type': '[ExclusionManagedRuleGroup]'}, + } + + def __init__( + self, + *, + rule_set_type: str, + rule_set_version: str, + rule_groups: Optional[List["ExclusionManagedRuleGroup"]] = None, + **kwargs + ): + """ + :keyword rule_set_type: Required. Defines the rule set type to use. + :paramtype rule_set_type: str + :keyword rule_set_version: Required. Defines the version of the rule set to use. + :paramtype rule_set_version: str + :keyword rule_groups: Defines the rule groups to apply to the rule set. + :paramtype rule_groups: list[~azure.mgmt.network.v2021_08_01.models.ExclusionManagedRuleGroup] + """ + super(ExclusionManagedRuleSet, self).__init__(**kwargs) + self.rule_set_type = rule_set_type + self.rule_set_version = rule_set_version + self.rule_groups = rule_groups + + +class ExplicitProxySettings(msrest.serialization.Model): + """Explicit Proxy Settings in Firewall Policy. + + :ivar enable_explicit_proxy: When set to true, explicit proxy mode is enabled. + :vartype enable_explicit_proxy: bool + :ivar http_port: Port number for explicit proxy http protocol, cannot be greater than 64000. + :vartype http_port: int + :ivar https_port: Port number for explicit proxy https protocol, cannot be greater than 64000. + :vartype https_port: int + :ivar pac_file_port: Port number for firewall to serve PAC file. + :vartype pac_file_port: int + :ivar pac_file: SAS URL for PAC file. + :vartype pac_file: str + """ + + _validation = { + 'http_port': {'maximum': 64000, 'minimum': 0}, + 'https_port': {'maximum': 64000, 'minimum': 0}, + 'pac_file_port': {'maximum': 64000, 'minimum': 0}, + } + + _attribute_map = { + 'enable_explicit_proxy': {'key': 'enableExplicitProxy', 'type': 'bool'}, + 'http_port': {'key': 'httpPort', 'type': 'int'}, + 'https_port': {'key': 'httpsPort', 'type': 'int'}, + 'pac_file_port': {'key': 'pacFilePort', 'type': 'int'}, + 'pac_file': {'key': 'pacFile', 'type': 'str'}, + } + + def __init__( + self, + *, + enable_explicit_proxy: Optional[bool] = None, + http_port: Optional[int] = None, + https_port: Optional[int] = None, + pac_file_port: Optional[int] = None, + pac_file: Optional[str] = None, + **kwargs + ): + """ + :keyword enable_explicit_proxy: When set to true, explicit proxy mode is enabled. + :paramtype enable_explicit_proxy: bool + :keyword http_port: Port number for explicit proxy http protocol, cannot be greater than 64000. + :paramtype http_port: int + :keyword https_port: Port number for explicit proxy https protocol, cannot be greater than + 64000. + :paramtype https_port: int + :keyword pac_file_port: Port number for firewall to serve PAC file. + :paramtype pac_file_port: int + :keyword pac_file: SAS URL for PAC file. + :paramtype pac_file: str + """ + super(ExplicitProxySettings, self).__init__(**kwargs) + self.enable_explicit_proxy = enable_explicit_proxy + self.http_port = http_port + self.https_port = https_port + self.pac_file_port = pac_file_port + self.pac_file = pac_file + + +class ExpressRouteCircuit(Resource): + """ExpressRouteCircuit resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar sku: The SKU. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitSku + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar allow_classic_operations: Allow classic operations. + :vartype allow_classic_operations: bool + :ivar circuit_provisioning_state: The CircuitProvisioningState state of the resource. + :vartype circuit_provisioning_state: str + :ivar service_provider_provisioning_state: The ServiceProviderProvisioningState state of the + resource. Possible values include: "NotProvisioned", "Provisioning", "Provisioned", + "Deprovisioning". + :vartype service_provider_provisioning_state: str or + ~azure.mgmt.network.v2021_08_01.models.ServiceProviderProvisioningState + :ivar authorizations: The list of authorizations. + :vartype authorizations: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization] + :ivar peerings: The list of peerings. + :vartype peerings: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :ivar service_key: The ServiceKey. + :vartype service_key: str + :ivar service_provider_notes: The ServiceProviderNotes. + :vartype service_provider_notes: str + :ivar service_provider_properties: The ServiceProviderProperties. + :vartype service_provider_properties: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitServiceProviderProperties + :ivar express_route_port: The reference to the ExpressRoutePort resource when the circuit is + provisioned on an ExpressRoutePort resource. + :vartype express_route_port: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar bandwidth_in_gbps: The bandwidth of the circuit when the circuit is provisioned on an + ExpressRoutePort resource. + :vartype bandwidth_in_gbps: float + :ivar stag: The identifier of the circuit traffic. Outer tag for QinQ encapsulation. + :vartype stag: int + :ivar provisioning_state: The provisioning state of the express route circuit resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar gateway_manager_etag: The GatewayManager Etag. + :vartype gateway_manager_etag: str + :ivar global_reach_enabled: Flag denoting global reach status. + :vartype global_reach_enabled: bool + :ivar authorization_key: The authorizationKey. + :vartype authorization_key: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'stag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'sku': {'key': 'sku', 'type': 'ExpressRouteCircuitSku'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'allow_classic_operations': {'key': 'properties.allowClassicOperations', 'type': 'bool'}, + 'circuit_provisioning_state': {'key': 'properties.circuitProvisioningState', 'type': 'str'}, + 'service_provider_provisioning_state': {'key': 'properties.serviceProviderProvisioningState', 'type': 'str'}, + 'authorizations': {'key': 'properties.authorizations', 'type': '[ExpressRouteCircuitAuthorization]'}, + 'peerings': {'key': 'properties.peerings', 'type': '[ExpressRouteCircuitPeering]'}, + 'service_key': {'key': 'properties.serviceKey', 'type': 'str'}, + 'service_provider_notes': {'key': 'properties.serviceProviderNotes', 'type': 'str'}, + 'service_provider_properties': {'key': 'properties.serviceProviderProperties', 'type': 'ExpressRouteCircuitServiceProviderProperties'}, + 'express_route_port': {'key': 'properties.expressRoutePort', 'type': 'SubResource'}, + 'bandwidth_in_gbps': {'key': 'properties.bandwidthInGbps', 'type': 'float'}, + 'stag': {'key': 'properties.stag', 'type': 'int'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'gateway_manager_etag': {'key': 'properties.gatewayManagerEtag', 'type': 'str'}, + 'global_reach_enabled': {'key': 'properties.globalReachEnabled', 'type': 'bool'}, + 'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + sku: Optional["ExpressRouteCircuitSku"] = None, + allow_classic_operations: Optional[bool] = None, + circuit_provisioning_state: Optional[str] = None, + service_provider_provisioning_state: Optional[Union[str, "ServiceProviderProvisioningState"]] = None, + authorizations: Optional[List["ExpressRouteCircuitAuthorization"]] = None, + peerings: Optional[List["ExpressRouteCircuitPeering"]] = None, + service_key: Optional[str] = None, + service_provider_notes: Optional[str] = None, + service_provider_properties: Optional["ExpressRouteCircuitServiceProviderProperties"] = None, + express_route_port: Optional["SubResource"] = None, + bandwidth_in_gbps: Optional[float] = None, + gateway_manager_etag: Optional[str] = None, + global_reach_enabled: Optional[bool] = None, + authorization_key: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword sku: The SKU. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitSku + :keyword allow_classic_operations: Allow classic operations. + :paramtype allow_classic_operations: bool + :keyword circuit_provisioning_state: The CircuitProvisioningState state of the resource. + :paramtype circuit_provisioning_state: str + :keyword service_provider_provisioning_state: The ServiceProviderProvisioningState state of the + resource. Possible values include: "NotProvisioned", "Provisioning", "Provisioned", + "Deprovisioning". + :paramtype service_provider_provisioning_state: str or + ~azure.mgmt.network.v2021_08_01.models.ServiceProviderProvisioningState + :keyword authorizations: The list of authorizations. + :paramtype authorizations: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization] + :keyword peerings: The list of peerings. + :paramtype peerings: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :keyword service_key: The ServiceKey. + :paramtype service_key: str + :keyword service_provider_notes: The ServiceProviderNotes. + :paramtype service_provider_notes: str + :keyword service_provider_properties: The ServiceProviderProperties. + :paramtype service_provider_properties: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitServiceProviderProperties + :keyword express_route_port: The reference to the ExpressRoutePort resource when the circuit is + provisioned on an ExpressRoutePort resource. + :paramtype express_route_port: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword bandwidth_in_gbps: The bandwidth of the circuit when the circuit is provisioned on an + ExpressRoutePort resource. + :paramtype bandwidth_in_gbps: float + :keyword gateway_manager_etag: The GatewayManager Etag. + :paramtype gateway_manager_etag: str + :keyword global_reach_enabled: Flag denoting global reach status. + :paramtype global_reach_enabled: bool + :keyword authorization_key: The authorizationKey. + :paramtype authorization_key: str + """ + super(ExpressRouteCircuit, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.sku = sku + self.etag = None + self.allow_classic_operations = allow_classic_operations + self.circuit_provisioning_state = circuit_provisioning_state + self.service_provider_provisioning_state = service_provider_provisioning_state + self.authorizations = authorizations + self.peerings = peerings + self.service_key = service_key + self.service_provider_notes = service_provider_notes + self.service_provider_properties = service_provider_properties + self.express_route_port = express_route_port + self.bandwidth_in_gbps = bandwidth_in_gbps + self.stag = None + self.provisioning_state = None + self.gateway_manager_etag = gateway_manager_etag + self.global_reach_enabled = global_reach_enabled + self.authorization_key = authorization_key + + +class ExpressRouteCircuitArpTable(msrest.serialization.Model): + """The ARP table associated with the ExpressRouteCircuit. + + :ivar age: Entry age in minutes. + :vartype age: int + :ivar interface: Interface address. + :vartype interface: str + :ivar ip_address: The IP address. + :vartype ip_address: str + :ivar mac_address: The MAC address. + :vartype mac_address: str + """ + + _attribute_map = { + 'age': {'key': 'age', 'type': 'int'}, + 'interface': {'key': 'interface', 'type': 'str'}, + 'ip_address': {'key': 'ipAddress', 'type': 'str'}, + 'mac_address': {'key': 'macAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + age: Optional[int] = None, + interface: Optional[str] = None, + ip_address: Optional[str] = None, + mac_address: Optional[str] = None, + **kwargs + ): + """ + :keyword age: Entry age in minutes. + :paramtype age: int + :keyword interface: Interface address. + :paramtype interface: str + :keyword ip_address: The IP address. + :paramtype ip_address: str + :keyword mac_address: The MAC address. + :paramtype mac_address: str + """ + super(ExpressRouteCircuitArpTable, self).__init__(**kwargs) + self.age = age + self.interface = interface + self.ip_address = ip_address + self.mac_address = mac_address + + +class ExpressRouteCircuitAuthorization(SubResource): + """Authorization in an ExpressRouteCircuit resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar authorization_key: The authorization key. + :vartype authorization_key: str + :ivar authorization_use_status: The authorization use status. Possible values include: + "Available", "InUse". + :vartype authorization_use_status: str or + ~azure.mgmt.network.v2021_08_01.models.AuthorizationUseStatus + :ivar provisioning_state: The provisioning state of the authorization resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'}, + 'authorization_use_status': {'key': 'properties.authorizationUseStatus', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + authorization_key: Optional[str] = None, + authorization_use_status: Optional[Union[str, "AuthorizationUseStatus"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword authorization_key: The authorization key. + :paramtype authorization_key: str + :keyword authorization_use_status: The authorization use status. Possible values include: + "Available", "InUse". + :paramtype authorization_use_status: str or + ~azure.mgmt.network.v2021_08_01.models.AuthorizationUseStatus + """ + super(ExpressRouteCircuitAuthorization, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.authorization_key = authorization_key + self.authorization_use_status = authorization_use_status + self.provisioning_state = None + + +class ExpressRouteCircuitConnection(SubResource): + """Express Route Circuit Connection in an ExpressRouteCircuitPeering resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar express_route_circuit_peering: Reference to Express Route Circuit Private Peering + Resource of the circuit initiating connection. + :vartype express_route_circuit_peering: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar peer_express_route_circuit_peering: Reference to Express Route Circuit Private Peering + Resource of the peered circuit. + :vartype peer_express_route_circuit_peering: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar address_prefix: /29 IP address space to carve out Customer addresses for tunnels. + :vartype address_prefix: str + :ivar authorization_key: The authorization key. + :vartype authorization_key: str + :ivar ipv6_circuit_connection_config: IPv6 Address PrefixProperties of the express route + circuit connection. + :vartype ipv6_circuit_connection_config: + ~azure.mgmt.network.v2021_08_01.models.Ipv6CircuitConnectionConfig + :ivar circuit_connection_status: Express Route Circuit connection state. Possible values + include: "Connected", "Connecting", "Disconnected". + :vartype circuit_connection_status: str or + ~azure.mgmt.network.v2021_08_01.models.CircuitConnectionStatus + :ivar provisioning_state: The provisioning state of the express route circuit connection + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'circuit_connection_status': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'express_route_circuit_peering': {'key': 'properties.expressRouteCircuitPeering', 'type': 'SubResource'}, + 'peer_express_route_circuit_peering': {'key': 'properties.peerExpressRouteCircuitPeering', 'type': 'SubResource'}, + 'address_prefix': {'key': 'properties.addressPrefix', 'type': 'str'}, + 'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'}, + 'ipv6_circuit_connection_config': {'key': 'properties.ipv6CircuitConnectionConfig', 'type': 'Ipv6CircuitConnectionConfig'}, + 'circuit_connection_status': {'key': 'properties.circuitConnectionStatus', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + express_route_circuit_peering: Optional["SubResource"] = None, + peer_express_route_circuit_peering: Optional["SubResource"] = None, + address_prefix: Optional[str] = None, + authorization_key: Optional[str] = None, + ipv6_circuit_connection_config: Optional["Ipv6CircuitConnectionConfig"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword express_route_circuit_peering: Reference to Express Route Circuit Private Peering + Resource of the circuit initiating connection. + :paramtype express_route_circuit_peering: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword peer_express_route_circuit_peering: Reference to Express Route Circuit Private Peering + Resource of the peered circuit. + :paramtype peer_express_route_circuit_peering: + ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword address_prefix: /29 IP address space to carve out Customer addresses for tunnels. + :paramtype address_prefix: str + :keyword authorization_key: The authorization key. + :paramtype authorization_key: str + :keyword ipv6_circuit_connection_config: IPv6 Address PrefixProperties of the express route + circuit connection. + :paramtype ipv6_circuit_connection_config: + ~azure.mgmt.network.v2021_08_01.models.Ipv6CircuitConnectionConfig + """ + super(ExpressRouteCircuitConnection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.express_route_circuit_peering = express_route_circuit_peering + self.peer_express_route_circuit_peering = peer_express_route_circuit_peering + self.address_prefix = address_prefix + self.authorization_key = authorization_key + self.ipv6_circuit_connection_config = ipv6_circuit_connection_config + self.circuit_connection_status = None + self.provisioning_state = None + + +class ExpressRouteCircuitConnectionListResult(msrest.serialization.Model): + """Response for ListConnections API service call retrieves all global reach connections that belongs to a Private Peering for an ExpressRouteCircuit. + + :ivar value: The global reach connection associated with Private Peering in an ExpressRoute + Circuit. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCircuitConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCircuitConnection"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The global reach connection associated with Private Peering in an ExpressRoute + Circuit. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRouteCircuitConnectionListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRouteCircuitListResult(msrest.serialization.Model): + """Response for ListExpressRouteCircuit API service call. + + :ivar value: A list of ExpressRouteCircuits in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCircuit]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCircuit"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of ExpressRouteCircuits in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRouteCircuitListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRouteCircuitPeering(SubResource): + """Peering in an ExpressRouteCircuit resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar peering_type: The peering type. Possible values include: "AzurePublicPeering", + "AzurePrivatePeering", "MicrosoftPeering". + :vartype peering_type: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePeeringType + :ivar state: The peering state. Possible values include: "Disabled", "Enabled". + :vartype state: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePeeringState + :ivar azure_asn: The Azure ASN. + :vartype azure_asn: int + :ivar peer_asn: The peer ASN. + :vartype peer_asn: long + :ivar primary_peer_address_prefix: The primary address prefix. + :vartype primary_peer_address_prefix: str + :ivar secondary_peer_address_prefix: The secondary address prefix. + :vartype secondary_peer_address_prefix: str + :ivar primary_azure_port: The primary port. + :vartype primary_azure_port: str + :ivar secondary_azure_port: The secondary port. + :vartype secondary_azure_port: str + :ivar shared_key: The shared key. + :vartype shared_key: str + :ivar vlan_id: The VLAN ID. + :vartype vlan_id: int + :ivar microsoft_peering_config: The Microsoft peering configuration. + :vartype microsoft_peering_config: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringConfig + :ivar stats: The peering stats of express route circuit. + :vartype stats: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitStats + :ivar provisioning_state: The provisioning state of the express route circuit peering resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar gateway_manager_etag: The GatewayManager Etag. + :vartype gateway_manager_etag: str + :ivar last_modified_by: Who was the last to modify the peering. + :vartype last_modified_by: str + :ivar route_filter: The reference to the RouteFilter resource. + :vartype route_filter: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar ipv6_peering_config: The IPv6 peering configuration. + :vartype ipv6_peering_config: + ~azure.mgmt.network.v2021_08_01.models.Ipv6ExpressRouteCircuitPeeringConfig + :ivar express_route_connection: The ExpressRoute connection. + :vartype express_route_connection: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnectionId + :ivar connections: The list of circuit connections associated with Azure Private Peering for + this circuit. + :vartype connections: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection] + :ivar peered_connections: The list of peered circuit connections associated with Azure Private + Peering for this circuit. + :vartype peered_connections: + list[~azure.mgmt.network.v2021_08_01.models.PeerExpressRouteCircuitConnection] + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'peer_asn': {'maximum': 4294967295, 'minimum': 1}, + 'provisioning_state': {'readonly': True}, + 'last_modified_by': {'readonly': True}, + 'peered_connections': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'peering_type': {'key': 'properties.peeringType', 'type': 'str'}, + 'state': {'key': 'properties.state', 'type': 'str'}, + 'azure_asn': {'key': 'properties.azureASN', 'type': 'int'}, + 'peer_asn': {'key': 'properties.peerASN', 'type': 'long'}, + 'primary_peer_address_prefix': {'key': 'properties.primaryPeerAddressPrefix', 'type': 'str'}, + 'secondary_peer_address_prefix': {'key': 'properties.secondaryPeerAddressPrefix', 'type': 'str'}, + 'primary_azure_port': {'key': 'properties.primaryAzurePort', 'type': 'str'}, + 'secondary_azure_port': {'key': 'properties.secondaryAzurePort', 'type': 'str'}, + 'shared_key': {'key': 'properties.sharedKey', 'type': 'str'}, + 'vlan_id': {'key': 'properties.vlanId', 'type': 'int'}, + 'microsoft_peering_config': {'key': 'properties.microsoftPeeringConfig', 'type': 'ExpressRouteCircuitPeeringConfig'}, + 'stats': {'key': 'properties.stats', 'type': 'ExpressRouteCircuitStats'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'gateway_manager_etag': {'key': 'properties.gatewayManagerEtag', 'type': 'str'}, + 'last_modified_by': {'key': 'properties.lastModifiedBy', 'type': 'str'}, + 'route_filter': {'key': 'properties.routeFilter', 'type': 'SubResource'}, + 'ipv6_peering_config': {'key': 'properties.ipv6PeeringConfig', 'type': 'Ipv6ExpressRouteCircuitPeeringConfig'}, + 'express_route_connection': {'key': 'properties.expressRouteConnection', 'type': 'ExpressRouteConnectionId'}, + 'connections': {'key': 'properties.connections', 'type': '[ExpressRouteCircuitConnection]'}, + 'peered_connections': {'key': 'properties.peeredConnections', 'type': '[PeerExpressRouteCircuitConnection]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + peering_type: Optional[Union[str, "ExpressRoutePeeringType"]] = None, + state: Optional[Union[str, "ExpressRoutePeeringState"]] = None, + azure_asn: Optional[int] = None, + peer_asn: Optional[int] = None, + primary_peer_address_prefix: Optional[str] = None, + secondary_peer_address_prefix: Optional[str] = None, + primary_azure_port: Optional[str] = None, + secondary_azure_port: Optional[str] = None, + shared_key: Optional[str] = None, + vlan_id: Optional[int] = None, + microsoft_peering_config: Optional["ExpressRouteCircuitPeeringConfig"] = None, + stats: Optional["ExpressRouteCircuitStats"] = None, + gateway_manager_etag: Optional[str] = None, + route_filter: Optional["SubResource"] = None, + ipv6_peering_config: Optional["Ipv6ExpressRouteCircuitPeeringConfig"] = None, + express_route_connection: Optional["ExpressRouteConnectionId"] = None, + connections: Optional[List["ExpressRouteCircuitConnection"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword peering_type: The peering type. Possible values include: "AzurePublicPeering", + "AzurePrivatePeering", "MicrosoftPeering". + :paramtype peering_type: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePeeringType + :keyword state: The peering state. Possible values include: "Disabled", "Enabled". + :paramtype state: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePeeringState + :keyword azure_asn: The Azure ASN. + :paramtype azure_asn: int + :keyword peer_asn: The peer ASN. + :paramtype peer_asn: long + :keyword primary_peer_address_prefix: The primary address prefix. + :paramtype primary_peer_address_prefix: str + :keyword secondary_peer_address_prefix: The secondary address prefix. + :paramtype secondary_peer_address_prefix: str + :keyword primary_azure_port: The primary port. + :paramtype primary_azure_port: str + :keyword secondary_azure_port: The secondary port. + :paramtype secondary_azure_port: str + :keyword shared_key: The shared key. + :paramtype shared_key: str + :keyword vlan_id: The VLAN ID. + :paramtype vlan_id: int + :keyword microsoft_peering_config: The Microsoft peering configuration. + :paramtype microsoft_peering_config: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringConfig + :keyword stats: The peering stats of express route circuit. + :paramtype stats: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitStats + :keyword gateway_manager_etag: The GatewayManager Etag. + :paramtype gateway_manager_etag: str + :keyword route_filter: The reference to the RouteFilter resource. + :paramtype route_filter: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword ipv6_peering_config: The IPv6 peering configuration. + :paramtype ipv6_peering_config: + ~azure.mgmt.network.v2021_08_01.models.Ipv6ExpressRouteCircuitPeeringConfig + :keyword express_route_connection: The ExpressRoute connection. + :paramtype express_route_connection: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnectionId + :keyword connections: The list of circuit connections associated with Azure Private Peering for + this circuit. + :paramtype connections: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection] + """ + super(ExpressRouteCircuitPeering, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.peering_type = peering_type + self.state = state + self.azure_asn = azure_asn + self.peer_asn = peer_asn + self.primary_peer_address_prefix = primary_peer_address_prefix + self.secondary_peer_address_prefix = secondary_peer_address_prefix + self.primary_azure_port = primary_azure_port + self.secondary_azure_port = secondary_azure_port + self.shared_key = shared_key + self.vlan_id = vlan_id + self.microsoft_peering_config = microsoft_peering_config + self.stats = stats + self.provisioning_state = None + self.gateway_manager_etag = gateway_manager_etag + self.last_modified_by = None + self.route_filter = route_filter + self.ipv6_peering_config = ipv6_peering_config + self.express_route_connection = express_route_connection + self.connections = connections + self.peered_connections = None + + +class ExpressRouteCircuitPeeringConfig(msrest.serialization.Model): + """Specifies the peering configuration. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar advertised_public_prefixes: The reference to AdvertisedPublicPrefixes. + :vartype advertised_public_prefixes: list[str] + :ivar advertised_communities: The communities of bgp peering. Specified for microsoft peering. + :vartype advertised_communities: list[str] + :ivar advertised_public_prefixes_state: The advertised public prefix state of the Peering + resource. Possible values include: "NotConfigured", "Configuring", "Configured", + "ValidationNeeded". + :vartype advertised_public_prefixes_state: str or + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringAdvertisedPublicPrefixState + :ivar legacy_mode: The legacy mode of the peering. + :vartype legacy_mode: int + :ivar customer_asn: The CustomerASN of the peering. + :vartype customer_asn: int + :ivar routing_registry_name: The RoutingRegistryName of the configuration. + :vartype routing_registry_name: str + """ + + _validation = { + 'advertised_public_prefixes_state': {'readonly': True}, + } + + _attribute_map = { + 'advertised_public_prefixes': {'key': 'advertisedPublicPrefixes', 'type': '[str]'}, + 'advertised_communities': {'key': 'advertisedCommunities', 'type': '[str]'}, + 'advertised_public_prefixes_state': {'key': 'advertisedPublicPrefixesState', 'type': 'str'}, + 'legacy_mode': {'key': 'legacyMode', 'type': 'int'}, + 'customer_asn': {'key': 'customerASN', 'type': 'int'}, + 'routing_registry_name': {'key': 'routingRegistryName', 'type': 'str'}, + } + + def __init__( + self, + *, + advertised_public_prefixes: Optional[List[str]] = None, + advertised_communities: Optional[List[str]] = None, + legacy_mode: Optional[int] = None, + customer_asn: Optional[int] = None, + routing_registry_name: Optional[str] = None, + **kwargs + ): + """ + :keyword advertised_public_prefixes: The reference to AdvertisedPublicPrefixes. + :paramtype advertised_public_prefixes: list[str] + :keyword advertised_communities: The communities of bgp peering. Specified for microsoft + peering. + :paramtype advertised_communities: list[str] + :keyword legacy_mode: The legacy mode of the peering. + :paramtype legacy_mode: int + :keyword customer_asn: The CustomerASN of the peering. + :paramtype customer_asn: int + :keyword routing_registry_name: The RoutingRegistryName of the configuration. + :paramtype routing_registry_name: str + """ + super(ExpressRouteCircuitPeeringConfig, self).__init__(**kwargs) + self.advertised_public_prefixes = advertised_public_prefixes + self.advertised_communities = advertised_communities + self.advertised_public_prefixes_state = None + self.legacy_mode = legacy_mode + self.customer_asn = customer_asn + self.routing_registry_name = routing_registry_name + + +class ExpressRouteCircuitPeeringId(msrest.serialization.Model): + """ExpressRoute circuit peering identifier. + + :ivar id: The ID of the ExpressRoute circuit peering. + :vartype id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: The ID of the ExpressRoute circuit peering. + :paramtype id: str + """ + super(ExpressRouteCircuitPeeringId, self).__init__(**kwargs) + self.id = id + + +class ExpressRouteCircuitPeeringListResult(msrest.serialization.Model): + """Response for ListPeering API service call retrieves all peerings that belong to an ExpressRouteCircuit. + + :ivar value: The peerings in an express route circuit. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCircuitPeering]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCircuitPeering"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The peerings in an express route circuit. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRouteCircuitPeeringListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRouteCircuitReference(msrest.serialization.Model): + """Reference to an express route circuit. + + :ivar id: Corresponding Express Route Circuit Id. + :vartype id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Corresponding Express Route Circuit Id. + :paramtype id: str + """ + super(ExpressRouteCircuitReference, self).__init__(**kwargs) + self.id = id + + +class ExpressRouteCircuitRoutesTable(msrest.serialization.Model): + """The routes table associated with the ExpressRouteCircuit. + + :ivar network: IP address of a network entity. + :vartype network: str + :ivar next_hop: NextHop address. + :vartype next_hop: str + :ivar loc_prf: Local preference value as set with the set local-preference route-map + configuration command. + :vartype loc_prf: str + :ivar weight: Route Weight. + :vartype weight: int + :ivar path: Autonomous system paths to the destination network. + :vartype path: str + """ + + _attribute_map = { + 'network': {'key': 'network', 'type': 'str'}, + 'next_hop': {'key': 'nextHop', 'type': 'str'}, + 'loc_prf': {'key': 'locPrf', 'type': 'str'}, + 'weight': {'key': 'weight', 'type': 'int'}, + 'path': {'key': 'path', 'type': 'str'}, + } + + def __init__( + self, + *, + network: Optional[str] = None, + next_hop: Optional[str] = None, + loc_prf: Optional[str] = None, + weight: Optional[int] = None, + path: Optional[str] = None, + **kwargs + ): + """ + :keyword network: IP address of a network entity. + :paramtype network: str + :keyword next_hop: NextHop address. + :paramtype next_hop: str + :keyword loc_prf: Local preference value as set with the set local-preference route-map + configuration command. + :paramtype loc_prf: str + :keyword weight: Route Weight. + :paramtype weight: int + :keyword path: Autonomous system paths to the destination network. + :paramtype path: str + """ + super(ExpressRouteCircuitRoutesTable, self).__init__(**kwargs) + self.network = network + self.next_hop = next_hop + self.loc_prf = loc_prf + self.weight = weight + self.path = path + + +class ExpressRouteCircuitRoutesTableSummary(msrest.serialization.Model): + """The routes table associated with the ExpressRouteCircuit. + + :ivar neighbor: IP address of the neighbor. + :vartype neighbor: str + :ivar v: BGP version number spoken to the neighbor. + :vartype v: int + :ivar as_property: Autonomous system number. + :vartype as_property: int + :ivar up_down: The length of time that the BGP session has been in the Established state, or + the current status if not in the Established state. + :vartype up_down: str + :ivar state_pfx_rcd: Current state of the BGP session, and the number of prefixes that have + been received from a neighbor or peer group. + :vartype state_pfx_rcd: str + """ + + _attribute_map = { + 'neighbor': {'key': 'neighbor', 'type': 'str'}, + 'v': {'key': 'v', 'type': 'int'}, + 'as_property': {'key': 'as', 'type': 'int'}, + 'up_down': {'key': 'upDown', 'type': 'str'}, + 'state_pfx_rcd': {'key': 'statePfxRcd', 'type': 'str'}, + } + + def __init__( + self, + *, + neighbor: Optional[str] = None, + v: Optional[int] = None, + as_property: Optional[int] = None, + up_down: Optional[str] = None, + state_pfx_rcd: Optional[str] = None, + **kwargs + ): + """ + :keyword neighbor: IP address of the neighbor. + :paramtype neighbor: str + :keyword v: BGP version number spoken to the neighbor. + :paramtype v: int + :keyword as_property: Autonomous system number. + :paramtype as_property: int + :keyword up_down: The length of time that the BGP session has been in the Established state, or + the current status if not in the Established state. + :paramtype up_down: str + :keyword state_pfx_rcd: Current state of the BGP session, and the number of prefixes that have + been received from a neighbor or peer group. + :paramtype state_pfx_rcd: str + """ + super(ExpressRouteCircuitRoutesTableSummary, self).__init__(**kwargs) + self.neighbor = neighbor + self.v = v + self.as_property = as_property + self.up_down = up_down + self.state_pfx_rcd = state_pfx_rcd + + +class ExpressRouteCircuitsArpTableListResult(msrest.serialization.Model): + """Response for ListArpTable associated with the Express Route Circuits API. + + :ivar value: A list of the ARP tables. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitArpTable] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCircuitArpTable]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCircuitArpTable"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of the ARP tables. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitArpTable] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRouteCircuitsArpTableListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRouteCircuitServiceProviderProperties(msrest.serialization.Model): + """Contains ServiceProviderProperties in an ExpressRouteCircuit. + + :ivar service_provider_name: The serviceProviderName. + :vartype service_provider_name: str + :ivar peering_location: The peering location. + :vartype peering_location: str + :ivar bandwidth_in_mbps: The BandwidthInMbps. + :vartype bandwidth_in_mbps: int + """ + + _attribute_map = { + 'service_provider_name': {'key': 'serviceProviderName', 'type': 'str'}, + 'peering_location': {'key': 'peeringLocation', 'type': 'str'}, + 'bandwidth_in_mbps': {'key': 'bandwidthInMbps', 'type': 'int'}, + } + + def __init__( + self, + *, + service_provider_name: Optional[str] = None, + peering_location: Optional[str] = None, + bandwidth_in_mbps: Optional[int] = None, + **kwargs + ): + """ + :keyword service_provider_name: The serviceProviderName. + :paramtype service_provider_name: str + :keyword peering_location: The peering location. + :paramtype peering_location: str + :keyword bandwidth_in_mbps: The BandwidthInMbps. + :paramtype bandwidth_in_mbps: int + """ + super(ExpressRouteCircuitServiceProviderProperties, self).__init__(**kwargs) + self.service_provider_name = service_provider_name + self.peering_location = peering_location + self.bandwidth_in_mbps = bandwidth_in_mbps + + +class ExpressRouteCircuitSku(msrest.serialization.Model): + """Contains SKU in an ExpressRouteCircuit. + + :ivar name: The name of the SKU. + :vartype name: str + :ivar tier: The tier of the SKU. Possible values include: "Standard", "Premium", "Basic", + "Local". + :vartype tier: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitSkuTier + :ivar family: The family of the SKU. Possible values include: "UnlimitedData", "MeteredData". + :vartype family: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitSkuFamily + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + 'family': {'key': 'family', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + tier: Optional[Union[str, "ExpressRouteCircuitSkuTier"]] = None, + family: Optional[Union[str, "ExpressRouteCircuitSkuFamily"]] = None, + **kwargs + ): + """ + :keyword name: The name of the SKU. + :paramtype name: str + :keyword tier: The tier of the SKU. Possible values include: "Standard", "Premium", "Basic", + "Local". + :paramtype tier: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitSkuTier + :keyword family: The family of the SKU. Possible values include: "UnlimitedData", + "MeteredData". + :paramtype family: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitSkuFamily + """ + super(ExpressRouteCircuitSku, self).__init__(**kwargs) + self.name = name + self.tier = tier + self.family = family + + +class ExpressRouteCircuitsRoutesTableListResult(msrest.serialization.Model): + """Response for ListRoutesTable associated with the Express Route Circuits API. + + :ivar value: The list of routes table. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitRoutesTable] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCircuitRoutesTable]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCircuitRoutesTable"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The list of routes table. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitRoutesTable] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRouteCircuitsRoutesTableListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRouteCircuitsRoutesTableSummaryListResult(msrest.serialization.Model): + """Response for ListRoutesTable associated with the Express Route Circuits API. + + :ivar value: A list of the routes table. + :vartype value: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitRoutesTableSummary] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCircuitRoutesTableSummary]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCircuitRoutesTableSummary"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of the routes table. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitRoutesTableSummary] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRouteCircuitsRoutesTableSummaryListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRouteCircuitStats(msrest.serialization.Model): + """Contains stats associated with the peering. + + :ivar primarybytes_in: The Primary BytesIn of the peering. + :vartype primarybytes_in: long + :ivar primarybytes_out: The primary BytesOut of the peering. + :vartype primarybytes_out: long + :ivar secondarybytes_in: The secondary BytesIn of the peering. + :vartype secondarybytes_in: long + :ivar secondarybytes_out: The secondary BytesOut of the peering. + :vartype secondarybytes_out: long + """ + + _attribute_map = { + 'primarybytes_in': {'key': 'primarybytesIn', 'type': 'long'}, + 'primarybytes_out': {'key': 'primarybytesOut', 'type': 'long'}, + 'secondarybytes_in': {'key': 'secondarybytesIn', 'type': 'long'}, + 'secondarybytes_out': {'key': 'secondarybytesOut', 'type': 'long'}, + } + + def __init__( + self, + *, + primarybytes_in: Optional[int] = None, + primarybytes_out: Optional[int] = None, + secondarybytes_in: Optional[int] = None, + secondarybytes_out: Optional[int] = None, + **kwargs + ): + """ + :keyword primarybytes_in: The Primary BytesIn of the peering. + :paramtype primarybytes_in: long + :keyword primarybytes_out: The primary BytesOut of the peering. + :paramtype primarybytes_out: long + :keyword secondarybytes_in: The secondary BytesIn of the peering. + :paramtype secondarybytes_in: long + :keyword secondarybytes_out: The secondary BytesOut of the peering. + :paramtype secondarybytes_out: long + """ + super(ExpressRouteCircuitStats, self).__init__(**kwargs) + self.primarybytes_in = primarybytes_in + self.primarybytes_out = primarybytes_out + self.secondarybytes_in = secondarybytes_in + self.secondarybytes_out = secondarybytes_out + + +class ExpressRouteConnection(SubResource): + """ExpressRouteConnection resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Required. The name of the resource. + :vartype name: str + :ivar provisioning_state: The provisioning state of the express route connection resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar express_route_circuit_peering: The ExpressRoute circuit peering. + :vartype express_route_circuit_peering: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringId + :ivar authorization_key: Authorization key to establish the connection. + :vartype authorization_key: str + :ivar routing_weight: The routing weight associated to the connection. + :vartype routing_weight: int + :ivar enable_internet_security: Enable internet security. + :vartype enable_internet_security: bool + :ivar express_route_gateway_bypass: Enable FastPath to vWan Firewall hub. + :vartype express_route_gateway_bypass: bool + :ivar routing_configuration: The Routing Configuration indicating the associated and propagated + route tables on this connection. + :vartype routing_configuration: ~azure.mgmt.network.v2021_08_01.models.RoutingConfiguration + """ + + _validation = { + 'name': {'required': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'express_route_circuit_peering': {'key': 'properties.expressRouteCircuitPeering', 'type': 'ExpressRouteCircuitPeeringId'}, + 'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'}, + 'routing_weight': {'key': 'properties.routingWeight', 'type': 'int'}, + 'enable_internet_security': {'key': 'properties.enableInternetSecurity', 'type': 'bool'}, + 'express_route_gateway_bypass': {'key': 'properties.expressRouteGatewayBypass', 'type': 'bool'}, + 'routing_configuration': {'key': 'properties.routingConfiguration', 'type': 'RoutingConfiguration'}, + } + + def __init__( + self, + *, + name: str, + id: Optional[str] = None, + express_route_circuit_peering: Optional["ExpressRouteCircuitPeeringId"] = None, + authorization_key: Optional[str] = None, + routing_weight: Optional[int] = None, + enable_internet_security: Optional[bool] = None, + express_route_gateway_bypass: Optional[bool] = None, + routing_configuration: Optional["RoutingConfiguration"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Required. The name of the resource. + :paramtype name: str + :keyword express_route_circuit_peering: The ExpressRoute circuit peering. + :paramtype express_route_circuit_peering: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringId + :keyword authorization_key: Authorization key to establish the connection. + :paramtype authorization_key: str + :keyword routing_weight: The routing weight associated to the connection. + :paramtype routing_weight: int + :keyword enable_internet_security: Enable internet security. + :paramtype enable_internet_security: bool + :keyword express_route_gateway_bypass: Enable FastPath to vWan Firewall hub. + :paramtype express_route_gateway_bypass: bool + :keyword routing_configuration: The Routing Configuration indicating the associated and + propagated route tables on this connection. + :paramtype routing_configuration: ~azure.mgmt.network.v2021_08_01.models.RoutingConfiguration + """ + super(ExpressRouteConnection, self).__init__(id=id, **kwargs) + self.name = name + self.provisioning_state = None + self.express_route_circuit_peering = express_route_circuit_peering + self.authorization_key = authorization_key + self.routing_weight = routing_weight + self.enable_internet_security = enable_internet_security + self.express_route_gateway_bypass = express_route_gateway_bypass + self.routing_configuration = routing_configuration + + +class ExpressRouteConnectionId(msrest.serialization.Model): + """The ID of the ExpressRouteConnection. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The ID of the ExpressRouteConnection. + :vartype id: str + """ + + _validation = { + 'id': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(ExpressRouteConnectionId, self).__init__(**kwargs) + self.id = None + + +class ExpressRouteConnectionList(msrest.serialization.Model): + """ExpressRouteConnection list. + + :ivar value: The list of ExpressRoute connections. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteConnection]'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteConnection"]] = None, + **kwargs + ): + """ + :keyword value: The list of ExpressRoute connections. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection] + """ + super(ExpressRouteConnectionList, self).__init__(**kwargs) + self.value = value + + +class ExpressRouteCrossConnection(Resource): + """ExpressRouteCrossConnection resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar primary_azure_port: The name of the primary port. + :vartype primary_azure_port: str + :ivar secondary_azure_port: The name of the secondary port. + :vartype secondary_azure_port: str + :ivar s_tag: The identifier of the circuit traffic. + :vartype s_tag: int + :ivar peering_location: The peering location of the ExpressRoute circuit. + :vartype peering_location: str + :ivar bandwidth_in_mbps: The circuit bandwidth In Mbps. + :vartype bandwidth_in_mbps: int + :ivar express_route_circuit: The ExpressRouteCircuit. + :vartype express_route_circuit: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitReference + :ivar service_provider_provisioning_state: The provisioning state of the circuit in the + connectivity provider system. Possible values include: "NotProvisioned", "Provisioning", + "Provisioned", "Deprovisioning". + :vartype service_provider_provisioning_state: str or + ~azure.mgmt.network.v2021_08_01.models.ServiceProviderProvisioningState + :ivar service_provider_notes: Additional read only notes set by the connectivity provider. + :vartype service_provider_notes: str + :ivar provisioning_state: The provisioning state of the express route cross connection + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar peerings: The list of peerings. + :vartype peerings: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'primary_azure_port': {'readonly': True}, + 'secondary_azure_port': {'readonly': True}, + 's_tag': {'readonly': True}, + 'peering_location': {'readonly': True}, + 'bandwidth_in_mbps': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'primary_azure_port': {'key': 'properties.primaryAzurePort', 'type': 'str'}, + 'secondary_azure_port': {'key': 'properties.secondaryAzurePort', 'type': 'str'}, + 's_tag': {'key': 'properties.sTag', 'type': 'int'}, + 'peering_location': {'key': 'properties.peeringLocation', 'type': 'str'}, + 'bandwidth_in_mbps': {'key': 'properties.bandwidthInMbps', 'type': 'int'}, + 'express_route_circuit': {'key': 'properties.expressRouteCircuit', 'type': 'ExpressRouteCircuitReference'}, + 'service_provider_provisioning_state': {'key': 'properties.serviceProviderProvisioningState', 'type': 'str'}, + 'service_provider_notes': {'key': 'properties.serviceProviderNotes', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'peerings': {'key': 'properties.peerings', 'type': '[ExpressRouteCrossConnectionPeering]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + express_route_circuit: Optional["ExpressRouteCircuitReference"] = None, + service_provider_provisioning_state: Optional[Union[str, "ServiceProviderProvisioningState"]] = None, + service_provider_notes: Optional[str] = None, + peerings: Optional[List["ExpressRouteCrossConnectionPeering"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword express_route_circuit: The ExpressRouteCircuit. + :paramtype express_route_circuit: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitReference + :keyword service_provider_provisioning_state: The provisioning state of the circuit in the + connectivity provider system. Possible values include: "NotProvisioned", "Provisioning", + "Provisioned", "Deprovisioning". + :paramtype service_provider_provisioning_state: str or + ~azure.mgmt.network.v2021_08_01.models.ServiceProviderProvisioningState + :keyword service_provider_notes: Additional read only notes set by the connectivity provider. + :paramtype service_provider_notes: str + :keyword peerings: The list of peerings. + :paramtype peerings: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering] + """ + super(ExpressRouteCrossConnection, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.primary_azure_port = None + self.secondary_azure_port = None + self.s_tag = None + self.peering_location = None + self.bandwidth_in_mbps = None + self.express_route_circuit = express_route_circuit + self.service_provider_provisioning_state = service_provider_provisioning_state + self.service_provider_notes = service_provider_notes + self.provisioning_state = None + self.peerings = peerings + + +class ExpressRouteCrossConnectionListResult(msrest.serialization.Model): + """Response for ListExpressRouteCrossConnection API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of ExpressRouteCrossConnection resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCrossConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCrossConnection"]] = None, + **kwargs + ): + """ + :keyword value: A list of ExpressRouteCrossConnection resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection] + """ + super(ExpressRouteCrossConnectionListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class ExpressRouteCrossConnectionPeering(SubResource): + """Peering in an ExpressRoute Cross Connection resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar peering_type: The peering type. Possible values include: "AzurePublicPeering", + "AzurePrivatePeering", "MicrosoftPeering". + :vartype peering_type: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePeeringType + :ivar state: The peering state. Possible values include: "Disabled", "Enabled". + :vartype state: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePeeringState + :ivar azure_asn: The Azure ASN. + :vartype azure_asn: int + :ivar peer_asn: The peer ASN. + :vartype peer_asn: long + :ivar primary_peer_address_prefix: The primary address prefix. + :vartype primary_peer_address_prefix: str + :ivar secondary_peer_address_prefix: The secondary address prefix. + :vartype secondary_peer_address_prefix: str + :ivar primary_azure_port: The primary port. + :vartype primary_azure_port: str + :ivar secondary_azure_port: The secondary port. + :vartype secondary_azure_port: str + :ivar shared_key: The shared key. + :vartype shared_key: str + :ivar vlan_id: The VLAN ID. + :vartype vlan_id: int + :ivar microsoft_peering_config: The Microsoft peering configuration. + :vartype microsoft_peering_config: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringConfig + :ivar provisioning_state: The provisioning state of the express route cross connection peering + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar gateway_manager_etag: The GatewayManager Etag. + :vartype gateway_manager_etag: str + :ivar last_modified_by: Who was the last to modify the peering. + :vartype last_modified_by: str + :ivar ipv6_peering_config: The IPv6 peering configuration. + :vartype ipv6_peering_config: + ~azure.mgmt.network.v2021_08_01.models.Ipv6ExpressRouteCircuitPeeringConfig + """ + + _validation = { + 'etag': {'readonly': True}, + 'azure_asn': {'readonly': True}, + 'peer_asn': {'maximum': 4294967295, 'minimum': 1}, + 'primary_azure_port': {'readonly': True}, + 'secondary_azure_port': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'last_modified_by': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'peering_type': {'key': 'properties.peeringType', 'type': 'str'}, + 'state': {'key': 'properties.state', 'type': 'str'}, + 'azure_asn': {'key': 'properties.azureASN', 'type': 'int'}, + 'peer_asn': {'key': 'properties.peerASN', 'type': 'long'}, + 'primary_peer_address_prefix': {'key': 'properties.primaryPeerAddressPrefix', 'type': 'str'}, + 'secondary_peer_address_prefix': {'key': 'properties.secondaryPeerAddressPrefix', 'type': 'str'}, + 'primary_azure_port': {'key': 'properties.primaryAzurePort', 'type': 'str'}, + 'secondary_azure_port': {'key': 'properties.secondaryAzurePort', 'type': 'str'}, + 'shared_key': {'key': 'properties.sharedKey', 'type': 'str'}, + 'vlan_id': {'key': 'properties.vlanId', 'type': 'int'}, + 'microsoft_peering_config': {'key': 'properties.microsoftPeeringConfig', 'type': 'ExpressRouteCircuitPeeringConfig'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'gateway_manager_etag': {'key': 'properties.gatewayManagerEtag', 'type': 'str'}, + 'last_modified_by': {'key': 'properties.lastModifiedBy', 'type': 'str'}, + 'ipv6_peering_config': {'key': 'properties.ipv6PeeringConfig', 'type': 'Ipv6ExpressRouteCircuitPeeringConfig'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + peering_type: Optional[Union[str, "ExpressRoutePeeringType"]] = None, + state: Optional[Union[str, "ExpressRoutePeeringState"]] = None, + peer_asn: Optional[int] = None, + primary_peer_address_prefix: Optional[str] = None, + secondary_peer_address_prefix: Optional[str] = None, + shared_key: Optional[str] = None, + vlan_id: Optional[int] = None, + microsoft_peering_config: Optional["ExpressRouteCircuitPeeringConfig"] = None, + gateway_manager_etag: Optional[str] = None, + ipv6_peering_config: Optional["Ipv6ExpressRouteCircuitPeeringConfig"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword peering_type: The peering type. Possible values include: "AzurePublicPeering", + "AzurePrivatePeering", "MicrosoftPeering". + :paramtype peering_type: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePeeringType + :keyword state: The peering state. Possible values include: "Disabled", "Enabled". + :paramtype state: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePeeringState + :keyword peer_asn: The peer ASN. + :paramtype peer_asn: long + :keyword primary_peer_address_prefix: The primary address prefix. + :paramtype primary_peer_address_prefix: str + :keyword secondary_peer_address_prefix: The secondary address prefix. + :paramtype secondary_peer_address_prefix: str + :keyword shared_key: The shared key. + :paramtype shared_key: str + :keyword vlan_id: The VLAN ID. + :paramtype vlan_id: int + :keyword microsoft_peering_config: The Microsoft peering configuration. + :paramtype microsoft_peering_config: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringConfig + :keyword gateway_manager_etag: The GatewayManager Etag. + :paramtype gateway_manager_etag: str + :keyword ipv6_peering_config: The IPv6 peering configuration. + :paramtype ipv6_peering_config: + ~azure.mgmt.network.v2021_08_01.models.Ipv6ExpressRouteCircuitPeeringConfig + """ + super(ExpressRouteCrossConnectionPeering, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.peering_type = peering_type + self.state = state + self.azure_asn = None + self.peer_asn = peer_asn + self.primary_peer_address_prefix = primary_peer_address_prefix + self.secondary_peer_address_prefix = secondary_peer_address_prefix + self.primary_azure_port = None + self.secondary_azure_port = None + self.shared_key = shared_key + self.vlan_id = vlan_id + self.microsoft_peering_config = microsoft_peering_config + self.provisioning_state = None + self.gateway_manager_etag = gateway_manager_etag + self.last_modified_by = None + self.ipv6_peering_config = ipv6_peering_config + + +class ExpressRouteCrossConnectionPeeringList(msrest.serialization.Model): + """Response for ListPeering API service call retrieves all peerings that belong to an ExpressRouteCrossConnection. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: The peerings in an express route cross connection. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCrossConnectionPeering]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCrossConnectionPeering"]] = None, + **kwargs + ): + """ + :keyword value: The peerings in an express route cross connection. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering] + """ + super(ExpressRouteCrossConnectionPeeringList, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class ExpressRouteCrossConnectionRoutesTableSummary(msrest.serialization.Model): + """The routes table associated with the ExpressRouteCircuit. + + :ivar neighbor: IP address of Neighbor router. + :vartype neighbor: str + :ivar asn: Autonomous system number. + :vartype asn: int + :ivar up_down: The length of time that the BGP session has been in the Established state, or + the current status if not in the Established state. + :vartype up_down: str + :ivar state_or_prefixes_received: Current state of the BGP session, and the number of prefixes + that have been received from a neighbor or peer group. + :vartype state_or_prefixes_received: str + """ + + _attribute_map = { + 'neighbor': {'key': 'neighbor', 'type': 'str'}, + 'asn': {'key': 'asn', 'type': 'int'}, + 'up_down': {'key': 'upDown', 'type': 'str'}, + 'state_or_prefixes_received': {'key': 'stateOrPrefixesReceived', 'type': 'str'}, + } + + def __init__( + self, + *, + neighbor: Optional[str] = None, + asn: Optional[int] = None, + up_down: Optional[str] = None, + state_or_prefixes_received: Optional[str] = None, + **kwargs + ): + """ + :keyword neighbor: IP address of Neighbor router. + :paramtype neighbor: str + :keyword asn: Autonomous system number. + :paramtype asn: int + :keyword up_down: The length of time that the BGP session has been in the Established state, or + the current status if not in the Established state. + :paramtype up_down: str + :keyword state_or_prefixes_received: Current state of the BGP session, and the number of + prefixes that have been received from a neighbor or peer group. + :paramtype state_or_prefixes_received: str + """ + super(ExpressRouteCrossConnectionRoutesTableSummary, self).__init__(**kwargs) + self.neighbor = neighbor + self.asn = asn + self.up_down = up_down + self.state_or_prefixes_received = state_or_prefixes_received + + +class ExpressRouteCrossConnectionsRoutesTableSummaryListResult(msrest.serialization.Model): + """Response for ListRoutesTable associated with the Express Route Cross Connections. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of the routes table. + :vartype value: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionRoutesTableSummary] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteCrossConnectionRoutesTableSummary]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteCrossConnectionRoutesTableSummary"]] = None, + **kwargs + ): + """ + :keyword value: A list of the routes table. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionRoutesTableSummary] + """ + super(ExpressRouteCrossConnectionsRoutesTableSummaryListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class ExpressRouteGateway(Resource): + """ExpressRoute gateway resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar auto_scale_configuration: Configuration for auto scaling. + :vartype auto_scale_configuration: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGatewayPropertiesAutoScaleConfiguration + :ivar express_route_connections: List of ExpressRoute connections to the ExpressRoute gateway. + :vartype express_route_connections: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection] + :ivar provisioning_state: The provisioning state of the express route gateway resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar virtual_hub: The Virtual Hub where the ExpressRoute gateway is or will be deployed. + :vartype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.VirtualHubId + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'auto_scale_configuration': {'key': 'properties.autoScaleConfiguration', 'type': 'ExpressRouteGatewayPropertiesAutoScaleConfiguration'}, + 'express_route_connections': {'key': 'properties.expressRouteConnections', 'type': '[ExpressRouteConnection]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'virtual_hub': {'key': 'properties.virtualHub', 'type': 'VirtualHubId'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + auto_scale_configuration: Optional["ExpressRouteGatewayPropertiesAutoScaleConfiguration"] = None, + express_route_connections: Optional[List["ExpressRouteConnection"]] = None, + virtual_hub: Optional["VirtualHubId"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword auto_scale_configuration: Configuration for auto scaling. + :paramtype auto_scale_configuration: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGatewayPropertiesAutoScaleConfiguration + :keyword express_route_connections: List of ExpressRoute connections to the ExpressRoute + gateway. + :paramtype express_route_connections: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection] + :keyword virtual_hub: The Virtual Hub where the ExpressRoute gateway is or will be deployed. + :paramtype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.VirtualHubId + """ + super(ExpressRouteGateway, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.auto_scale_configuration = auto_scale_configuration + self.express_route_connections = express_route_connections + self.provisioning_state = None + self.virtual_hub = virtual_hub + + +class ExpressRouteGatewayList(msrest.serialization.Model): + """List of ExpressRoute gateways. + + :ivar value: List of ExpressRoute gateways. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteGateway]'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteGateway"]] = None, + **kwargs + ): + """ + :keyword value: List of ExpressRoute gateways. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway] + """ + super(ExpressRouteGatewayList, self).__init__(**kwargs) + self.value = value + + +class ExpressRouteGatewayPropertiesAutoScaleConfiguration(msrest.serialization.Model): + """Configuration for auto scaling. + + :ivar bounds: Minimum and maximum number of scale units to deploy. + :vartype bounds: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds + """ + + _attribute_map = { + 'bounds': {'key': 'bounds', 'type': 'ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds'}, + } + + def __init__( + self, + *, + bounds: Optional["ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds"] = None, + **kwargs + ): + """ + :keyword bounds: Minimum and maximum number of scale units to deploy. + :paramtype bounds: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds + """ + super(ExpressRouteGatewayPropertiesAutoScaleConfiguration, self).__init__(**kwargs) + self.bounds = bounds + + +class ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds(msrest.serialization.Model): + """Minimum and maximum number of scale units to deploy. + + :ivar min: Minimum number of scale units deployed for ExpressRoute gateway. + :vartype min: int + :ivar max: Maximum number of scale units deployed for ExpressRoute gateway. + :vartype max: int + """ + + _attribute_map = { + 'min': {'key': 'min', 'type': 'int'}, + 'max': {'key': 'max', 'type': 'int'}, + } + + def __init__( + self, + *, + min: Optional[int] = None, + max: Optional[int] = None, + **kwargs + ): + """ + :keyword min: Minimum number of scale units deployed for ExpressRoute gateway. + :paramtype min: int + :keyword max: Maximum number of scale units deployed for ExpressRoute gateway. + :paramtype max: int + """ + super(ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, self).__init__(**kwargs) + self.min = min + self.max = max + + +class ExpressRouteLink(SubResource): + """ExpressRouteLink child resource definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of child port resource that is unique among child port resources of the + parent. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar router_name: Name of Azure router associated with physical port. + :vartype router_name: str + :ivar interface_name: Name of Azure router interface. + :vartype interface_name: str + :ivar patch_panel_id: Mapping between physical port to patch panel port. + :vartype patch_panel_id: str + :ivar rack_id: Mapping of physical patch panel to rack. + :vartype rack_id: str + :ivar connector_type: Physical fiber port type. Possible values include: "LC", "SC". + :vartype connector_type: str or + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkConnectorType + :ivar admin_state: Administrative state of the physical port. Possible values include: + "Enabled", "Disabled". + :vartype admin_state: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkAdminState + :ivar provisioning_state: The provisioning state of the express route link resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar mac_sec_config: MacSec configuration. + :vartype mac_sec_config: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkMacSecConfig + """ + + _validation = { + 'etag': {'readonly': True}, + 'router_name': {'readonly': True}, + 'interface_name': {'readonly': True}, + 'patch_panel_id': {'readonly': True}, + 'rack_id': {'readonly': True}, + 'connector_type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'router_name': {'key': 'properties.routerName', 'type': 'str'}, + 'interface_name': {'key': 'properties.interfaceName', 'type': 'str'}, + 'patch_panel_id': {'key': 'properties.patchPanelId', 'type': 'str'}, + 'rack_id': {'key': 'properties.rackId', 'type': 'str'}, + 'connector_type': {'key': 'properties.connectorType', 'type': 'str'}, + 'admin_state': {'key': 'properties.adminState', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'mac_sec_config': {'key': 'properties.macSecConfig', 'type': 'ExpressRouteLinkMacSecConfig'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + admin_state: Optional[Union[str, "ExpressRouteLinkAdminState"]] = None, + mac_sec_config: Optional["ExpressRouteLinkMacSecConfig"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of child port resource that is unique among child port resources of the + parent. + :paramtype name: str + :keyword admin_state: Administrative state of the physical port. Possible values include: + "Enabled", "Disabled". + :paramtype admin_state: str or + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkAdminState + :keyword mac_sec_config: MacSec configuration. + :paramtype mac_sec_config: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkMacSecConfig + """ + super(ExpressRouteLink, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.router_name = None + self.interface_name = None + self.patch_panel_id = None + self.rack_id = None + self.connector_type = None + self.admin_state = admin_state + self.provisioning_state = None + self.mac_sec_config = mac_sec_config + + +class ExpressRouteLinkListResult(msrest.serialization.Model): + """Response for ListExpressRouteLinks API service call. + + :ivar value: The list of ExpressRouteLink sub-resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteLink] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteLink]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteLink"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The list of ExpressRouteLink sub-resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteLink] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRouteLinkListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRouteLinkMacSecConfig(msrest.serialization.Model): + """ExpressRouteLink Mac Security Configuration. + + :ivar ckn_secret_identifier: Keyvault Secret Identifier URL containing Mac security CKN key. + :vartype ckn_secret_identifier: str + :ivar cak_secret_identifier: Keyvault Secret Identifier URL containing Mac security CAK key. + :vartype cak_secret_identifier: str + :ivar cipher: Mac security cipher. Possible values include: "GcmAes256", "GcmAes128", + "GcmAesXpn128", "GcmAesXpn256". + :vartype cipher: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkMacSecCipher + :ivar sci_state: Sci mode enabled/disabled. Possible values include: "Disabled", "Enabled". + :vartype sci_state: str or + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkMacSecSciState + """ + + _attribute_map = { + 'ckn_secret_identifier': {'key': 'cknSecretIdentifier', 'type': 'str'}, + 'cak_secret_identifier': {'key': 'cakSecretIdentifier', 'type': 'str'}, + 'cipher': {'key': 'cipher', 'type': 'str'}, + 'sci_state': {'key': 'sciState', 'type': 'str'}, + } + + def __init__( + self, + *, + ckn_secret_identifier: Optional[str] = None, + cak_secret_identifier: Optional[str] = None, + cipher: Optional[Union[str, "ExpressRouteLinkMacSecCipher"]] = None, + sci_state: Optional[Union[str, "ExpressRouteLinkMacSecSciState"]] = None, + **kwargs + ): + """ + :keyword ckn_secret_identifier: Keyvault Secret Identifier URL containing Mac security CKN key. + :paramtype ckn_secret_identifier: str + :keyword cak_secret_identifier: Keyvault Secret Identifier URL containing Mac security CAK key. + :paramtype cak_secret_identifier: str + :keyword cipher: Mac security cipher. Possible values include: "GcmAes256", "GcmAes128", + "GcmAesXpn128", "GcmAesXpn256". + :paramtype cipher: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkMacSecCipher + :keyword sci_state: Sci mode enabled/disabled. Possible values include: "Disabled", "Enabled". + :paramtype sci_state: str or + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkMacSecSciState + """ + super(ExpressRouteLinkMacSecConfig, self).__init__(**kwargs) + self.ckn_secret_identifier = ckn_secret_identifier + self.cak_secret_identifier = cak_secret_identifier + self.cipher = cipher + self.sci_state = sci_state + + +class ExpressRoutePort(Resource): + """ExpressRoutePort resource definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar identity: The identity of ExpressRoutePort, if configured. + :vartype identity: ~azure.mgmt.network.v2021_08_01.models.ManagedServiceIdentity + :ivar peering_location: The name of the peering location that the ExpressRoutePort is mapped to + physically. + :vartype peering_location: str + :ivar bandwidth_in_gbps: Bandwidth of procured ports in Gbps. + :vartype bandwidth_in_gbps: int + :ivar provisioned_bandwidth_in_gbps: Aggregate Gbps of associated circuit bandwidths. + :vartype provisioned_bandwidth_in_gbps: float + :ivar mtu: Maximum transmission unit of the physical port pair(s). + :vartype mtu: str + :ivar encapsulation: Encapsulation method on physical ports. Possible values include: "Dot1Q", + "QinQ". + :vartype encapsulation: str or + ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsEncapsulation + :ivar ether_type: Ether type of the physical port. + :vartype ether_type: str + :ivar allocation_date: Date of the physical port allocation to be used in Letter of + Authorization. + :vartype allocation_date: str + :ivar links: The set of physical links of the ExpressRoutePort resource. + :vartype links: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteLink] + :ivar circuits: Reference the ExpressRoute circuit(s) that are provisioned on this + ExpressRoutePort resource. + :vartype circuits: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar provisioning_state: The provisioning state of the express route port resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar resource_guid: The resource GUID property of the express route port resource. + :vartype resource_guid: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioned_bandwidth_in_gbps': {'readonly': True}, + 'mtu': {'readonly': True}, + 'ether_type': {'readonly': True}, + 'allocation_date': {'readonly': True}, + 'circuits': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'resource_guid': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'identity': {'key': 'identity', 'type': 'ManagedServiceIdentity'}, + 'peering_location': {'key': 'properties.peeringLocation', 'type': 'str'}, + 'bandwidth_in_gbps': {'key': 'properties.bandwidthInGbps', 'type': 'int'}, + 'provisioned_bandwidth_in_gbps': {'key': 'properties.provisionedBandwidthInGbps', 'type': 'float'}, + 'mtu': {'key': 'properties.mtu', 'type': 'str'}, + 'encapsulation': {'key': 'properties.encapsulation', 'type': 'str'}, + 'ether_type': {'key': 'properties.etherType', 'type': 'str'}, + 'allocation_date': {'key': 'properties.allocationDate', 'type': 'str'}, + 'links': {'key': 'properties.links', 'type': '[ExpressRouteLink]'}, + 'circuits': {'key': 'properties.circuits', 'type': '[SubResource]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + identity: Optional["ManagedServiceIdentity"] = None, + peering_location: Optional[str] = None, + bandwidth_in_gbps: Optional[int] = None, + encapsulation: Optional[Union[str, "ExpressRoutePortsEncapsulation"]] = None, + links: Optional[List["ExpressRouteLink"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword identity: The identity of ExpressRoutePort, if configured. + :paramtype identity: ~azure.mgmt.network.v2021_08_01.models.ManagedServiceIdentity + :keyword peering_location: The name of the peering location that the ExpressRoutePort is mapped + to physically. + :paramtype peering_location: str + :keyword bandwidth_in_gbps: Bandwidth of procured ports in Gbps. + :paramtype bandwidth_in_gbps: int + :keyword encapsulation: Encapsulation method on physical ports. Possible values include: + "Dot1Q", "QinQ". + :paramtype encapsulation: str or + ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsEncapsulation + :keyword links: The set of physical links of the ExpressRoutePort resource. + :paramtype links: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteLink] + """ + super(ExpressRoutePort, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.identity = identity + self.peering_location = peering_location + self.bandwidth_in_gbps = bandwidth_in_gbps + self.provisioned_bandwidth_in_gbps = None + self.mtu = None + self.encapsulation = encapsulation + self.ether_type = None + self.allocation_date = None + self.links = links + self.circuits = None + self.provisioning_state = None + self.resource_guid = None + + +class ExpressRoutePortAuthorization(SubResource): + """ExpressRoutePort Authorization resource definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar authorization_key: The authorization key. + :vartype authorization_key: str + :ivar authorization_use_status: The authorization use status. Possible values include: + "Available", "InUse". + :vartype authorization_use_status: str or + ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorizationUseStatus + :ivar circuit_resource_uri: The reference to the ExpressRoute circuit resource using the + authorization. + :vartype circuit_resource_uri: str + :ivar provisioning_state: The provisioning state of the authorization resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'authorization_key': {'readonly': True}, + 'authorization_use_status': {'readonly': True}, + 'circuit_resource_uri': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'}, + 'authorization_use_status': {'key': 'properties.authorizationUseStatus', 'type': 'str'}, + 'circuit_resource_uri': {'key': 'properties.circuitResourceUri', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + """ + super(ExpressRoutePortAuthorization, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.authorization_key = None + self.authorization_use_status = None + self.circuit_resource_uri = None + self.provisioning_state = None + + +class ExpressRoutePortAuthorizationListResult(msrest.serialization.Model): + """Response for ListExpressRoutePortAuthorizations API service call. + + :ivar value: The authorizations in an ExpressRoute Port. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorization] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRoutePortAuthorization]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRoutePortAuthorization"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The authorizations in an ExpressRoute Port. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorization] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRoutePortAuthorizationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRoutePortListResult(msrest.serialization.Model): + """Response for ListExpressRoutePorts API service call. + + :ivar value: A list of ExpressRoutePort resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRoutePort]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRoutePort"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of ExpressRoutePort resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRoutePortListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRoutePortsLocation(Resource): + """Definition of the ExpressRoutePorts peering location resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar address: Address of peering location. + :vartype address: str + :ivar contact: Contact details of peering locations. + :vartype contact: str + :ivar available_bandwidths: The inventory of available ExpressRoutePort bandwidths. + :vartype available_bandwidths: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsLocationBandwidths] + :ivar provisioning_state: The provisioning state of the express route port location resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'address': {'readonly': True}, + 'contact': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'address': {'key': 'properties.address', 'type': 'str'}, + 'contact': {'key': 'properties.contact', 'type': 'str'}, + 'available_bandwidths': {'key': 'properties.availableBandwidths', 'type': '[ExpressRoutePortsLocationBandwidths]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + available_bandwidths: Optional[List["ExpressRoutePortsLocationBandwidths"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword available_bandwidths: The inventory of available ExpressRoutePort bandwidths. + :paramtype available_bandwidths: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsLocationBandwidths] + """ + super(ExpressRoutePortsLocation, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.address = None + self.contact = None + self.available_bandwidths = available_bandwidths + self.provisioning_state = None + + +class ExpressRoutePortsLocationBandwidths(msrest.serialization.Model): + """Real-time inventory of available ExpressRoute port bandwidths. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar offer_name: Bandwidth descriptive name. + :vartype offer_name: str + :ivar value_in_gbps: Bandwidth value in Gbps. + :vartype value_in_gbps: int + """ + + _validation = { + 'offer_name': {'readonly': True}, + 'value_in_gbps': {'readonly': True}, + } + + _attribute_map = { + 'offer_name': {'key': 'offerName', 'type': 'str'}, + 'value_in_gbps': {'key': 'valueInGbps', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(ExpressRoutePortsLocationBandwidths, self).__init__(**kwargs) + self.offer_name = None + self.value_in_gbps = None + + +class ExpressRoutePortsLocationListResult(msrest.serialization.Model): + """Response for ListExpressRoutePortsLocations API service call. + + :ivar value: The list of all ExpressRoutePort peering locations. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsLocation] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRoutePortsLocation]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRoutePortsLocation"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The list of all ExpressRoutePort peering locations. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsLocation] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRoutePortsLocationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExpressRouteServiceProvider(Resource): + """A ExpressRouteResourceProvider object. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar peering_locations: A list of peering locations. + :vartype peering_locations: list[str] + :ivar bandwidths_offered: A list of bandwidths offered. + :vartype bandwidths_offered: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteServiceProviderBandwidthsOffered] + :ivar provisioning_state: The provisioning state of the express route service provider + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'peering_locations': {'key': 'properties.peeringLocations', 'type': '[str]'}, + 'bandwidths_offered': {'key': 'properties.bandwidthsOffered', 'type': '[ExpressRouteServiceProviderBandwidthsOffered]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + peering_locations: Optional[List[str]] = None, + bandwidths_offered: Optional[List["ExpressRouteServiceProviderBandwidthsOffered"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword peering_locations: A list of peering locations. + :paramtype peering_locations: list[str] + :keyword bandwidths_offered: A list of bandwidths offered. + :paramtype bandwidths_offered: + list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteServiceProviderBandwidthsOffered] + """ + super(ExpressRouteServiceProvider, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.peering_locations = peering_locations + self.bandwidths_offered = bandwidths_offered + self.provisioning_state = None + + +class ExpressRouteServiceProviderBandwidthsOffered(msrest.serialization.Model): + """Contains bandwidths offered in ExpressRouteServiceProvider resources. + + :ivar offer_name: The OfferName. + :vartype offer_name: str + :ivar value_in_mbps: The ValueInMbps. + :vartype value_in_mbps: int + """ + + _attribute_map = { + 'offer_name': {'key': 'offerName', 'type': 'str'}, + 'value_in_mbps': {'key': 'valueInMbps', 'type': 'int'}, + } + + def __init__( + self, + *, + offer_name: Optional[str] = None, + value_in_mbps: Optional[int] = None, + **kwargs + ): + """ + :keyword offer_name: The OfferName. + :paramtype offer_name: str + :keyword value_in_mbps: The ValueInMbps. + :paramtype value_in_mbps: int + """ + super(ExpressRouteServiceProviderBandwidthsOffered, self).__init__(**kwargs) + self.offer_name = offer_name + self.value_in_mbps = value_in_mbps + + +class ExpressRouteServiceProviderListResult(msrest.serialization.Model): + """Response for the ListExpressRouteServiceProvider API service call. + + :ivar value: A list of ExpressRouteResourceProvider resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteServiceProvider] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ExpressRouteServiceProvider]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ExpressRouteServiceProvider"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of ExpressRouteResourceProvider resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteServiceProvider] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ExpressRouteServiceProviderListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ExtendedLocation(msrest.serialization.Model): + """ExtendedLocation complex type. + + :ivar name: The name of the extended location. + :vartype name: str + :ivar type: The type of the extended location. Possible values include: "EdgeZone". + :vartype type: str or ~azure.mgmt.network.v2021_08_01.models.ExtendedLocationTypes + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + type: Optional[Union[str, "ExtendedLocationTypes"]] = None, + **kwargs + ): + """ + :keyword name: The name of the extended location. + :paramtype name: str + :keyword type: The type of the extended location. Possible values include: "EdgeZone". + :paramtype type: str or ~azure.mgmt.network.v2021_08_01.models.ExtendedLocationTypes + """ + super(ExtendedLocation, self).__init__(**kwargs) + self.name = name + self.type = type + + +class FilterItems(msrest.serialization.Model): + """Will contain the filter name and values to operate on. + + :ivar field: The name of the field we would like to filter. + :vartype field: str + :ivar values: List of values to filter the current field by. + :vartype values: list[str] + """ + + _attribute_map = { + 'field': {'key': 'field', 'type': 'str'}, + 'values': {'key': 'values', 'type': '[str]'}, + } + + def __init__( + self, + *, + field: Optional[str] = None, + values: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword field: The name of the field we would like to filter. + :paramtype field: str + :keyword values: List of values to filter the current field by. + :paramtype values: list[str] + """ + super(FilterItems, self).__init__(**kwargs) + self.field = field + self.values = values + + +class FirewallPolicy(Resource): + """FirewallPolicy Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar identity: The identity of the firewall policy. + :vartype identity: ~azure.mgmt.network.v2021_08_01.models.ManagedServiceIdentity + :ivar rule_collection_groups: List of references to FirewallPolicyRuleCollectionGroups. + :vartype rule_collection_groups: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar provisioning_state: The provisioning state of the firewall policy resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar base_policy: The parent firewall policy from which rules are inherited. + :vartype base_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar firewalls: List of references to Azure Firewalls that this Firewall Policy is associated + with. + :vartype firewalls: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar child_policies: List of references to Child Firewall Policies. + :vartype child_policies: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar threat_intel_mode: The operation mode for Threat Intelligence. Possible values include: + "Alert", "Deny", "Off". + :vartype threat_intel_mode: str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallThreatIntelMode + :ivar threat_intel_whitelist: ThreatIntel Whitelist for Firewall Policy. + :vartype threat_intel_whitelist: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyThreatIntelWhitelist + :ivar insights: Insights on Firewall Policy. + :vartype insights: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyInsights + :ivar snat: The private IP addresses/IP ranges to which traffic will not be SNAT. + :vartype snat: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicySNAT + :ivar sql: SQL Settings definition. + :vartype sql: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicySQL + :ivar dns_settings: DNS Proxy Settings definition. + :vartype dns_settings: ~azure.mgmt.network.v2021_08_01.models.DnsSettings + :ivar explicit_proxy_settings: Explicit Proxy Settings definition. + :vartype explicit_proxy_settings: ~azure.mgmt.network.v2021_08_01.models.ExplicitProxySettings + :ivar intrusion_detection: The configuration for Intrusion detection. + :vartype intrusion_detection: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetection + :ivar transport_security: TLS Configuration definition. + :vartype transport_security: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyTransportSecurity + :ivar sku: The Firewall Policy SKU. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicySku + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'rule_collection_groups': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'firewalls': {'readonly': True}, + 'child_policies': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'identity': {'key': 'identity', 'type': 'ManagedServiceIdentity'}, + 'rule_collection_groups': {'key': 'properties.ruleCollectionGroups', 'type': '[SubResource]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'base_policy': {'key': 'properties.basePolicy', 'type': 'SubResource'}, + 'firewalls': {'key': 'properties.firewalls', 'type': '[SubResource]'}, + 'child_policies': {'key': 'properties.childPolicies', 'type': '[SubResource]'}, + 'threat_intel_mode': {'key': 'properties.threatIntelMode', 'type': 'str'}, + 'threat_intel_whitelist': {'key': 'properties.threatIntelWhitelist', 'type': 'FirewallPolicyThreatIntelWhitelist'}, + 'insights': {'key': 'properties.insights', 'type': 'FirewallPolicyInsights'}, + 'snat': {'key': 'properties.snat', 'type': 'FirewallPolicySNAT'}, + 'sql': {'key': 'properties.sql', 'type': 'FirewallPolicySQL'}, + 'dns_settings': {'key': 'properties.dnsSettings', 'type': 'DnsSettings'}, + 'explicit_proxy_settings': {'key': 'properties.explicitProxySettings', 'type': 'ExplicitProxySettings'}, + 'intrusion_detection': {'key': 'properties.intrusionDetection', 'type': 'FirewallPolicyIntrusionDetection'}, + 'transport_security': {'key': 'properties.transportSecurity', 'type': 'FirewallPolicyTransportSecurity'}, + 'sku': {'key': 'properties.sku', 'type': 'FirewallPolicySku'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + identity: Optional["ManagedServiceIdentity"] = None, + base_policy: Optional["SubResource"] = None, + threat_intel_mode: Optional[Union[str, "AzureFirewallThreatIntelMode"]] = None, + threat_intel_whitelist: Optional["FirewallPolicyThreatIntelWhitelist"] = None, + insights: Optional["FirewallPolicyInsights"] = None, + snat: Optional["FirewallPolicySNAT"] = None, + sql: Optional["FirewallPolicySQL"] = None, + dns_settings: Optional["DnsSettings"] = None, + explicit_proxy_settings: Optional["ExplicitProxySettings"] = None, + intrusion_detection: Optional["FirewallPolicyIntrusionDetection"] = None, + transport_security: Optional["FirewallPolicyTransportSecurity"] = None, + sku: Optional["FirewallPolicySku"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword identity: The identity of the firewall policy. + :paramtype identity: ~azure.mgmt.network.v2021_08_01.models.ManagedServiceIdentity + :keyword base_policy: The parent firewall policy from which rules are inherited. + :paramtype base_policy: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword threat_intel_mode: The operation mode for Threat Intelligence. Possible values + include: "Alert", "Deny", "Off". + :paramtype threat_intel_mode: str or + ~azure.mgmt.network.v2021_08_01.models.AzureFirewallThreatIntelMode + :keyword threat_intel_whitelist: ThreatIntel Whitelist for Firewall Policy. + :paramtype threat_intel_whitelist: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyThreatIntelWhitelist + :keyword insights: Insights on Firewall Policy. + :paramtype insights: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyInsights + :keyword snat: The private IP addresses/IP ranges to which traffic will not be SNAT. + :paramtype snat: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicySNAT + :keyword sql: SQL Settings definition. + :paramtype sql: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicySQL + :keyword dns_settings: DNS Proxy Settings definition. + :paramtype dns_settings: ~azure.mgmt.network.v2021_08_01.models.DnsSettings + :keyword explicit_proxy_settings: Explicit Proxy Settings definition. + :paramtype explicit_proxy_settings: + ~azure.mgmt.network.v2021_08_01.models.ExplicitProxySettings + :keyword intrusion_detection: The configuration for Intrusion detection. + :paramtype intrusion_detection: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetection + :keyword transport_security: TLS Configuration definition. + :paramtype transport_security: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyTransportSecurity + :keyword sku: The Firewall Policy SKU. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicySku + """ + super(FirewallPolicy, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.identity = identity + self.rule_collection_groups = None + self.provisioning_state = None + self.base_policy = base_policy + self.firewalls = None + self.child_policies = None + self.threat_intel_mode = threat_intel_mode + self.threat_intel_whitelist = threat_intel_whitelist + self.insights = insights + self.snat = snat + self.sql = sql + self.dns_settings = dns_settings + self.explicit_proxy_settings = explicit_proxy_settings + self.intrusion_detection = intrusion_detection + self.transport_security = transport_security + self.sku = sku + + +class FirewallPolicyCertificateAuthority(msrest.serialization.Model): + """Trusted Root certificates properties for tls. + + :ivar key_vault_secret_id: Secret Id of (base-64 encoded unencrypted pfx) 'Secret' or + 'Certificate' object stored in KeyVault. + :vartype key_vault_secret_id: str + :ivar name: Name of the CA certificate. + :vartype name: str + """ + + _attribute_map = { + 'key_vault_secret_id': {'key': 'keyVaultSecretId', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + } + + def __init__( + self, + *, + key_vault_secret_id: Optional[str] = None, + name: Optional[str] = None, + **kwargs + ): + """ + :keyword key_vault_secret_id: Secret Id of (base-64 encoded unencrypted pfx) 'Secret' or + 'Certificate' object stored in KeyVault. + :paramtype key_vault_secret_id: str + :keyword name: Name of the CA certificate. + :paramtype name: str + """ + super(FirewallPolicyCertificateAuthority, self).__init__(**kwargs) + self.key_vault_secret_id = key_vault_secret_id + self.name = name + + +class FirewallPolicyRuleCollection(msrest.serialization.Model): + """Properties of the rule collection. + + You probably want to use the sub-classes and not this class directly. Known + sub-classes are: FirewallPolicyFilterRuleCollection, FirewallPolicyNatRuleCollection. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_collection_type: Required. The type of the rule collection.Constant filled by + server. Possible values include: "FirewallPolicyNatRuleCollection", + "FirewallPolicyFilterRuleCollection". + :vartype rule_collection_type: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionType + :ivar name: The name of the rule collection. + :vartype name: str + :ivar priority: Priority of the Firewall Policy Rule Collection resource. + :vartype priority: int + """ + + _validation = { + 'rule_collection_type': {'required': True}, + 'priority': {'maximum': 65000, 'minimum': 100}, + } + + _attribute_map = { + 'rule_collection_type': {'key': 'ruleCollectionType', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'priority': {'key': 'priority', 'type': 'int'}, + } + + _subtype_map = { + 'rule_collection_type': {'FirewallPolicyFilterRuleCollection': 'FirewallPolicyFilterRuleCollection', 'FirewallPolicyNatRuleCollection': 'FirewallPolicyNatRuleCollection'} + } + + def __init__( + self, + *, + name: Optional[str] = None, + priority: Optional[int] = None, + **kwargs + ): + """ + :keyword name: The name of the rule collection. + :paramtype name: str + :keyword priority: Priority of the Firewall Policy Rule Collection resource. + :paramtype priority: int + """ + super(FirewallPolicyRuleCollection, self).__init__(**kwargs) + self.rule_collection_type = None # type: Optional[str] + self.name = name + self.priority = priority + + +class FirewallPolicyFilterRuleCollection(FirewallPolicyRuleCollection): + """Firewall Policy Filter Rule Collection. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_collection_type: Required. The type of the rule collection.Constant filled by + server. Possible values include: "FirewallPolicyNatRuleCollection", + "FirewallPolicyFilterRuleCollection". + :vartype rule_collection_type: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionType + :ivar name: The name of the rule collection. + :vartype name: str + :ivar priority: Priority of the Firewall Policy Rule Collection resource. + :vartype priority: int + :ivar action: The action type of a Filter rule collection. + :vartype action: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyFilterRuleCollectionAction + :ivar rules: List of rules included in a rule collection. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRule] + """ + + _validation = { + 'rule_collection_type': {'required': True}, + 'priority': {'maximum': 65000, 'minimum': 100}, + } + + _attribute_map = { + 'rule_collection_type': {'key': 'ruleCollectionType', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'priority': {'key': 'priority', 'type': 'int'}, + 'action': {'key': 'action', 'type': 'FirewallPolicyFilterRuleCollectionAction'}, + 'rules': {'key': 'rules', 'type': '[FirewallPolicyRule]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + priority: Optional[int] = None, + action: Optional["FirewallPolicyFilterRuleCollectionAction"] = None, + rules: Optional[List["FirewallPolicyRule"]] = None, + **kwargs + ): + """ + :keyword name: The name of the rule collection. + :paramtype name: str + :keyword priority: Priority of the Firewall Policy Rule Collection resource. + :paramtype priority: int + :keyword action: The action type of a Filter rule collection. + :paramtype action: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyFilterRuleCollectionAction + :keyword rules: List of rules included in a rule collection. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRule] + """ + super(FirewallPolicyFilterRuleCollection, self).__init__(name=name, priority=priority, **kwargs) + self.rule_collection_type = 'FirewallPolicyFilterRuleCollection' # type: str + self.action = action + self.rules = rules + + +class FirewallPolicyFilterRuleCollectionAction(msrest.serialization.Model): + """Properties of the FirewallPolicyFilterRuleCollectionAction. + + :ivar type: The type of action. Possible values include: "Allow", "Deny". + :vartype type: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyFilterRuleCollectionActionType + """ + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "FirewallPolicyFilterRuleCollectionActionType"]] = None, + **kwargs + ): + """ + :keyword type: The type of action. Possible values include: "Allow", "Deny". + :paramtype type: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyFilterRuleCollectionActionType + """ + super(FirewallPolicyFilterRuleCollectionAction, self).__init__(**kwargs) + self.type = type + + +class FirewallPolicyInsights(msrest.serialization.Model): + """Firewall Policy Insights. + + :ivar is_enabled: A flag to indicate if the insights are enabled on the policy. + :vartype is_enabled: bool + :ivar retention_days: Number of days the insights should be enabled on the policy. + :vartype retention_days: int + :ivar log_analytics_resources: Workspaces needed to configure the Firewall Policy Insights. + :vartype log_analytics_resources: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyLogAnalyticsResources + """ + + _attribute_map = { + 'is_enabled': {'key': 'isEnabled', 'type': 'bool'}, + 'retention_days': {'key': 'retentionDays', 'type': 'int'}, + 'log_analytics_resources': {'key': 'logAnalyticsResources', 'type': 'FirewallPolicyLogAnalyticsResources'}, + } + + def __init__( + self, + *, + is_enabled: Optional[bool] = None, + retention_days: Optional[int] = None, + log_analytics_resources: Optional["FirewallPolicyLogAnalyticsResources"] = None, + **kwargs + ): + """ + :keyword is_enabled: A flag to indicate if the insights are enabled on the policy. + :paramtype is_enabled: bool + :keyword retention_days: Number of days the insights should be enabled on the policy. + :paramtype retention_days: int + :keyword log_analytics_resources: Workspaces needed to configure the Firewall Policy Insights. + :paramtype log_analytics_resources: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyLogAnalyticsResources + """ + super(FirewallPolicyInsights, self).__init__(**kwargs) + self.is_enabled = is_enabled + self.retention_days = retention_days + self.log_analytics_resources = log_analytics_resources + + +class FirewallPolicyIntrusionDetection(msrest.serialization.Model): + """Configuration for intrusion detection mode and rules. + + :ivar mode: Intrusion detection general state. Possible values include: "Off", "Alert", "Deny". + :vartype mode: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionStateType + :ivar configuration: Intrusion detection configuration properties. + :vartype configuration: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionConfiguration + """ + + _attribute_map = { + 'mode': {'key': 'mode', 'type': 'str'}, + 'configuration': {'key': 'configuration', 'type': 'FirewallPolicyIntrusionDetectionConfiguration'}, + } + + def __init__( + self, + *, + mode: Optional[Union[str, "FirewallPolicyIntrusionDetectionStateType"]] = None, + configuration: Optional["FirewallPolicyIntrusionDetectionConfiguration"] = None, + **kwargs + ): + """ + :keyword mode: Intrusion detection general state. Possible values include: "Off", "Alert", + "Deny". + :paramtype mode: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionStateType + :keyword configuration: Intrusion detection configuration properties. + :paramtype configuration: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionConfiguration + """ + super(FirewallPolicyIntrusionDetection, self).__init__(**kwargs) + self.mode = mode + self.configuration = configuration + + +class FirewallPolicyIntrusionDetectionBypassTrafficSpecifications(msrest.serialization.Model): + """Intrusion detection bypass traffic specification. + + :ivar name: Name of the bypass traffic rule. + :vartype name: str + :ivar description: Description of the bypass traffic rule. + :vartype description: str + :ivar protocol: The rule bypass protocol. Possible values include: "TCP", "UDP", "ICMP", "ANY". + :vartype protocol: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionProtocol + :ivar source_addresses: List of source IP addresses or ranges for this rule. + :vartype source_addresses: list[str] + :ivar destination_addresses: List of destination IP addresses or ranges for this rule. + :vartype destination_addresses: list[str] + :ivar destination_ports: List of destination ports or ranges. + :vartype destination_ports: list[str] + :ivar source_ip_groups: List of source IpGroups for this rule. + :vartype source_ip_groups: list[str] + :ivar destination_ip_groups: List of destination IpGroups for this rule. + :vartype destination_ip_groups: list[str] + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'source_addresses': {'key': 'sourceAddresses', 'type': '[str]'}, + 'destination_addresses': {'key': 'destinationAddresses', 'type': '[str]'}, + 'destination_ports': {'key': 'destinationPorts', 'type': '[str]'}, + 'source_ip_groups': {'key': 'sourceIpGroups', 'type': '[str]'}, + 'destination_ip_groups': {'key': 'destinationIpGroups', 'type': '[str]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + description: Optional[str] = None, + protocol: Optional[Union[str, "FirewallPolicyIntrusionDetectionProtocol"]] = None, + source_addresses: Optional[List[str]] = None, + destination_addresses: Optional[List[str]] = None, + destination_ports: Optional[List[str]] = None, + source_ip_groups: Optional[List[str]] = None, + destination_ip_groups: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword name: Name of the bypass traffic rule. + :paramtype name: str + :keyword description: Description of the bypass traffic rule. + :paramtype description: str + :keyword protocol: The rule bypass protocol. Possible values include: "TCP", "UDP", "ICMP", + "ANY". + :paramtype protocol: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionProtocol + :keyword source_addresses: List of source IP addresses or ranges for this rule. + :paramtype source_addresses: list[str] + :keyword destination_addresses: List of destination IP addresses or ranges for this rule. + :paramtype destination_addresses: list[str] + :keyword destination_ports: List of destination ports or ranges. + :paramtype destination_ports: list[str] + :keyword source_ip_groups: List of source IpGroups for this rule. + :paramtype source_ip_groups: list[str] + :keyword destination_ip_groups: List of destination IpGroups for this rule. + :paramtype destination_ip_groups: list[str] + """ + super(FirewallPolicyIntrusionDetectionBypassTrafficSpecifications, self).__init__(**kwargs) + self.name = name + self.description = description + self.protocol = protocol + self.source_addresses = source_addresses + self.destination_addresses = destination_addresses + self.destination_ports = destination_ports + self.source_ip_groups = source_ip_groups + self.destination_ip_groups = destination_ip_groups + + +class FirewallPolicyIntrusionDetectionConfiguration(msrest.serialization.Model): + """The operation for configuring intrusion detection. + + :ivar signature_overrides: List of specific signatures states. + :vartype signature_overrides: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionSignatureSpecification] + :ivar bypass_traffic_settings: List of rules for traffic to bypass. + :vartype bypass_traffic_settings: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionBypassTrafficSpecifications] + :ivar private_ranges: IDPS Private IP address ranges are used to identify traffic direction + (i.e. inbound, outbound, etc.). By default, only ranges defined by IANA RFC 1918 are considered + private IP addresses. To modify default ranges, specify your Private IP address ranges with + this property. + :vartype private_ranges: list[str] + """ + + _attribute_map = { + 'signature_overrides': {'key': 'signatureOverrides', 'type': '[FirewallPolicyIntrusionDetectionSignatureSpecification]'}, + 'bypass_traffic_settings': {'key': 'bypassTrafficSettings', 'type': '[FirewallPolicyIntrusionDetectionBypassTrafficSpecifications]'}, + 'private_ranges': {'key': 'privateRanges', 'type': '[str]'}, + } + + def __init__( + self, + *, + signature_overrides: Optional[List["FirewallPolicyIntrusionDetectionSignatureSpecification"]] = None, + bypass_traffic_settings: Optional[List["FirewallPolicyIntrusionDetectionBypassTrafficSpecifications"]] = None, + private_ranges: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword signature_overrides: List of specific signatures states. + :paramtype signature_overrides: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionSignatureSpecification] + :keyword bypass_traffic_settings: List of rules for traffic to bypass. + :paramtype bypass_traffic_settings: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionBypassTrafficSpecifications] + :keyword private_ranges: IDPS Private IP address ranges are used to identify traffic direction + (i.e. inbound, outbound, etc.). By default, only ranges defined by IANA RFC 1918 are considered + private IP addresses. To modify default ranges, specify your Private IP address ranges with + this property. + :paramtype private_ranges: list[str] + """ + super(FirewallPolicyIntrusionDetectionConfiguration, self).__init__(**kwargs) + self.signature_overrides = signature_overrides + self.bypass_traffic_settings = bypass_traffic_settings + self.private_ranges = private_ranges + + +class FirewallPolicyIntrusionDetectionSignatureSpecification(msrest.serialization.Model): + """Intrusion detection signatures specification states. + + :ivar id: Signature id. + :vartype id: str + :ivar mode: The signature state. Possible values include: "Off", "Alert", "Deny". + :vartype mode: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionStateType + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'mode': {'key': 'mode', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + mode: Optional[Union[str, "FirewallPolicyIntrusionDetectionStateType"]] = None, + **kwargs + ): + """ + :keyword id: Signature id. + :paramtype id: str + :keyword mode: The signature state. Possible values include: "Off", "Alert", "Deny". + :paramtype mode: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIntrusionDetectionStateType + """ + super(FirewallPolicyIntrusionDetectionSignatureSpecification, self).__init__(**kwargs) + self.id = id + self.mode = mode + + +class FirewallPolicyListResult(msrest.serialization.Model): + """Response for ListFirewallPolicies API service call. + + :ivar value: List of Firewall Policies in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicy] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[FirewallPolicy]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["FirewallPolicy"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Firewall Policies in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicy] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(FirewallPolicyListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class FirewallPolicyLogAnalyticsResources(msrest.serialization.Model): + """Log Analytics Resources for Firewall Policy Insights. + + :ivar workspaces: List of workspaces for Firewall Policy Insights. + :vartype workspaces: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyLogAnalyticsWorkspace] + :ivar default_workspace_id: The default workspace Id for Firewall Policy Insights. + :vartype default_workspace_id: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + + _attribute_map = { + 'workspaces': {'key': 'workspaces', 'type': '[FirewallPolicyLogAnalyticsWorkspace]'}, + 'default_workspace_id': {'key': 'defaultWorkspaceId', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + workspaces: Optional[List["FirewallPolicyLogAnalyticsWorkspace"]] = None, + default_workspace_id: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword workspaces: List of workspaces for Firewall Policy Insights. + :paramtype workspaces: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyLogAnalyticsWorkspace] + :keyword default_workspace_id: The default workspace Id for Firewall Policy Insights. + :paramtype default_workspace_id: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(FirewallPolicyLogAnalyticsResources, self).__init__(**kwargs) + self.workspaces = workspaces + self.default_workspace_id = default_workspace_id + + +class FirewallPolicyLogAnalyticsWorkspace(msrest.serialization.Model): + """Log Analytics Workspace for Firewall Policy Insights. + + :ivar region: Region to configure the Workspace. + :vartype region: str + :ivar workspace_id: The workspace Id for Firewall Policy Insights. + :vartype workspace_id: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + + _attribute_map = { + 'region': {'key': 'region', 'type': 'str'}, + 'workspace_id': {'key': 'workspaceId', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + region: Optional[str] = None, + workspace_id: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword region: Region to configure the Workspace. + :paramtype region: str + :keyword workspace_id: The workspace Id for Firewall Policy Insights. + :paramtype workspace_id: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(FirewallPolicyLogAnalyticsWorkspace, self).__init__(**kwargs) + self.region = region + self.workspace_id = workspace_id + + +class FirewallPolicyNatRuleCollection(FirewallPolicyRuleCollection): + """Firewall Policy NAT Rule Collection. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_collection_type: Required. The type of the rule collection.Constant filled by + server. Possible values include: "FirewallPolicyNatRuleCollection", + "FirewallPolicyFilterRuleCollection". + :vartype rule_collection_type: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionType + :ivar name: The name of the rule collection. + :vartype name: str + :ivar priority: Priority of the Firewall Policy Rule Collection resource. + :vartype priority: int + :ivar action: The action type of a Nat rule collection. + :vartype action: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyNatRuleCollectionAction + :ivar rules: List of rules included in a rule collection. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRule] + """ + + _validation = { + 'rule_collection_type': {'required': True}, + 'priority': {'maximum': 65000, 'minimum': 100}, + } + + _attribute_map = { + 'rule_collection_type': {'key': 'ruleCollectionType', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'priority': {'key': 'priority', 'type': 'int'}, + 'action': {'key': 'action', 'type': 'FirewallPolicyNatRuleCollectionAction'}, + 'rules': {'key': 'rules', 'type': '[FirewallPolicyRule]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + priority: Optional[int] = None, + action: Optional["FirewallPolicyNatRuleCollectionAction"] = None, + rules: Optional[List["FirewallPolicyRule"]] = None, + **kwargs + ): + """ + :keyword name: The name of the rule collection. + :paramtype name: str + :keyword priority: Priority of the Firewall Policy Rule Collection resource. + :paramtype priority: int + :keyword action: The action type of a Nat rule collection. + :paramtype action: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyNatRuleCollectionAction + :keyword rules: List of rules included in a rule collection. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRule] + """ + super(FirewallPolicyNatRuleCollection, self).__init__(name=name, priority=priority, **kwargs) + self.rule_collection_type = 'FirewallPolicyNatRuleCollection' # type: str + self.action = action + self.rules = rules + + +class FirewallPolicyNatRuleCollectionAction(msrest.serialization.Model): + """Properties of the FirewallPolicyNatRuleCollectionAction. + + :ivar type: The type of action. Possible values include: "DNAT". + :vartype type: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyNatRuleCollectionActionType + """ + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "FirewallPolicyNatRuleCollectionActionType"]] = None, + **kwargs + ): + """ + :keyword type: The type of action. Possible values include: "DNAT". + :paramtype type: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyNatRuleCollectionActionType + """ + super(FirewallPolicyNatRuleCollectionAction, self).__init__(**kwargs) + self.type = type + + +class FirewallPolicyRuleApplicationProtocol(msrest.serialization.Model): + """Properties of the application rule protocol. + + :ivar protocol_type: Protocol type. Possible values include: "Http", "Https". + :vartype protocol_type: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleApplicationProtocolType + :ivar port: Port number for the protocol, cannot be greater than 64000. + :vartype port: int + """ + + _validation = { + 'port': {'maximum': 64000, 'minimum': 0}, + } + + _attribute_map = { + 'protocol_type': {'key': 'protocolType', 'type': 'str'}, + 'port': {'key': 'port', 'type': 'int'}, + } + + def __init__( + self, + *, + protocol_type: Optional[Union[str, "FirewallPolicyRuleApplicationProtocolType"]] = None, + port: Optional[int] = None, + **kwargs + ): + """ + :keyword protocol_type: Protocol type. Possible values include: "Http", "Https". + :paramtype protocol_type: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleApplicationProtocolType + :keyword port: Port number for the protocol, cannot be greater than 64000. + :paramtype port: int + """ + super(FirewallPolicyRuleApplicationProtocol, self).__init__(**kwargs) + self.protocol_type = protocol_type + self.port = port + + +class FirewallPolicyRuleCollectionGroup(SubResource): + """Rule Collection Group resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Rule Group type. + :vartype type: str + :ivar priority: Priority of the Firewall Policy Rule Collection Group resource. + :vartype priority: int + :ivar rule_collections: Group of Firewall Policy rule collections. + :vartype rule_collections: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollection] + :ivar provisioning_state: The provisioning state of the firewall policy rule collection group + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'priority': {'maximum': 65000, 'minimum': 100}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'priority': {'key': 'properties.priority', 'type': 'int'}, + 'rule_collections': {'key': 'properties.ruleCollections', 'type': '[FirewallPolicyRuleCollection]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + priority: Optional[int] = None, + rule_collections: Optional[List["FirewallPolicyRuleCollection"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword priority: Priority of the Firewall Policy Rule Collection Group resource. + :paramtype priority: int + :keyword rule_collections: Group of Firewall Policy rule collections. + :paramtype rule_collections: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollection] + """ + super(FirewallPolicyRuleCollectionGroup, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.priority = priority + self.rule_collections = rule_collections + self.provisioning_state = None + + +class FirewallPolicyRuleCollectionGroupListResult(msrest.serialization.Model): + """Response for ListFirewallPolicyRuleCollectionGroups API service call. + + :ivar value: List of FirewallPolicyRuleCollectionGroups in a FirewallPolicy. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroup] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[FirewallPolicyRuleCollectionGroup]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["FirewallPolicyRuleCollectionGroup"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of FirewallPolicyRuleCollectionGroups in a FirewallPolicy. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroup] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(FirewallPolicyRuleCollectionGroupListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class FirewallPolicySku(msrest.serialization.Model): + """SKU of Firewall policy. + + :ivar tier: Tier of Firewall Policy. Possible values include: "Standard", "Premium", "Basic". + :vartype tier: str or ~azure.mgmt.network.v2021_08_01.models.FirewallPolicySkuTier + """ + + _attribute_map = { + 'tier': {'key': 'tier', 'type': 'str'}, + } + + def __init__( + self, + *, + tier: Optional[Union[str, "FirewallPolicySkuTier"]] = None, + **kwargs + ): + """ + :keyword tier: Tier of Firewall Policy. Possible values include: "Standard", "Premium", + "Basic". + :paramtype tier: str or ~azure.mgmt.network.v2021_08_01.models.FirewallPolicySkuTier + """ + super(FirewallPolicySku, self).__init__(**kwargs) + self.tier = tier + + +class FirewallPolicySNAT(msrest.serialization.Model): + """The private IP addresses/IP ranges to which traffic will not be SNAT. + + :ivar private_ranges: List of private IP addresses/IP address ranges to not be SNAT. + :vartype private_ranges: list[str] + """ + + _attribute_map = { + 'private_ranges': {'key': 'privateRanges', 'type': '[str]'}, + } + + def __init__( + self, + *, + private_ranges: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword private_ranges: List of private IP addresses/IP address ranges to not be SNAT. + :paramtype private_ranges: list[str] + """ + super(FirewallPolicySNAT, self).__init__(**kwargs) + self.private_ranges = private_ranges + + +class FirewallPolicySQL(msrest.serialization.Model): + """SQL Settings in Firewall Policy. + + :ivar allow_sql_redirect: A flag to indicate if SQL Redirect traffic filtering is enabled. + Turning on the flag requires no rule using port 11000-11999. + :vartype allow_sql_redirect: bool + """ + + _attribute_map = { + 'allow_sql_redirect': {'key': 'allowSqlRedirect', 'type': 'bool'}, + } + + def __init__( + self, + *, + allow_sql_redirect: Optional[bool] = None, + **kwargs + ): + """ + :keyword allow_sql_redirect: A flag to indicate if SQL Redirect traffic filtering is enabled. + Turning on the flag requires no rule using port 11000-11999. + :paramtype allow_sql_redirect: bool + """ + super(FirewallPolicySQL, self).__init__(**kwargs) + self.allow_sql_redirect = allow_sql_redirect + + +class FirewallPolicyThreatIntelWhitelist(msrest.serialization.Model): + """ThreatIntel Whitelist for Firewall Policy. + + :ivar ip_addresses: List of IP addresses for the ThreatIntel Whitelist. + :vartype ip_addresses: list[str] + :ivar fqdns: List of FQDNs for the ThreatIntel Whitelist. + :vartype fqdns: list[str] + """ + + _attribute_map = { + 'ip_addresses': {'key': 'ipAddresses', 'type': '[str]'}, + 'fqdns': {'key': 'fqdns', 'type': '[str]'}, + } + + def __init__( + self, + *, + ip_addresses: Optional[List[str]] = None, + fqdns: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword ip_addresses: List of IP addresses for the ThreatIntel Whitelist. + :paramtype ip_addresses: list[str] + :keyword fqdns: List of FQDNs for the ThreatIntel Whitelist. + :paramtype fqdns: list[str] + """ + super(FirewallPolicyThreatIntelWhitelist, self).__init__(**kwargs) + self.ip_addresses = ip_addresses + self.fqdns = fqdns + + +class FirewallPolicyTransportSecurity(msrest.serialization.Model): + """Configuration needed to perform TLS termination & initiation. + + :ivar certificate_authority: The CA used for intermediate CA generation. + :vartype certificate_authority: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyCertificateAuthority + """ + + _attribute_map = { + 'certificate_authority': {'key': 'certificateAuthority', 'type': 'FirewallPolicyCertificateAuthority'}, + } + + def __init__( + self, + *, + certificate_authority: Optional["FirewallPolicyCertificateAuthority"] = None, + **kwargs + ): + """ + :keyword certificate_authority: The CA used for intermediate CA generation. + :paramtype certificate_authority: + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyCertificateAuthority + """ + super(FirewallPolicyTransportSecurity, self).__init__(**kwargs) + self.certificate_authority = certificate_authority + + +class FlowLog(Resource): + """A flow log resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar target_resource_id: ID of network security group to which flow log will be applied. + :vartype target_resource_id: str + :ivar target_resource_guid: Guid of network security group to which flow log will be applied. + :vartype target_resource_guid: str + :ivar storage_id: ID of the storage account which is used to store the flow log. + :vartype storage_id: str + :ivar enabled: Flag to enable/disable flow logging. + :vartype enabled: bool + :ivar retention_policy: Parameters that define the retention policy for flow log. + :vartype retention_policy: ~azure.mgmt.network.v2021_08_01.models.RetentionPolicyParameters + :ivar format: Parameters that define the flow log format. + :vartype format: ~azure.mgmt.network.v2021_08_01.models.FlowLogFormatParameters + :ivar flow_analytics_configuration: Parameters that define the configuration of traffic + analytics. + :vartype flow_analytics_configuration: + ~azure.mgmt.network.v2021_08_01.models.TrafficAnalyticsProperties + :ivar provisioning_state: The provisioning state of the flow log. Possible values include: + "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'target_resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'target_resource_id': {'key': 'properties.targetResourceId', 'type': 'str'}, + 'target_resource_guid': {'key': 'properties.targetResourceGuid', 'type': 'str'}, + 'storage_id': {'key': 'properties.storageId', 'type': 'str'}, + 'enabled': {'key': 'properties.enabled', 'type': 'bool'}, + 'retention_policy': {'key': 'properties.retentionPolicy', 'type': 'RetentionPolicyParameters'}, + 'format': {'key': 'properties.format', 'type': 'FlowLogFormatParameters'}, + 'flow_analytics_configuration': {'key': 'properties.flowAnalyticsConfiguration', 'type': 'TrafficAnalyticsProperties'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + target_resource_id: Optional[str] = None, + storage_id: Optional[str] = None, + enabled: Optional[bool] = None, + retention_policy: Optional["RetentionPolicyParameters"] = None, + format: Optional["FlowLogFormatParameters"] = None, + flow_analytics_configuration: Optional["TrafficAnalyticsProperties"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword target_resource_id: ID of network security group to which flow log will be applied. + :paramtype target_resource_id: str + :keyword storage_id: ID of the storage account which is used to store the flow log. + :paramtype storage_id: str + :keyword enabled: Flag to enable/disable flow logging. + :paramtype enabled: bool + :keyword retention_policy: Parameters that define the retention policy for flow log. + :paramtype retention_policy: ~azure.mgmt.network.v2021_08_01.models.RetentionPolicyParameters + :keyword format: Parameters that define the flow log format. + :paramtype format: ~azure.mgmt.network.v2021_08_01.models.FlowLogFormatParameters + :keyword flow_analytics_configuration: Parameters that define the configuration of traffic + analytics. + :paramtype flow_analytics_configuration: + ~azure.mgmt.network.v2021_08_01.models.TrafficAnalyticsProperties + """ + super(FlowLog, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.target_resource_id = target_resource_id + self.target_resource_guid = None + self.storage_id = storage_id + self.enabled = enabled + self.retention_policy = retention_policy + self.format = format + self.flow_analytics_configuration = flow_analytics_configuration + self.provisioning_state = None + + +class FlowLogFormatParameters(msrest.serialization.Model): + """Parameters that define the flow log format. + + :ivar type: The file type of flow log. Possible values include: "JSON". + :vartype type: str or ~azure.mgmt.network.v2021_08_01.models.FlowLogFormatType + :ivar version: The version (revision) of the flow log. + :vartype version: int + """ + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'version': {'key': 'version', 'type': 'int'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "FlowLogFormatType"]] = None, + version: Optional[int] = 0, + **kwargs + ): + """ + :keyword type: The file type of flow log. Possible values include: "JSON". + :paramtype type: str or ~azure.mgmt.network.v2021_08_01.models.FlowLogFormatType + :keyword version: The version (revision) of the flow log. + :paramtype version: int + """ + super(FlowLogFormatParameters, self).__init__(**kwargs) + self.type = type + self.version = version + + +class FlowLogInformation(msrest.serialization.Model): + """Information on the configuration of flow log and traffic analytics (optional) . + + All required parameters must be populated in order to send to Azure. + + :ivar target_resource_id: Required. The ID of the resource to configure for flow log and + traffic analytics (optional) . + :vartype target_resource_id: str + :ivar flow_analytics_configuration: Parameters that define the configuration of traffic + analytics. + :vartype flow_analytics_configuration: + ~azure.mgmt.network.v2021_08_01.models.TrafficAnalyticsProperties + :ivar storage_id: Required. ID of the storage account which is used to store the flow log. + :vartype storage_id: str + :ivar enabled: Required. Flag to enable/disable flow logging. + :vartype enabled: bool + :ivar retention_policy: Parameters that define the retention policy for flow log. + :vartype retention_policy: ~azure.mgmt.network.v2021_08_01.models.RetentionPolicyParameters + :ivar format: Parameters that define the flow log format. + :vartype format: ~azure.mgmt.network.v2021_08_01.models.FlowLogFormatParameters + """ + + _validation = { + 'target_resource_id': {'required': True}, + 'storage_id': {'required': True}, + 'enabled': {'required': True}, + } + + _attribute_map = { + 'target_resource_id': {'key': 'targetResourceId', 'type': 'str'}, + 'flow_analytics_configuration': {'key': 'flowAnalyticsConfiguration', 'type': 'TrafficAnalyticsProperties'}, + 'storage_id': {'key': 'properties.storageId', 'type': 'str'}, + 'enabled': {'key': 'properties.enabled', 'type': 'bool'}, + 'retention_policy': {'key': 'properties.retentionPolicy', 'type': 'RetentionPolicyParameters'}, + 'format': {'key': 'properties.format', 'type': 'FlowLogFormatParameters'}, + } + + def __init__( + self, + *, + target_resource_id: str, + storage_id: str, + enabled: bool, + flow_analytics_configuration: Optional["TrafficAnalyticsProperties"] = None, + retention_policy: Optional["RetentionPolicyParameters"] = None, + format: Optional["FlowLogFormatParameters"] = None, + **kwargs + ): + """ + :keyword target_resource_id: Required. The ID of the resource to configure for flow log and + traffic analytics (optional) . + :paramtype target_resource_id: str + :keyword flow_analytics_configuration: Parameters that define the configuration of traffic + analytics. + :paramtype flow_analytics_configuration: + ~azure.mgmt.network.v2021_08_01.models.TrafficAnalyticsProperties + :keyword storage_id: Required. ID of the storage account which is used to store the flow log. + :paramtype storage_id: str + :keyword enabled: Required. Flag to enable/disable flow logging. + :paramtype enabled: bool + :keyword retention_policy: Parameters that define the retention policy for flow log. + :paramtype retention_policy: ~azure.mgmt.network.v2021_08_01.models.RetentionPolicyParameters + :keyword format: Parameters that define the flow log format. + :paramtype format: ~azure.mgmt.network.v2021_08_01.models.FlowLogFormatParameters + """ + super(FlowLogInformation, self).__init__(**kwargs) + self.target_resource_id = target_resource_id + self.flow_analytics_configuration = flow_analytics_configuration + self.storage_id = storage_id + self.enabled = enabled + self.retention_policy = retention_policy + self.format = format + + +class FlowLogListResult(msrest.serialization.Model): + """List of flow logs. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Information about flow log resource. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.FlowLog] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[FlowLog]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["FlowLog"]] = None, + **kwargs + ): + """ + :keyword value: Information about flow log resource. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.FlowLog] + """ + super(FlowLogListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class FlowLogStatusParameters(msrest.serialization.Model): + """Parameters that define a resource to query flow log and traffic analytics (optional) status. + + All required parameters must be populated in order to send to Azure. + + :ivar target_resource_id: Required. The target resource where getting the flow log and traffic + analytics (optional) status. + :vartype target_resource_id: str + """ + + _validation = { + 'target_resource_id': {'required': True}, + } + + _attribute_map = { + 'target_resource_id': {'key': 'targetResourceId', 'type': 'str'}, + } + + def __init__( + self, + *, + target_resource_id: str, + **kwargs + ): + """ + :keyword target_resource_id: Required. The target resource where getting the flow log and + traffic analytics (optional) status. + :paramtype target_resource_id: str + """ + super(FlowLogStatusParameters, self).__init__(**kwargs) + self.target_resource_id = target_resource_id + + +class FrontendIPConfiguration(SubResource): + """Frontend IP address of the load balancer. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the set of frontend IP + configurations used by the load balancer. This name can be used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar zones: A list of availability zones denoting the IP allocated for the resource needs to + come from. + :vartype zones: list[str] + :ivar inbound_nat_rules: An array of references to inbound rules that use this frontend IP. + :vartype inbound_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar inbound_nat_pools: An array of references to inbound pools that use this frontend IP. + :vartype inbound_nat_pools: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar outbound_rules: An array of references to outbound rules that use this frontend IP. + :vartype outbound_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar load_balancing_rules: An array of references to load balancing rules that use this + frontend IP. + :vartype load_balancing_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar private_ip_address: The private IP address of the IP configuration. + :vartype private_ip_address: str + :ivar private_ip_allocation_method: The Private IP allocation method. Possible values include: + "Static", "Dynamic". + :vartype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :ivar private_ip_address_version: Whether the specific ipconfiguration is IPv4 or IPv6. Default + is taken as IPv4. Possible values include: "IPv4", "IPv6". + :vartype private_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :ivar subnet: The reference to the subnet resource. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :ivar public_ip_address: The reference to the Public IP resource. + :vartype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :ivar public_ip_prefix: The reference to the Public IP Prefix resource. + :vartype public_ip_prefix: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar gateway_load_balancer: The reference to gateway load balancer frontend IP. + :vartype gateway_load_balancer: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the frontend IP configuration resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'inbound_nat_rules': {'readonly': True}, + 'inbound_nat_pools': {'readonly': True}, + 'outbound_rules': {'readonly': True}, + 'load_balancing_rules': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'zones': {'key': 'zones', 'type': '[str]'}, + 'inbound_nat_rules': {'key': 'properties.inboundNatRules', 'type': '[SubResource]'}, + 'inbound_nat_pools': {'key': 'properties.inboundNatPools', 'type': '[SubResource]'}, + 'outbound_rules': {'key': 'properties.outboundRules', 'type': '[SubResource]'}, + 'load_balancing_rules': {'key': 'properties.loadBalancingRules', 'type': '[SubResource]'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + 'private_ip_allocation_method': {'key': 'properties.privateIPAllocationMethod', 'type': 'str'}, + 'private_ip_address_version': {'key': 'properties.privateIPAddressVersion', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'Subnet'}, + 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'PublicIPAddress'}, + 'public_ip_prefix': {'key': 'properties.publicIPPrefix', 'type': 'SubResource'}, + 'gateway_load_balancer': {'key': 'properties.gatewayLoadBalancer', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + zones: Optional[List[str]] = None, + private_ip_address: Optional[str] = None, + private_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + private_ip_address_version: Optional[Union[str, "IPVersion"]] = None, + subnet: Optional["Subnet"] = None, + public_ip_address: Optional["PublicIPAddress"] = None, + public_ip_prefix: Optional["SubResource"] = None, + gateway_load_balancer: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the set of frontend IP + configurations used by the load balancer. This name can be used to access the resource. + :paramtype name: str + :keyword zones: A list of availability zones denoting the IP allocated for the resource needs + to come from. + :paramtype zones: list[str] + :keyword private_ip_address: The private IP address of the IP configuration. + :paramtype private_ip_address: str + :keyword private_ip_allocation_method: The Private IP allocation method. Possible values + include: "Static", "Dynamic". + :paramtype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :keyword private_ip_address_version: Whether the specific ipconfiguration is IPv4 or IPv6. + Default is taken as IPv4. Possible values include: "IPv4", "IPv6". + :paramtype private_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :keyword subnet: The reference to the subnet resource. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :keyword public_ip_address: The reference to the Public IP resource. + :paramtype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :keyword public_ip_prefix: The reference to the Public IP Prefix resource. + :paramtype public_ip_prefix: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword gateway_load_balancer: The reference to gateway load balancer frontend IP. + :paramtype gateway_load_balancer: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(FrontendIPConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.zones = zones + self.inbound_nat_rules = None + self.inbound_nat_pools = None + self.outbound_rules = None + self.load_balancing_rules = None + self.private_ip_address = private_ip_address + self.private_ip_allocation_method = private_ip_allocation_method + self.private_ip_address_version = private_ip_address_version + self.subnet = subnet + self.public_ip_address = public_ip_address + self.public_ip_prefix = public_ip_prefix + self.gateway_load_balancer = gateway_load_balancer + self.provisioning_state = None + + +class GatewayCustomBgpIpAddressIpConfiguration(msrest.serialization.Model): + """GatewayCustomBgpIpAddressIpConfiguration for a virtual network gateway connection. + + All required parameters must be populated in order to send to Azure. + + :ivar ip_configuration_id: Required. The IpconfigurationId of ipconfiguration which belongs to + gateway. + :vartype ip_configuration_id: str + :ivar custom_bgp_ip_address: Required. The custom BgpPeeringAddress which belongs to + IpconfigurationId. + :vartype custom_bgp_ip_address: str + """ + + _validation = { + 'ip_configuration_id': {'required': True}, + 'custom_bgp_ip_address': {'required': True}, + } + + _attribute_map = { + 'ip_configuration_id': {'key': 'ipConfigurationId', 'type': 'str'}, + 'custom_bgp_ip_address': {'key': 'customBgpIpAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + ip_configuration_id: str, + custom_bgp_ip_address: str, + **kwargs + ): + """ + :keyword ip_configuration_id: Required. The IpconfigurationId of ipconfiguration which belongs + to gateway. + :paramtype ip_configuration_id: str + :keyword custom_bgp_ip_address: Required. The custom BgpPeeringAddress which belongs to + IpconfigurationId. + :paramtype custom_bgp_ip_address: str + """ + super(GatewayCustomBgpIpAddressIpConfiguration, self).__init__(**kwargs) + self.ip_configuration_id = ip_configuration_id + self.custom_bgp_ip_address = custom_bgp_ip_address + + +class GatewayLoadBalancerTunnelInterface(msrest.serialization.Model): + """Gateway load balancer tunnel interface of a load balancer backend address pool. + + :ivar port: Port of gateway load balancer tunnel interface. + :vartype port: int + :ivar identifier: Identifier of gateway load balancer tunnel interface. + :vartype identifier: int + :ivar protocol: Protocol of gateway load balancer tunnel interface. Possible values include: + "None", "Native", "VXLAN". + :vartype protocol: str or + ~azure.mgmt.network.v2021_08_01.models.GatewayLoadBalancerTunnelProtocol + :ivar type: Traffic type of gateway load balancer tunnel interface. Possible values include: + "None", "Internal", "External". + :vartype type: str or + ~azure.mgmt.network.v2021_08_01.models.GatewayLoadBalancerTunnelInterfaceType + """ + + _attribute_map = { + 'port': {'key': 'port', 'type': 'int'}, + 'identifier': {'key': 'identifier', 'type': 'int'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + port: Optional[int] = None, + identifier: Optional[int] = None, + protocol: Optional[Union[str, "GatewayLoadBalancerTunnelProtocol"]] = None, + type: Optional[Union[str, "GatewayLoadBalancerTunnelInterfaceType"]] = None, + **kwargs + ): + """ + :keyword port: Port of gateway load balancer tunnel interface. + :paramtype port: int + :keyword identifier: Identifier of gateway load balancer tunnel interface. + :paramtype identifier: int + :keyword protocol: Protocol of gateway load balancer tunnel interface. Possible values include: + "None", "Native", "VXLAN". + :paramtype protocol: str or + ~azure.mgmt.network.v2021_08_01.models.GatewayLoadBalancerTunnelProtocol + :keyword type: Traffic type of gateway load balancer tunnel interface. Possible values include: + "None", "Internal", "External". + :paramtype type: str or + ~azure.mgmt.network.v2021_08_01.models.GatewayLoadBalancerTunnelInterfaceType + """ + super(GatewayLoadBalancerTunnelInterface, self).__init__(**kwargs) + self.port = port + self.identifier = identifier + self.protocol = protocol + self.type = type + + +class GatewayRoute(msrest.serialization.Model): + """Gateway routing details. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar local_address: The gateway's local address. + :vartype local_address: str + :ivar network: The route's network prefix. + :vartype network: str + :ivar next_hop: The route's next hop. + :vartype next_hop: str + :ivar source_peer: The peer this route was learned from. + :vartype source_peer: str + :ivar origin: The source this route was learned from. + :vartype origin: str + :ivar as_path: The route's AS path sequence. + :vartype as_path: str + :ivar weight: The route's weight. + :vartype weight: int + """ + + _validation = { + 'local_address': {'readonly': True}, + 'network': {'readonly': True}, + 'next_hop': {'readonly': True}, + 'source_peer': {'readonly': True}, + 'origin': {'readonly': True}, + 'as_path': {'readonly': True}, + 'weight': {'readonly': True}, + } + + _attribute_map = { + 'local_address': {'key': 'localAddress', 'type': 'str'}, + 'network': {'key': 'network', 'type': 'str'}, + 'next_hop': {'key': 'nextHop', 'type': 'str'}, + 'source_peer': {'key': 'sourcePeer', 'type': 'str'}, + 'origin': {'key': 'origin', 'type': 'str'}, + 'as_path': {'key': 'asPath', 'type': 'str'}, + 'weight': {'key': 'weight', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(GatewayRoute, self).__init__(**kwargs) + self.local_address = None + self.network = None + self.next_hop = None + self.source_peer = None + self.origin = None + self.as_path = None + self.weight = None + + +class GatewayRouteListResult(msrest.serialization.Model): + """List of virtual network gateway routes. + + :ivar value: List of gateway routes. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.GatewayRoute] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[GatewayRoute]'}, + } + + def __init__( + self, + *, + value: Optional[List["GatewayRoute"]] = None, + **kwargs + ): + """ + :keyword value: List of gateway routes. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.GatewayRoute] + """ + super(GatewayRouteListResult, self).__init__(**kwargs) + self.value = value + + +class GenerateExpressRoutePortsLOARequest(msrest.serialization.Model): + """The customer name to be printed on a letter of authorization. + + All required parameters must be populated in order to send to Azure. + + :ivar customer_name: Required. The customer name. + :vartype customer_name: str + """ + + _validation = { + 'customer_name': {'required': True}, + } + + _attribute_map = { + 'customer_name': {'key': 'customerName', 'type': 'str'}, + } + + def __init__( + self, + *, + customer_name: str, + **kwargs + ): + """ + :keyword customer_name: Required. The customer name. + :paramtype customer_name: str + """ + super(GenerateExpressRoutePortsLOARequest, self).__init__(**kwargs) + self.customer_name = customer_name + + +class GenerateExpressRoutePortsLOAResult(msrest.serialization.Model): + """Response for GenerateExpressRoutePortsLOA API service call. + + :ivar encoded_content: The content as a base64 encoded string. + :vartype encoded_content: str + """ + + _attribute_map = { + 'encoded_content': {'key': 'encodedContent', 'type': 'str'}, + } + + def __init__( + self, + *, + encoded_content: Optional[str] = None, + **kwargs + ): + """ + :keyword encoded_content: The content as a base64 encoded string. + :paramtype encoded_content: str + """ + super(GenerateExpressRoutePortsLOAResult, self).__init__(**kwargs) + self.encoded_content = encoded_content + + +class GetVpnSitesConfigurationRequest(msrest.serialization.Model): + """List of Vpn-Sites. + + All required parameters must be populated in order to send to Azure. + + :ivar vpn_sites: List of resource-ids of the vpn-sites for which config is to be downloaded. + :vartype vpn_sites: list[str] + :ivar output_blob_sas_url: Required. The sas-url to download the configurations for vpn-sites. + :vartype output_blob_sas_url: str + """ + + _validation = { + 'output_blob_sas_url': {'required': True}, + } + + _attribute_map = { + 'vpn_sites': {'key': 'vpnSites', 'type': '[str]'}, + 'output_blob_sas_url': {'key': 'outputBlobSasUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + output_blob_sas_url: str, + vpn_sites: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword vpn_sites: List of resource-ids of the vpn-sites for which config is to be downloaded. + :paramtype vpn_sites: list[str] + :keyword output_blob_sas_url: Required. The sas-url to download the configurations for + vpn-sites. + :paramtype output_blob_sas_url: str + """ + super(GetVpnSitesConfigurationRequest, self).__init__(**kwargs) + self.vpn_sites = vpn_sites + self.output_blob_sas_url = output_blob_sas_url + + +class HopLink(msrest.serialization.Model): + """Hop link. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar next_hop_id: The ID of the next hop. + :vartype next_hop_id: str + :ivar link_type: Link type. + :vartype link_type: str + :ivar issues: List of issues. + :vartype issues: list[~azure.mgmt.network.v2021_08_01.models.ConnectivityIssue] + :ivar context: Provides additional context on links. + :vartype context: dict[str, str] + :ivar resource_id: Resource ID. + :vartype resource_id: str + :ivar round_trip_time_min: Minimum roundtrip time in milliseconds. + :vartype round_trip_time_min: long + :ivar round_trip_time_avg: Average roundtrip time in milliseconds. + :vartype round_trip_time_avg: long + :ivar round_trip_time_max: Maximum roundtrip time in milliseconds. + :vartype round_trip_time_max: long + """ + + _validation = { + 'next_hop_id': {'readonly': True}, + 'link_type': {'readonly': True}, + 'issues': {'readonly': True}, + 'context': {'readonly': True}, + 'resource_id': {'readonly': True}, + 'round_trip_time_min': {'readonly': True, 'maximum': 4294967295, 'minimum': 0}, + 'round_trip_time_avg': {'readonly': True, 'maximum': 4294967295, 'minimum': 0}, + 'round_trip_time_max': {'readonly': True, 'maximum': 4294967295, 'minimum': 0}, + } + + _attribute_map = { + 'next_hop_id': {'key': 'nextHopId', 'type': 'str'}, + 'link_type': {'key': 'linkType', 'type': 'str'}, + 'issues': {'key': 'issues', 'type': '[ConnectivityIssue]'}, + 'context': {'key': 'context', 'type': '{str}'}, + 'resource_id': {'key': 'resourceId', 'type': 'str'}, + 'round_trip_time_min': {'key': 'properties.roundTripTimeMin', 'type': 'long'}, + 'round_trip_time_avg': {'key': 'properties.roundTripTimeAvg', 'type': 'long'}, + 'round_trip_time_max': {'key': 'properties.roundTripTimeMax', 'type': 'long'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(HopLink, self).__init__(**kwargs) + self.next_hop_id = None + self.link_type = None + self.issues = None + self.context = None + self.resource_id = None + self.round_trip_time_min = None + self.round_trip_time_avg = None + self.round_trip_time_max = None + + +class HTTPConfiguration(msrest.serialization.Model): + """HTTP configuration of the connectivity check. + + :ivar method: HTTP method. Possible values include: "Get". + :vartype method: str or ~azure.mgmt.network.v2021_08_01.models.HTTPMethod + :ivar headers: List of HTTP headers. + :vartype headers: list[~azure.mgmt.network.v2021_08_01.models.HTTPHeader] + :ivar valid_status_codes: Valid status codes. + :vartype valid_status_codes: list[int] + """ + + _attribute_map = { + 'method': {'key': 'method', 'type': 'str'}, + 'headers': {'key': 'headers', 'type': '[HTTPHeader]'}, + 'valid_status_codes': {'key': 'validStatusCodes', 'type': '[int]'}, + } + + def __init__( + self, + *, + method: Optional[Union[str, "HTTPMethod"]] = None, + headers: Optional[List["HTTPHeader"]] = None, + valid_status_codes: Optional[List[int]] = None, + **kwargs + ): + """ + :keyword method: HTTP method. Possible values include: "Get". + :paramtype method: str or ~azure.mgmt.network.v2021_08_01.models.HTTPMethod + :keyword headers: List of HTTP headers. + :paramtype headers: list[~azure.mgmt.network.v2021_08_01.models.HTTPHeader] + :keyword valid_status_codes: Valid status codes. + :paramtype valid_status_codes: list[int] + """ + super(HTTPConfiguration, self).__init__(**kwargs) + self.method = method + self.headers = headers + self.valid_status_codes = valid_status_codes + + +class HTTPHeader(msrest.serialization.Model): + """The HTTP header. + + :ivar name: The name in HTTP header. + :vartype name: str + :ivar value: The value in HTTP header. + :vartype value: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + value: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name in HTTP header. + :paramtype name: str + :keyword value: The value in HTTP header. + :paramtype value: str + """ + super(HTTPHeader, self).__init__(**kwargs) + self.name = name + self.value = value + + +class HubIPAddresses(msrest.serialization.Model): + """IP addresses associated with azure firewall. + + :ivar public_i_ps: Public IP addresses associated with azure firewall. + :vartype public_i_ps: ~azure.mgmt.network.v2021_08_01.models.HubPublicIPAddresses + :ivar private_ip_address: Private IP Address associated with azure firewall. + :vartype private_ip_address: str + """ + + _attribute_map = { + 'public_i_ps': {'key': 'publicIPs', 'type': 'HubPublicIPAddresses'}, + 'private_ip_address': {'key': 'privateIPAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + public_i_ps: Optional["HubPublicIPAddresses"] = None, + private_ip_address: Optional[str] = None, + **kwargs + ): + """ + :keyword public_i_ps: Public IP addresses associated with azure firewall. + :paramtype public_i_ps: ~azure.mgmt.network.v2021_08_01.models.HubPublicIPAddresses + :keyword private_ip_address: Private IP Address associated with azure firewall. + :paramtype private_ip_address: str + """ + super(HubIPAddresses, self).__init__(**kwargs) + self.public_i_ps = public_i_ps + self.private_ip_address = private_ip_address + + +class HubIpConfiguration(SubResource): + """IpConfigurations. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the Ip Configuration. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Ipconfiguration type. + :vartype type: str + :ivar private_ip_address: The private IP address of the IP configuration. + :vartype private_ip_address: str + :ivar private_ip_allocation_method: The private IP address allocation method. Possible values + include: "Static", "Dynamic". + :vartype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :ivar subnet: The reference to the subnet resource. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :ivar public_ip_address: The reference to the public IP resource. + :vartype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :ivar provisioning_state: The provisioning state of the IP configuration resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + 'private_ip_allocation_method': {'key': 'properties.privateIPAllocationMethod', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'Subnet'}, + 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'PublicIPAddress'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_ip_address: Optional[str] = None, + private_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + subnet: Optional["Subnet"] = None, + public_ip_address: Optional["PublicIPAddress"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the Ip Configuration. + :paramtype name: str + :keyword private_ip_address: The private IP address of the IP configuration. + :paramtype private_ip_address: str + :keyword private_ip_allocation_method: The private IP address allocation method. Possible + values include: "Static", "Dynamic". + :paramtype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :keyword subnet: The reference to the subnet resource. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :keyword public_ip_address: The reference to the public IP resource. + :paramtype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + """ + super(HubIpConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.private_ip_address = private_ip_address + self.private_ip_allocation_method = private_ip_allocation_method + self.subnet = subnet + self.public_ip_address = public_ip_address + self.provisioning_state = None + + +class HubPublicIPAddresses(msrest.serialization.Model): + """Public IP addresses associated with azure firewall. + + :ivar addresses: The list of Public IP addresses associated with azure firewall or IP addresses + to be retained. + :vartype addresses: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallPublicIPAddress] + :ivar count: The number of Public IP addresses associated with azure firewall. + :vartype count: int + """ + + _attribute_map = { + 'addresses': {'key': 'addresses', 'type': '[AzureFirewallPublicIPAddress]'}, + 'count': {'key': 'count', 'type': 'int'}, + } + + def __init__( + self, + *, + addresses: Optional[List["AzureFirewallPublicIPAddress"]] = None, + count: Optional[int] = None, + **kwargs + ): + """ + :keyword addresses: The list of Public IP addresses associated with azure firewall or IP + addresses to be retained. + :paramtype addresses: list[~azure.mgmt.network.v2021_08_01.models.AzureFirewallPublicIPAddress] + :keyword count: The number of Public IP addresses associated with azure firewall. + :paramtype count: int + """ + super(HubPublicIPAddresses, self).__init__(**kwargs) + self.addresses = addresses + self.count = count + + +class HubRoute(msrest.serialization.Model): + """RouteTable route. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Required. The name of the Route that is unique within a RouteTable. This name can + be used to access this route. + :vartype name: str + :ivar destination_type: Required. The type of destinations (eg: CIDR, ResourceId, Service). + :vartype destination_type: str + :ivar destinations: Required. List of all destinations. + :vartype destinations: list[str] + :ivar next_hop_type: Required. The type of next hop (eg: ResourceId). + :vartype next_hop_type: str + :ivar next_hop: Required. NextHop resource ID. + :vartype next_hop: str + """ + + _validation = { + 'name': {'required': True}, + 'destination_type': {'required': True}, + 'destinations': {'required': True}, + 'next_hop_type': {'required': True}, + 'next_hop': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'destination_type': {'key': 'destinationType', 'type': 'str'}, + 'destinations': {'key': 'destinations', 'type': '[str]'}, + 'next_hop_type': {'key': 'nextHopType', 'type': 'str'}, + 'next_hop': {'key': 'nextHop', 'type': 'str'}, + } + + def __init__( + self, + *, + name: str, + destination_type: str, + destinations: List[str], + next_hop_type: str, + next_hop: str, + **kwargs + ): + """ + :keyword name: Required. The name of the Route that is unique within a RouteTable. This name + can be used to access this route. + :paramtype name: str + :keyword destination_type: Required. The type of destinations (eg: CIDR, ResourceId, Service). + :paramtype destination_type: str + :keyword destinations: Required. List of all destinations. + :paramtype destinations: list[str] + :keyword next_hop_type: Required. The type of next hop (eg: ResourceId). + :paramtype next_hop_type: str + :keyword next_hop: Required. NextHop resource ID. + :paramtype next_hop: str + """ + super(HubRoute, self).__init__(**kwargs) + self.name = name + self.destination_type = destination_type + self.destinations = destinations + self.next_hop_type = next_hop_type + self.next_hop = next_hop + + +class HubRouteTable(SubResource): + """RouteTable resource in a virtual hub. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar routes: List of all routes. + :vartype routes: list[~azure.mgmt.network.v2021_08_01.models.HubRoute] + :ivar labels: List of labels associated with this route table. + :vartype labels: list[str] + :ivar associated_connections: List of all connections associated with this route table. + :vartype associated_connections: list[str] + :ivar propagating_connections: List of all connections that advertise to this route table. + :vartype propagating_connections: list[str] + :ivar provisioning_state: The provisioning state of the RouteTable resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'associated_connections': {'readonly': True}, + 'propagating_connections': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'routes': {'key': 'properties.routes', 'type': '[HubRoute]'}, + 'labels': {'key': 'properties.labels', 'type': '[str]'}, + 'associated_connections': {'key': 'properties.associatedConnections', 'type': '[str]'}, + 'propagating_connections': {'key': 'properties.propagatingConnections', 'type': '[str]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + routes: Optional[List["HubRoute"]] = None, + labels: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword routes: List of all routes. + :paramtype routes: list[~azure.mgmt.network.v2021_08_01.models.HubRoute] + :keyword labels: List of labels associated with this route table. + :paramtype labels: list[str] + """ + super(HubRouteTable, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.routes = routes + self.labels = labels + self.associated_connections = None + self.propagating_connections = None + self.provisioning_state = None + + +class HubVirtualNetworkConnection(SubResource): + """HubVirtualNetworkConnection Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar remote_virtual_network: Reference to the remote virtual network. + :vartype remote_virtual_network: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar allow_hub_to_remote_vnet_transit: Deprecated: VirtualHub to RemoteVnet transit to enabled + or not. + :vartype allow_hub_to_remote_vnet_transit: bool + :ivar allow_remote_vnet_to_use_hub_vnet_gateways: Deprecated: Allow RemoteVnet to use Virtual + Hub's gateways. + :vartype allow_remote_vnet_to_use_hub_vnet_gateways: bool + :ivar enable_internet_security: Enable internet security. + :vartype enable_internet_security: bool + :ivar routing_configuration: The Routing Configuration indicating the associated and propagated + route tables on this connection. + :vartype routing_configuration: ~azure.mgmt.network.v2021_08_01.models.RoutingConfiguration + :ivar provisioning_state: The provisioning state of the hub virtual network connection + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'remote_virtual_network': {'key': 'properties.remoteVirtualNetwork', 'type': 'SubResource'}, + 'allow_hub_to_remote_vnet_transit': {'key': 'properties.allowHubToRemoteVnetTransit', 'type': 'bool'}, + 'allow_remote_vnet_to_use_hub_vnet_gateways': {'key': 'properties.allowRemoteVnetToUseHubVnetGateways', 'type': 'bool'}, + 'enable_internet_security': {'key': 'properties.enableInternetSecurity', 'type': 'bool'}, + 'routing_configuration': {'key': 'properties.routingConfiguration', 'type': 'RoutingConfiguration'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + remote_virtual_network: Optional["SubResource"] = None, + allow_hub_to_remote_vnet_transit: Optional[bool] = None, + allow_remote_vnet_to_use_hub_vnet_gateways: Optional[bool] = None, + enable_internet_security: Optional[bool] = None, + routing_configuration: Optional["RoutingConfiguration"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword remote_virtual_network: Reference to the remote virtual network. + :paramtype remote_virtual_network: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword allow_hub_to_remote_vnet_transit: Deprecated: VirtualHub to RemoteVnet transit to + enabled or not. + :paramtype allow_hub_to_remote_vnet_transit: bool + :keyword allow_remote_vnet_to_use_hub_vnet_gateways: Deprecated: Allow RemoteVnet to use + Virtual Hub's gateways. + :paramtype allow_remote_vnet_to_use_hub_vnet_gateways: bool + :keyword enable_internet_security: Enable internet security. + :paramtype enable_internet_security: bool + :keyword routing_configuration: The Routing Configuration indicating the associated and + propagated route tables on this connection. + :paramtype routing_configuration: ~azure.mgmt.network.v2021_08_01.models.RoutingConfiguration + """ + super(HubVirtualNetworkConnection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.remote_virtual_network = remote_virtual_network + self.allow_hub_to_remote_vnet_transit = allow_hub_to_remote_vnet_transit + self.allow_remote_vnet_to_use_hub_vnet_gateways = allow_remote_vnet_to_use_hub_vnet_gateways + self.enable_internet_security = enable_internet_security + self.routing_configuration = routing_configuration + self.provisioning_state = None + + +class IDPSQueryObject(msrest.serialization.Model): + """Will describe the query to run against the IDPS signatures DB. + + :ivar filters: Contain all filters names and values. + :vartype filters: list[~azure.mgmt.network.v2021_08_01.models.FilterItems] + :ivar search: Search term in all columns. + :vartype search: str + :ivar order_by: Column to sort response by. + :vartype order_by: ~azure.mgmt.network.v2021_08_01.models.OrderBy + :ivar results_per_page: The number of the results to return in each page. + :vartype results_per_page: int + :ivar skip: The number of records matching the filter to skip. + :vartype skip: int + """ + + _validation = { + 'results_per_page': {'maximum': 1000, 'minimum': 1}, + } + + _attribute_map = { + 'filters': {'key': 'filters', 'type': '[FilterItems]'}, + 'search': {'key': 'search', 'type': 'str'}, + 'order_by': {'key': 'orderBy', 'type': 'OrderBy'}, + 'results_per_page': {'key': 'resultsPerPage', 'type': 'int'}, + 'skip': {'key': 'skip', 'type': 'int'}, + } + + def __init__( + self, + *, + filters: Optional[List["FilterItems"]] = None, + search: Optional[str] = None, + order_by: Optional["OrderBy"] = None, + results_per_page: Optional[int] = None, + skip: Optional[int] = None, + **kwargs + ): + """ + :keyword filters: Contain all filters names and values. + :paramtype filters: list[~azure.mgmt.network.v2021_08_01.models.FilterItems] + :keyword search: Search term in all columns. + :paramtype search: str + :keyword order_by: Column to sort response by. + :paramtype order_by: ~azure.mgmt.network.v2021_08_01.models.OrderBy + :keyword results_per_page: The number of the results to return in each page. + :paramtype results_per_page: int + :keyword skip: The number of records matching the filter to skip. + :paramtype skip: int + """ + super(IDPSQueryObject, self).__init__(**kwargs) + self.filters = filters + self.search = search + self.order_by = order_by + self.results_per_page = results_per_page + self.skip = skip + + +class InboundNatPool(SubResource): + """Inbound NAT pool of the load balancer. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the set of inbound NAT pools used by + the load balancer. This name can be used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar frontend_ip_configuration: A reference to frontend IP addresses. + :vartype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar protocol: The reference to the transport protocol used by the inbound NAT pool. Possible + values include: "Udp", "Tcp", "All". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.TransportProtocol + :ivar frontend_port_range_start: The first port number in the range of external ports that will + be used to provide Inbound Nat to NICs associated with a load balancer. Acceptable values range + between 1 and 65534. + :vartype frontend_port_range_start: int + :ivar frontend_port_range_end: The last port number in the range of external ports that will be + used to provide Inbound Nat to NICs associated with a load balancer. Acceptable values range + between 1 and 65535. + :vartype frontend_port_range_end: int + :ivar backend_port: The port used for internal connections on the endpoint. Acceptable values + are between 1 and 65535. + :vartype backend_port: int + :ivar idle_timeout_in_minutes: The timeout for the TCP idle connection. The value can be set + between 4 and 30 minutes. The default value is 4 minutes. This element is only used when the + protocol is set to TCP. + :vartype idle_timeout_in_minutes: int + :ivar enable_floating_ip: Configures a virtual machine's endpoint for the floating IP + capability required to configure a SQL AlwaysOn Availability Group. This setting is required + when using the SQL AlwaysOn Availability Groups in SQL server. This setting can't be changed + after you create the endpoint. + :vartype enable_floating_ip: bool + :ivar enable_tcp_reset: Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected + connection termination. This element is only used when the protocol is set to TCP. + :vartype enable_tcp_reset: bool + :ivar provisioning_state: The provisioning state of the inbound NAT pool resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'frontend_ip_configuration': {'key': 'properties.frontendIPConfiguration', 'type': 'SubResource'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'frontend_port_range_start': {'key': 'properties.frontendPortRangeStart', 'type': 'int'}, + 'frontend_port_range_end': {'key': 'properties.frontendPortRangeEnd', 'type': 'int'}, + 'backend_port': {'key': 'properties.backendPort', 'type': 'int'}, + 'idle_timeout_in_minutes': {'key': 'properties.idleTimeoutInMinutes', 'type': 'int'}, + 'enable_floating_ip': {'key': 'properties.enableFloatingIP', 'type': 'bool'}, + 'enable_tcp_reset': {'key': 'properties.enableTcpReset', 'type': 'bool'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + frontend_ip_configuration: Optional["SubResource"] = None, + protocol: Optional[Union[str, "TransportProtocol"]] = None, + frontend_port_range_start: Optional[int] = None, + frontend_port_range_end: Optional[int] = None, + backend_port: Optional[int] = None, + idle_timeout_in_minutes: Optional[int] = None, + enable_floating_ip: Optional[bool] = None, + enable_tcp_reset: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the set of inbound NAT pools used + by the load balancer. This name can be used to access the resource. + :paramtype name: str + :keyword frontend_ip_configuration: A reference to frontend IP addresses. + :paramtype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword protocol: The reference to the transport protocol used by the inbound NAT pool. + Possible values include: "Udp", "Tcp", "All". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.TransportProtocol + :keyword frontend_port_range_start: The first port number in the range of external ports that + will be used to provide Inbound Nat to NICs associated with a load balancer. Acceptable values + range between 1 and 65534. + :paramtype frontend_port_range_start: int + :keyword frontend_port_range_end: The last port number in the range of external ports that will + be used to provide Inbound Nat to NICs associated with a load balancer. Acceptable values range + between 1 and 65535. + :paramtype frontend_port_range_end: int + :keyword backend_port: The port used for internal connections on the endpoint. Acceptable + values are between 1 and 65535. + :paramtype backend_port: int + :keyword idle_timeout_in_minutes: The timeout for the TCP idle connection. The value can be set + between 4 and 30 minutes. The default value is 4 minutes. This element is only used when the + protocol is set to TCP. + :paramtype idle_timeout_in_minutes: int + :keyword enable_floating_ip: Configures a virtual machine's endpoint for the floating IP + capability required to configure a SQL AlwaysOn Availability Group. This setting is required + when using the SQL AlwaysOn Availability Groups in SQL server. This setting can't be changed + after you create the endpoint. + :paramtype enable_floating_ip: bool + :keyword enable_tcp_reset: Receive bidirectional TCP Reset on TCP flow idle timeout or + unexpected connection termination. This element is only used when the protocol is set to TCP. + :paramtype enable_tcp_reset: bool + """ + super(InboundNatPool, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.frontend_ip_configuration = frontend_ip_configuration + self.protocol = protocol + self.frontend_port_range_start = frontend_port_range_start + self.frontend_port_range_end = frontend_port_range_end + self.backend_port = backend_port + self.idle_timeout_in_minutes = idle_timeout_in_minutes + self.enable_floating_ip = enable_floating_ip + self.enable_tcp_reset = enable_tcp_reset + self.provisioning_state = None + + +class InboundNatRule(SubResource): + """Inbound NAT rule of the load balancer. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the set of inbound NAT rules used by + the load balancer. This name can be used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar frontend_ip_configuration: A reference to frontend IP addresses. + :vartype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar backend_ip_configuration: A reference to a private IP address defined on a network + interface of a VM. Traffic sent to the frontend port of each of the frontend IP configurations + is forwarded to the backend IP. + :vartype backend_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration + :ivar protocol: The reference to the transport protocol used by the load balancing rule. + Possible values include: "Udp", "Tcp", "All". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.TransportProtocol + :ivar frontend_port: The port for the external endpoint. Port numbers for each rule must be + unique within the Load Balancer. Acceptable values range from 1 to 65534. + :vartype frontend_port: int + :ivar backend_port: The port used for the internal endpoint. Acceptable values range from 1 to + 65535. + :vartype backend_port: int + :ivar idle_timeout_in_minutes: The timeout for the TCP idle connection. The value can be set + between 4 and 30 minutes. The default value is 4 minutes. This element is only used when the + protocol is set to TCP. + :vartype idle_timeout_in_minutes: int + :ivar enable_floating_ip: Configures a virtual machine's endpoint for the floating IP + capability required to configure a SQL AlwaysOn Availability Group. This setting is required + when using the SQL AlwaysOn Availability Groups in SQL server. This setting can't be changed + after you create the endpoint. + :vartype enable_floating_ip: bool + :ivar enable_tcp_reset: Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected + connection termination. This element is only used when the protocol is set to TCP. + :vartype enable_tcp_reset: bool + :ivar frontend_port_range_start: The port range start for the external endpoint. This property + is used together with BackendAddressPool and FrontendPortRangeEnd. Individual inbound NAT rule + port mappings will be created for each backend address from BackendAddressPool. Acceptable + values range from 1 to 65534. + :vartype frontend_port_range_start: int + :ivar frontend_port_range_end: The port range end for the external endpoint. This property is + used together with BackendAddressPool and FrontendPortRangeStart. Individual inbound NAT rule + port mappings will be created for each backend address from BackendAddressPool. Acceptable + values range from 1 to 65534. + :vartype frontend_port_range_end: int + :ivar backend_address_pool: A reference to backendAddressPool resource. + :vartype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the inbound NAT rule resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'backend_ip_configuration': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'frontend_ip_configuration': {'key': 'properties.frontendIPConfiguration', 'type': 'SubResource'}, + 'backend_ip_configuration': {'key': 'properties.backendIPConfiguration', 'type': 'NetworkInterfaceIPConfiguration'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'frontend_port': {'key': 'properties.frontendPort', 'type': 'int'}, + 'backend_port': {'key': 'properties.backendPort', 'type': 'int'}, + 'idle_timeout_in_minutes': {'key': 'properties.idleTimeoutInMinutes', 'type': 'int'}, + 'enable_floating_ip': {'key': 'properties.enableFloatingIP', 'type': 'bool'}, + 'enable_tcp_reset': {'key': 'properties.enableTcpReset', 'type': 'bool'}, + 'frontend_port_range_start': {'key': 'properties.frontendPortRangeStart', 'type': 'int'}, + 'frontend_port_range_end': {'key': 'properties.frontendPortRangeEnd', 'type': 'int'}, + 'backend_address_pool': {'key': 'properties.backendAddressPool', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + frontend_ip_configuration: Optional["SubResource"] = None, + protocol: Optional[Union[str, "TransportProtocol"]] = None, + frontend_port: Optional[int] = None, + backend_port: Optional[int] = None, + idle_timeout_in_minutes: Optional[int] = None, + enable_floating_ip: Optional[bool] = None, + enable_tcp_reset: Optional[bool] = None, + frontend_port_range_start: Optional[int] = None, + frontend_port_range_end: Optional[int] = None, + backend_address_pool: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the set of inbound NAT rules used + by the load balancer. This name can be used to access the resource. + :paramtype name: str + :keyword frontend_ip_configuration: A reference to frontend IP addresses. + :paramtype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword protocol: The reference to the transport protocol used by the load balancing rule. + Possible values include: "Udp", "Tcp", "All". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.TransportProtocol + :keyword frontend_port: The port for the external endpoint. Port numbers for each rule must be + unique within the Load Balancer. Acceptable values range from 1 to 65534. + :paramtype frontend_port: int + :keyword backend_port: The port used for the internal endpoint. Acceptable values range from 1 + to 65535. + :paramtype backend_port: int + :keyword idle_timeout_in_minutes: The timeout for the TCP idle connection. The value can be set + between 4 and 30 minutes. The default value is 4 minutes. This element is only used when the + protocol is set to TCP. + :paramtype idle_timeout_in_minutes: int + :keyword enable_floating_ip: Configures a virtual machine's endpoint for the floating IP + capability required to configure a SQL AlwaysOn Availability Group. This setting is required + when using the SQL AlwaysOn Availability Groups in SQL server. This setting can't be changed + after you create the endpoint. + :paramtype enable_floating_ip: bool + :keyword enable_tcp_reset: Receive bidirectional TCP Reset on TCP flow idle timeout or + unexpected connection termination. This element is only used when the protocol is set to TCP. + :paramtype enable_tcp_reset: bool + :keyword frontend_port_range_start: The port range start for the external endpoint. This + property is used together with BackendAddressPool and FrontendPortRangeEnd. Individual inbound + NAT rule port mappings will be created for each backend address from BackendAddressPool. + Acceptable values range from 1 to 65534. + :paramtype frontend_port_range_start: int + :keyword frontend_port_range_end: The port range end for the external endpoint. This property + is used together with BackendAddressPool and FrontendPortRangeStart. Individual inbound NAT + rule port mappings will be created for each backend address from BackendAddressPool. Acceptable + values range from 1 to 65534. + :paramtype frontend_port_range_end: int + :keyword backend_address_pool: A reference to backendAddressPool resource. + :paramtype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(InboundNatRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.frontend_ip_configuration = frontend_ip_configuration + self.backend_ip_configuration = None + self.protocol = protocol + self.frontend_port = frontend_port + self.backend_port = backend_port + self.idle_timeout_in_minutes = idle_timeout_in_minutes + self.enable_floating_ip = enable_floating_ip + self.enable_tcp_reset = enable_tcp_reset + self.frontend_port_range_start = frontend_port_range_start + self.frontend_port_range_end = frontend_port_range_end + self.backend_address_pool = backend_address_pool + self.provisioning_state = None + + +class InboundNatRuleListResult(msrest.serialization.Model): + """Response for ListInboundNatRule API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of inbound NAT rules in a load balancer. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.InboundNatRule] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[InboundNatRule]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["InboundNatRule"]] = None, + **kwargs + ): + """ + :keyword value: A list of inbound NAT rules in a load balancer. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.InboundNatRule] + """ + super(InboundNatRuleListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class InboundNatRulePortMapping(msrest.serialization.Model): + """Individual port mappings for inbound NAT rule created for backend pool. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar inbound_nat_rule_name: Name of inbound NAT rule. + :vartype inbound_nat_rule_name: str + :ivar protocol: The reference to the transport protocol used by the inbound NAT rule. Possible + values include: "Udp", "Tcp", "All". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.TransportProtocol + :ivar frontend_port: Frontend port. + :vartype frontend_port: int + :ivar backend_port: Backend port. + :vartype backend_port: int + """ + + _validation = { + 'inbound_nat_rule_name': {'readonly': True}, + 'protocol': {'readonly': True}, + 'frontend_port': {'readonly': True}, + 'backend_port': {'readonly': True}, + } + + _attribute_map = { + 'inbound_nat_rule_name': {'key': 'inboundNatRuleName', 'type': 'str'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'frontend_port': {'key': 'frontendPort', 'type': 'int'}, + 'backend_port': {'key': 'backendPort', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(InboundNatRulePortMapping, self).__init__(**kwargs) + self.inbound_nat_rule_name = None + self.protocol = None + self.frontend_port = None + self.backend_port = None + + +class InboundSecurityRule(SubResource): + """NVA Inbound Security Rule resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of security rule collection. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: NVA inbound security rule type. + :vartype type: str + :ivar rules: List of allowed rules. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.InboundSecurityRules] + :ivar provisioning_state: The provisioning state of the resource. Possible values include: + "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'rules': {'key': 'properties.rules', 'type': '[InboundSecurityRules]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + rules: Optional[List["InboundSecurityRules"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of security rule collection. + :paramtype name: str + :keyword rules: List of allowed rules. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.InboundSecurityRules] + """ + super(InboundSecurityRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.rules = rules + self.provisioning_state = None + + +class InboundSecurityRules(msrest.serialization.Model): + """Properties of the Inbound Security Rules resource. + + :ivar protocol: Protocol. This should be either TCP or UDP. Possible values include: "TCP", + "UDP". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.InboundSecurityRulesProtocol + :ivar source_address_prefix: The CIDR or source IP range. Only /30, /31 and /32 Ip ranges are + allowed. + :vartype source_address_prefix: str + :ivar destination_port_range: NVA port ranges to be opened up. One needs to provide specific + ports. + :vartype destination_port_range: int + """ + + _validation = { + 'destination_port_range': {'maximum': 65535, 'minimum': 0}, + } + + _attribute_map = { + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'source_address_prefix': {'key': 'sourceAddressPrefix', 'type': 'str'}, + 'destination_port_range': {'key': 'destinationPortRange', 'type': 'int'}, + } + + def __init__( + self, + *, + protocol: Optional[Union[str, "InboundSecurityRulesProtocol"]] = None, + source_address_prefix: Optional[str] = None, + destination_port_range: Optional[int] = None, + **kwargs + ): + """ + :keyword protocol: Protocol. This should be either TCP or UDP. Possible values include: "TCP", + "UDP". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.InboundSecurityRulesProtocol + :keyword source_address_prefix: The CIDR or source IP range. Only /30, /31 and /32 Ip ranges + are allowed. + :paramtype source_address_prefix: str + :keyword destination_port_range: NVA port ranges to be opened up. One needs to provide specific + ports. + :paramtype destination_port_range: int + """ + super(InboundSecurityRules, self).__init__(**kwargs) + self.protocol = protocol + self.source_address_prefix = source_address_prefix + self.destination_port_range = destination_port_range + + +class IPAddressAvailabilityResult(msrest.serialization.Model): + """Response for CheckIPAddressAvailability API service call. + + :ivar available: Private IP address availability. + :vartype available: bool + :ivar available_ip_addresses: Contains other available private IP addresses if the asked for + address is taken. + :vartype available_ip_addresses: list[str] + :ivar is_platform_reserved: Private IP address platform reserved. + :vartype is_platform_reserved: bool + """ + + _attribute_map = { + 'available': {'key': 'available', 'type': 'bool'}, + 'available_ip_addresses': {'key': 'availableIPAddresses', 'type': '[str]'}, + 'is_platform_reserved': {'key': 'isPlatformReserved', 'type': 'bool'}, + } + + def __init__( + self, + *, + available: Optional[bool] = None, + available_ip_addresses: Optional[List[str]] = None, + is_platform_reserved: Optional[bool] = None, + **kwargs + ): + """ + :keyword available: Private IP address availability. + :paramtype available: bool + :keyword available_ip_addresses: Contains other available private IP addresses if the asked for + address is taken. + :paramtype available_ip_addresses: list[str] + :keyword is_platform_reserved: Private IP address platform reserved. + :paramtype is_platform_reserved: bool + """ + super(IPAddressAvailabilityResult, self).__init__(**kwargs) + self.available = available + self.available_ip_addresses = available_ip_addresses + self.is_platform_reserved = is_platform_reserved + + +class IpAllocation(Resource): + """IpAllocation resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar subnet: The Subnet that using the prefix of this IpAllocation resource. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar virtual_network: The VirtualNetwork that using the prefix of this IpAllocation resource. + :vartype virtual_network: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar type_properties_type: The type for the IpAllocation. Possible values include: + "Undefined", "Hypernet". + :vartype type_properties_type: str or ~azure.mgmt.network.v2021_08_01.models.IpAllocationType + :ivar prefix: The address prefix for the IpAllocation. + :vartype prefix: str + :ivar prefix_length: The address prefix length for the IpAllocation. + :vartype prefix_length: int + :ivar prefix_type: The address prefix Type for the IpAllocation. Possible values include: + "IPv4", "IPv6". + :vartype prefix_type: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :ivar ipam_allocation_id: The IPAM allocation ID. + :vartype ipam_allocation_id: str + :ivar allocation_tags: IpAllocation tags. + :vartype allocation_tags: dict[str, str] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'subnet': {'readonly': True}, + 'virtual_network': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'SubResource'}, + 'virtual_network': {'key': 'properties.virtualNetwork', 'type': 'SubResource'}, + 'type_properties_type': {'key': 'properties.type', 'type': 'str'}, + 'prefix': {'key': 'properties.prefix', 'type': 'str'}, + 'prefix_length': {'key': 'properties.prefixLength', 'type': 'int'}, + 'prefix_type': {'key': 'properties.prefixType', 'type': 'str'}, + 'ipam_allocation_id': {'key': 'properties.ipamAllocationId', 'type': 'str'}, + 'allocation_tags': {'key': 'properties.allocationTags', 'type': '{str}'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + type_properties_type: Optional[Union[str, "IpAllocationType"]] = None, + prefix: Optional[str] = None, + prefix_length: Optional[int] = 0, + prefix_type: Optional[Union[str, "IPVersion"]] = None, + ipam_allocation_id: Optional[str] = None, + allocation_tags: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword type_properties_type: The type for the IpAllocation. Possible values include: + "Undefined", "Hypernet". + :paramtype type_properties_type: str or ~azure.mgmt.network.v2021_08_01.models.IpAllocationType + :keyword prefix: The address prefix for the IpAllocation. + :paramtype prefix: str + :keyword prefix_length: The address prefix length for the IpAllocation. + :paramtype prefix_length: int + :keyword prefix_type: The address prefix Type for the IpAllocation. Possible values include: + "IPv4", "IPv6". + :paramtype prefix_type: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :keyword ipam_allocation_id: The IPAM allocation ID. + :paramtype ipam_allocation_id: str + :keyword allocation_tags: IpAllocation tags. + :paramtype allocation_tags: dict[str, str] + """ + super(IpAllocation, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.subnet = None + self.virtual_network = None + self.type_properties_type = type_properties_type + self.prefix = prefix + self.prefix_length = prefix_length + self.prefix_type = prefix_type + self.ipam_allocation_id = ipam_allocation_id + self.allocation_tags = allocation_tags + + +class IpAllocationListResult(msrest.serialization.Model): + """Response for the ListIpAllocations API service call. + + :ivar value: A list of IpAllocation resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.IpAllocation] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[IpAllocation]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["IpAllocation"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of IpAllocation resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.IpAllocation] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(IpAllocationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class IPConfiguration(SubResource): + """IP configuration. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar private_ip_address: The private IP address of the IP configuration. + :vartype private_ip_address: str + :ivar private_ip_allocation_method: The private IP address allocation method. Possible values + include: "Static", "Dynamic". + :vartype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :ivar subnet: The reference to the subnet resource. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :ivar public_ip_address: The reference to the public IP resource. + :vartype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :ivar provisioning_state: The provisioning state of the IP configuration resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + 'private_ip_allocation_method': {'key': 'properties.privateIPAllocationMethod', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'Subnet'}, + 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'PublicIPAddress'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_ip_address: Optional[str] = None, + private_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + subnet: Optional["Subnet"] = None, + public_ip_address: Optional["PublicIPAddress"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword private_ip_address: The private IP address of the IP configuration. + :paramtype private_ip_address: str + :keyword private_ip_allocation_method: The private IP address allocation method. Possible + values include: "Static", "Dynamic". + :paramtype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :keyword subnet: The reference to the subnet resource. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :keyword public_ip_address: The reference to the public IP resource. + :paramtype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + """ + super(IPConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.private_ip_address = private_ip_address + self.private_ip_allocation_method = private_ip_allocation_method + self.subnet = subnet + self.public_ip_address = public_ip_address + self.provisioning_state = None + + +class IPConfigurationBgpPeeringAddress(msrest.serialization.Model): + """Properties of IPConfigurationBgpPeeringAddress. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar ipconfiguration_id: The ID of IP configuration which belongs to gateway. + :vartype ipconfiguration_id: str + :ivar default_bgp_ip_addresses: The list of default BGP peering addresses which belong to IP + configuration. + :vartype default_bgp_ip_addresses: list[str] + :ivar custom_bgp_ip_addresses: The list of custom BGP peering addresses which belong to IP + configuration. + :vartype custom_bgp_ip_addresses: list[str] + :ivar tunnel_ip_addresses: The list of tunnel public IP addresses which belong to IP + configuration. + :vartype tunnel_ip_addresses: list[str] + """ + + _validation = { + 'default_bgp_ip_addresses': {'readonly': True}, + 'tunnel_ip_addresses': {'readonly': True}, + } + + _attribute_map = { + 'ipconfiguration_id': {'key': 'ipconfigurationId', 'type': 'str'}, + 'default_bgp_ip_addresses': {'key': 'defaultBgpIpAddresses', 'type': '[str]'}, + 'custom_bgp_ip_addresses': {'key': 'customBgpIpAddresses', 'type': '[str]'}, + 'tunnel_ip_addresses': {'key': 'tunnelIpAddresses', 'type': '[str]'}, + } + + def __init__( + self, + *, + ipconfiguration_id: Optional[str] = None, + custom_bgp_ip_addresses: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword ipconfiguration_id: The ID of IP configuration which belongs to gateway. + :paramtype ipconfiguration_id: str + :keyword custom_bgp_ip_addresses: The list of custom BGP peering addresses which belong to IP + configuration. + :paramtype custom_bgp_ip_addresses: list[str] + """ + super(IPConfigurationBgpPeeringAddress, self).__init__(**kwargs) + self.ipconfiguration_id = ipconfiguration_id + self.default_bgp_ip_addresses = None + self.custom_bgp_ip_addresses = custom_bgp_ip_addresses + self.tunnel_ip_addresses = None + + +class IPConfigurationProfile(SubResource): + """IP configuration profile child resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource. This name can be used to access the resource. + :vartype name: str + :ivar type: Sub Resource type. + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar subnet: The reference to the subnet resource to create a container network interface ip + configuration. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :ivar provisioning_state: The provisioning state of the IP configuration profile resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'Subnet'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + subnet: Optional["Subnet"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource. This name can be used to access the resource. + :paramtype name: str + :keyword subnet: The reference to the subnet resource to create a container network interface + ip configuration. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + """ + super(IPConfigurationProfile, self).__init__(id=id, **kwargs) + self.name = name + self.type = None + self.etag = None + self.subnet = subnet + self.provisioning_state = None + + +class IpGroup(Resource): + """The IpGroups resource information. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar provisioning_state: The provisioning state of the IpGroups resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar ip_addresses: IpAddresses/IpAddressPrefixes in the IpGroups resource. + :vartype ip_addresses: list[str] + :ivar firewalls: List of references to Firewall resources that this IpGroups is associated + with. + :vartype firewalls: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar firewall_policies: List of references to Firewall Policies resources that this IpGroups + is associated with. + :vartype firewall_policies: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'firewalls': {'readonly': True}, + 'firewall_policies': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'ip_addresses': {'key': 'properties.ipAddresses', 'type': '[str]'}, + 'firewalls': {'key': 'properties.firewalls', 'type': '[SubResource]'}, + 'firewall_policies': {'key': 'properties.firewallPolicies', 'type': '[SubResource]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + ip_addresses: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword ip_addresses: IpAddresses/IpAddressPrefixes in the IpGroups resource. + :paramtype ip_addresses: list[str] + """ + super(IpGroup, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.provisioning_state = None + self.ip_addresses = ip_addresses + self.firewalls = None + self.firewall_policies = None + + +class IpGroupListResult(msrest.serialization.Model): + """Response for the ListIpGroups API service call. + + :ivar value: The list of IpGroups information resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.IpGroup] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[IpGroup]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["IpGroup"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The list of IpGroups information resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.IpGroup] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(IpGroupListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class IpsecPolicy(msrest.serialization.Model): + """An IPSec Policy configuration for a virtual network gateway connection. + + All required parameters must be populated in order to send to Azure. + + :ivar sa_life_time_seconds: Required. The IPSec Security Association (also called Quick Mode or + Phase 2 SA) lifetime in seconds for a site to site VPN tunnel. + :vartype sa_life_time_seconds: int + :ivar sa_data_size_kilobytes: Required. The IPSec Security Association (also called Quick Mode + or Phase 2 SA) payload size in KB for a site to site VPN tunnel. + :vartype sa_data_size_kilobytes: int + :ivar ipsec_encryption: Required. The IPSec encryption algorithm (IKE phase 1). Possible values + include: "None", "DES", "DES3", "AES128", "AES192", "AES256", "GCMAES128", "GCMAES192", + "GCMAES256". + :vartype ipsec_encryption: str or ~azure.mgmt.network.v2021_08_01.models.IpsecEncryption + :ivar ipsec_integrity: Required. The IPSec integrity algorithm (IKE phase 1). Possible values + include: "MD5", "SHA1", "SHA256", "GCMAES128", "GCMAES192", "GCMAES256". + :vartype ipsec_integrity: str or ~azure.mgmt.network.v2021_08_01.models.IpsecIntegrity + :ivar ike_encryption: Required. The IKE encryption algorithm (IKE phase 2). Possible values + include: "DES", "DES3", "AES128", "AES192", "AES256", "GCMAES256", "GCMAES128". + :vartype ike_encryption: str or ~azure.mgmt.network.v2021_08_01.models.IkeEncryption + :ivar ike_integrity: Required. The IKE integrity algorithm (IKE phase 2). Possible values + include: "MD5", "SHA1", "SHA256", "SHA384", "GCMAES256", "GCMAES128". + :vartype ike_integrity: str or ~azure.mgmt.network.v2021_08_01.models.IkeIntegrity + :ivar dh_group: Required. The DH Group used in IKE Phase 1 for initial SA. Possible values + include: "None", "DHGroup1", "DHGroup2", "DHGroup14", "DHGroup2048", "ECP256", "ECP384", + "DHGroup24". + :vartype dh_group: str or ~azure.mgmt.network.v2021_08_01.models.DhGroup + :ivar pfs_group: Required. The Pfs Group used in IKE Phase 2 for new child SA. Possible values + include: "None", "PFS1", "PFS2", "PFS2048", "ECP256", "ECP384", "PFS24", "PFS14", "PFSMM". + :vartype pfs_group: str or ~azure.mgmt.network.v2021_08_01.models.PfsGroup + """ + + _validation = { + 'sa_life_time_seconds': {'required': True}, + 'sa_data_size_kilobytes': {'required': True}, + 'ipsec_encryption': {'required': True}, + 'ipsec_integrity': {'required': True}, + 'ike_encryption': {'required': True}, + 'ike_integrity': {'required': True}, + 'dh_group': {'required': True}, + 'pfs_group': {'required': True}, + } + + _attribute_map = { + 'sa_life_time_seconds': {'key': 'saLifeTimeSeconds', 'type': 'int'}, + 'sa_data_size_kilobytes': {'key': 'saDataSizeKilobytes', 'type': 'int'}, + 'ipsec_encryption': {'key': 'ipsecEncryption', 'type': 'str'}, + 'ipsec_integrity': {'key': 'ipsecIntegrity', 'type': 'str'}, + 'ike_encryption': {'key': 'ikeEncryption', 'type': 'str'}, + 'ike_integrity': {'key': 'ikeIntegrity', 'type': 'str'}, + 'dh_group': {'key': 'dhGroup', 'type': 'str'}, + 'pfs_group': {'key': 'pfsGroup', 'type': 'str'}, + } + + def __init__( + self, + *, + sa_life_time_seconds: int, + sa_data_size_kilobytes: int, + ipsec_encryption: Union[str, "IpsecEncryption"], + ipsec_integrity: Union[str, "IpsecIntegrity"], + ike_encryption: Union[str, "IkeEncryption"], + ike_integrity: Union[str, "IkeIntegrity"], + dh_group: Union[str, "DhGroup"], + pfs_group: Union[str, "PfsGroup"], + **kwargs + ): + """ + :keyword sa_life_time_seconds: Required. The IPSec Security Association (also called Quick Mode + or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel. + :paramtype sa_life_time_seconds: int + :keyword sa_data_size_kilobytes: Required. The IPSec Security Association (also called Quick + Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel. + :paramtype sa_data_size_kilobytes: int + :keyword ipsec_encryption: Required. The IPSec encryption algorithm (IKE phase 1). Possible + values include: "None", "DES", "DES3", "AES128", "AES192", "AES256", "GCMAES128", "GCMAES192", + "GCMAES256". + :paramtype ipsec_encryption: str or ~azure.mgmt.network.v2021_08_01.models.IpsecEncryption + :keyword ipsec_integrity: Required. The IPSec integrity algorithm (IKE phase 1). Possible + values include: "MD5", "SHA1", "SHA256", "GCMAES128", "GCMAES192", "GCMAES256". + :paramtype ipsec_integrity: str or ~azure.mgmt.network.v2021_08_01.models.IpsecIntegrity + :keyword ike_encryption: Required. The IKE encryption algorithm (IKE phase 2). Possible values + include: "DES", "DES3", "AES128", "AES192", "AES256", "GCMAES256", "GCMAES128". + :paramtype ike_encryption: str or ~azure.mgmt.network.v2021_08_01.models.IkeEncryption + :keyword ike_integrity: Required. The IKE integrity algorithm (IKE phase 2). Possible values + include: "MD5", "SHA1", "SHA256", "SHA384", "GCMAES256", "GCMAES128". + :paramtype ike_integrity: str or ~azure.mgmt.network.v2021_08_01.models.IkeIntegrity + :keyword dh_group: Required. The DH Group used in IKE Phase 1 for initial SA. Possible values + include: "None", "DHGroup1", "DHGroup2", "DHGroup14", "DHGroup2048", "ECP256", "ECP384", + "DHGroup24". + :paramtype dh_group: str or ~azure.mgmt.network.v2021_08_01.models.DhGroup + :keyword pfs_group: Required. The Pfs Group used in IKE Phase 2 for new child SA. Possible + values include: "None", "PFS1", "PFS2", "PFS2048", "ECP256", "ECP384", "PFS24", "PFS14", + "PFSMM". + :paramtype pfs_group: str or ~azure.mgmt.network.v2021_08_01.models.PfsGroup + """ + super(IpsecPolicy, self).__init__(**kwargs) + self.sa_life_time_seconds = sa_life_time_seconds + self.sa_data_size_kilobytes = sa_data_size_kilobytes + self.ipsec_encryption = ipsec_encryption + self.ipsec_integrity = ipsec_integrity + self.ike_encryption = ike_encryption + self.ike_integrity = ike_integrity + self.dh_group = dh_group + self.pfs_group = pfs_group + + +class IpTag(msrest.serialization.Model): + """Contains the IpTag associated with the object. + + :ivar ip_tag_type: The IP tag type. Example: FirstPartyUsage. + :vartype ip_tag_type: str + :ivar tag: The value of the IP tag associated with the public IP. Example: SQL. + :vartype tag: str + """ + + _attribute_map = { + 'ip_tag_type': {'key': 'ipTagType', 'type': 'str'}, + 'tag': {'key': 'tag', 'type': 'str'}, + } + + def __init__( + self, + *, + ip_tag_type: Optional[str] = None, + tag: Optional[str] = None, + **kwargs + ): + """ + :keyword ip_tag_type: The IP tag type. Example: FirstPartyUsage. + :paramtype ip_tag_type: str + :keyword tag: The value of the IP tag associated with the public IP. Example: SQL. + :paramtype tag: str + """ + super(IpTag, self).__init__(**kwargs) + self.ip_tag_type = ip_tag_type + self.tag = tag + + +class Ipv6CircuitConnectionConfig(msrest.serialization.Model): + """IPv6 Circuit Connection properties for global reach. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar address_prefix: /125 IP address space to carve out customer addresses for global reach. + :vartype address_prefix: str + :ivar circuit_connection_status: Express Route Circuit connection state. Possible values + include: "Connected", "Connecting", "Disconnected". + :vartype circuit_connection_status: str or + ~azure.mgmt.network.v2021_08_01.models.CircuitConnectionStatus + """ + + _validation = { + 'circuit_connection_status': {'readonly': True}, + } + + _attribute_map = { + 'address_prefix': {'key': 'addressPrefix', 'type': 'str'}, + 'circuit_connection_status': {'key': 'circuitConnectionStatus', 'type': 'str'}, + } + + def __init__( + self, + *, + address_prefix: Optional[str] = None, + **kwargs + ): + """ + :keyword address_prefix: /125 IP address space to carve out customer addresses for global + reach. + :paramtype address_prefix: str + """ + super(Ipv6CircuitConnectionConfig, self).__init__(**kwargs) + self.address_prefix = address_prefix + self.circuit_connection_status = None + + +class Ipv6ExpressRouteCircuitPeeringConfig(msrest.serialization.Model): + """Contains IPv6 peering config. + + :ivar primary_peer_address_prefix: The primary address prefix. + :vartype primary_peer_address_prefix: str + :ivar secondary_peer_address_prefix: The secondary address prefix. + :vartype secondary_peer_address_prefix: str + :ivar microsoft_peering_config: The Microsoft peering configuration. + :vartype microsoft_peering_config: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringConfig + :ivar route_filter: The reference to the RouteFilter resource. + :vartype route_filter: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar state: The state of peering. Possible values include: "Disabled", "Enabled". + :vartype state: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringState + """ + + _attribute_map = { + 'primary_peer_address_prefix': {'key': 'primaryPeerAddressPrefix', 'type': 'str'}, + 'secondary_peer_address_prefix': {'key': 'secondaryPeerAddressPrefix', 'type': 'str'}, + 'microsoft_peering_config': {'key': 'microsoftPeeringConfig', 'type': 'ExpressRouteCircuitPeeringConfig'}, + 'route_filter': {'key': 'routeFilter', 'type': 'SubResource'}, + 'state': {'key': 'state', 'type': 'str'}, + } + + def __init__( + self, + *, + primary_peer_address_prefix: Optional[str] = None, + secondary_peer_address_prefix: Optional[str] = None, + microsoft_peering_config: Optional["ExpressRouteCircuitPeeringConfig"] = None, + route_filter: Optional["SubResource"] = None, + state: Optional[Union[str, "ExpressRouteCircuitPeeringState"]] = None, + **kwargs + ): + """ + :keyword primary_peer_address_prefix: The primary address prefix. + :paramtype primary_peer_address_prefix: str + :keyword secondary_peer_address_prefix: The secondary address prefix. + :paramtype secondary_peer_address_prefix: str + :keyword microsoft_peering_config: The Microsoft peering configuration. + :paramtype microsoft_peering_config: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringConfig + :keyword route_filter: The reference to the RouteFilter resource. + :paramtype route_filter: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword state: The state of peering. Possible values include: "Disabled", "Enabled". + :paramtype state: str or ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringState + """ + super(Ipv6ExpressRouteCircuitPeeringConfig, self).__init__(**kwargs) + self.primary_peer_address_prefix = primary_peer_address_prefix + self.secondary_peer_address_prefix = secondary_peer_address_prefix + self.microsoft_peering_config = microsoft_peering_config + self.route_filter = route_filter + self.state = state + + +class ListHubRouteTablesResult(msrest.serialization.Model): + """List of RouteTables and a URL nextLink to get the next set of results. + + :ivar value: List of RouteTables. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.HubRouteTable] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[HubRouteTable]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["HubRouteTable"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of RouteTables. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.HubRouteTable] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListHubRouteTablesResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListHubVirtualNetworkConnectionsResult(msrest.serialization.Model): + """List of HubVirtualNetworkConnections and a URL nextLink to get the next set of results. + + :ivar value: List of HubVirtualNetworkConnections. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.HubVirtualNetworkConnection] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[HubVirtualNetworkConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["HubVirtualNetworkConnection"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of HubVirtualNetworkConnections. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.HubVirtualNetworkConnection] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListHubVirtualNetworkConnectionsResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListP2SVpnGatewaysResult(msrest.serialization.Model): + """Result of the request to list P2SVpnGateways. It contains a list of P2SVpnGateways and a URL nextLink to get the next set of results. + + :ivar value: List of P2SVpnGateways. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[P2SVpnGateway]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["P2SVpnGateway"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of P2SVpnGateways. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListP2SVpnGatewaysResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListRoutingIntentResult(msrest.serialization.Model): + """List of the routing intent result and a URL nextLink to get the next set of results. + + :ivar value: List of RoutingIntent resource. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.RoutingIntent] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[RoutingIntent]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["RoutingIntent"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of RoutingIntent resource. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.RoutingIntent] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListRoutingIntentResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVirtualHubBgpConnectionResults(msrest.serialization.Model): + """VirtualHubBgpConnections list. + + :ivar value: The list of VirtualHubBgpConnections. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.BgpConnection] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[BgpConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["BgpConnection"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The list of VirtualHubBgpConnections. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.BgpConnection] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(ListVirtualHubBgpConnectionResults, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVirtualHubIpConfigurationResults(msrest.serialization.Model): + """VirtualHubIpConfigurations list. + + :ivar value: The list of VirtualHubIpConfigurations. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.HubIpConfiguration] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[HubIpConfiguration]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["HubIpConfiguration"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The list of VirtualHubIpConfigurations. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.HubIpConfiguration] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(ListVirtualHubIpConfigurationResults, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVirtualHubRouteTableV2SResult(msrest.serialization.Model): + """List of VirtualHubRouteTableV2s and a URL nextLink to get the next set of results. + + :ivar value: List of VirtualHubRouteTableV2s. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualHubRouteTableV2]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualHubRouteTableV2"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VirtualHubRouteTableV2s. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVirtualHubRouteTableV2SResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVirtualHubsResult(msrest.serialization.Model): + """Result of the request to list VirtualHubs. It contains a list of VirtualHubs and a URL nextLink to get the next set of results. + + :ivar value: List of VirtualHubs. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualHub] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualHub]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualHub"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VirtualHubs. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualHub] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVirtualHubsResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVirtualNetworkGatewayNatRulesResult(msrest.serialization.Model): + """Result of the request to list all nat rules to a virtual network gateway. It contains a list of Nat rules and a URL nextLink to get the next set of results. + + :ivar value: List of Nat Rules. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualNetworkGatewayNatRule]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualNetworkGatewayNatRule"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Nat Rules. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVirtualNetworkGatewayNatRulesResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVirtualWANsResult(msrest.serialization.Model): + """Result of the request to list VirtualWANs. It contains a list of VirtualWANs and a URL nextLink to get the next set of results. + + :ivar value: List of VirtualWANs. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualWAN] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualWAN]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualWAN"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VirtualWANs. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualWAN] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVirtualWANsResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVpnConnectionsResult(msrest.serialization.Model): + """Result of the request to list all vpn connections to a virtual wan vpn gateway. It contains a list of Vpn Connections and a URL nextLink to get the next set of results. + + :ivar value: List of Vpn Connections. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VpnConnection] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VpnConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VpnConnection"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Vpn Connections. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VpnConnection] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVpnConnectionsResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVpnGatewayNatRulesResult(msrest.serialization.Model): + """Result of the request to list all nat rules to a virtual wan vpn gateway. It contains a list of Nat rules and a URL nextLink to get the next set of results. + + :ivar value: List of Nat Rules. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VpnGatewayNatRule]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VpnGatewayNatRule"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Nat Rules. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVpnGatewayNatRulesResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVpnGatewaysResult(msrest.serialization.Model): + """Result of the request to list VpnGateways. It contains a list of VpnGateways and a URL nextLink to get the next set of results. + + :ivar value: List of VpnGateways. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VpnGateway] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VpnGateway]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VpnGateway"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VpnGateways. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VpnGateway] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVpnGatewaysResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVpnServerConfigurationPolicyGroupsResult(msrest.serialization.Model): + """Result of the request to list VpnServerConfigurationPolicyGroups. It contains a list of VpnServerConfigurationPolicyGroups and a URL nextLink to get the next set of results. + + :ivar value: List of VpnServerConfigurationPolicyGroups. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VpnServerConfigurationPolicyGroup]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VpnServerConfigurationPolicyGroup"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VpnServerConfigurationPolicyGroups. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVpnServerConfigurationPolicyGroupsResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVpnServerConfigurationsResult(msrest.serialization.Model): + """Result of the request to list all VpnServerConfigurations. It contains a list of VpnServerConfigurations and a URL nextLink to get the next set of results. + + :ivar value: List of VpnServerConfigurations. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VpnServerConfiguration]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VpnServerConfiguration"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VpnServerConfigurations. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVpnServerConfigurationsResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVpnSiteLinkConnectionsResult(msrest.serialization.Model): + """Result of the request to list all vpn connections to a virtual wan vpn gateway. It contains a list of Vpn Connections and a URL nextLink to get the next set of results. + + :ivar value: List of VpnSiteLinkConnections. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VpnSiteLinkConnection] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VpnSiteLinkConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VpnSiteLinkConnection"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VpnSiteLinkConnections. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VpnSiteLinkConnection] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVpnSiteLinkConnectionsResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVpnSiteLinksResult(msrest.serialization.Model): + """Result of the request to list VpnSiteLinks. It contains a list of VpnSiteLinks and a URL nextLink to get the next set of results. + + :ivar value: List of VpnSitesLinks. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VpnSiteLink] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VpnSiteLink]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VpnSiteLink"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VpnSitesLinks. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VpnSiteLink] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVpnSiteLinksResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ListVpnSitesResult(msrest.serialization.Model): + """Result of the request to list VpnSites. It contains a list of VpnSites and a URL nextLink to get the next set of results. + + :ivar value: List of VpnSites. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VpnSite] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VpnSite]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VpnSite"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VpnSites. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VpnSite] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(ListVpnSitesResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class LoadBalancer(Resource): + """LoadBalancer resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar extended_location: The extended location of the load balancer. + :vartype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :ivar sku: The load balancer SKU. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.LoadBalancerSku + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar frontend_ip_configurations: Object representing the frontend IPs to be used for the load + balancer. + :vartype frontend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration] + :ivar backend_address_pools: Collection of backend address pools used by a load balancer. + :vartype backend_address_pools: list[~azure.mgmt.network.v2021_08_01.models.BackendAddressPool] + :ivar load_balancing_rules: Object collection representing the load balancing rules Gets the + provisioning. + :vartype load_balancing_rules: list[~azure.mgmt.network.v2021_08_01.models.LoadBalancingRule] + :ivar probes: Collection of probe objects used in the load balancer. + :vartype probes: list[~azure.mgmt.network.v2021_08_01.models.Probe] + :ivar inbound_nat_rules: Collection of inbound NAT Rules used by a load balancer. Defining + inbound NAT rules on your load balancer is mutually exclusive with defining an inbound NAT + pool. Inbound NAT pools are referenced from virtual machine scale sets. NICs that are + associated with individual virtual machines cannot reference an Inbound NAT pool. They have to + reference individual inbound NAT rules. + :vartype inbound_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.InboundNatRule] + :ivar inbound_nat_pools: Defines an external port range for inbound NAT to a single backend + port on NICs associated with a load balancer. Inbound NAT rules are created automatically for + each NIC associated with the Load Balancer using an external port from this range. Defining an + Inbound NAT pool on your Load Balancer is mutually exclusive with defining inbound NAT rules. + Inbound NAT pools are referenced from virtual machine scale sets. NICs that are associated with + individual virtual machines cannot reference an inbound NAT pool. They have to reference + individual inbound NAT rules. + :vartype inbound_nat_pools: list[~azure.mgmt.network.v2021_08_01.models.InboundNatPool] + :ivar outbound_rules: The outbound rules. + :vartype outbound_rules: list[~azure.mgmt.network.v2021_08_01.models.OutboundRule] + :ivar resource_guid: The resource GUID property of the load balancer resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the load balancer resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'extended_location': {'key': 'extendedLocation', 'type': 'ExtendedLocation'}, + 'sku': {'key': 'sku', 'type': 'LoadBalancerSku'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'frontend_ip_configurations': {'key': 'properties.frontendIPConfigurations', 'type': '[FrontendIPConfiguration]'}, + 'backend_address_pools': {'key': 'properties.backendAddressPools', 'type': '[BackendAddressPool]'}, + 'load_balancing_rules': {'key': 'properties.loadBalancingRules', 'type': '[LoadBalancingRule]'}, + 'probes': {'key': 'properties.probes', 'type': '[Probe]'}, + 'inbound_nat_rules': {'key': 'properties.inboundNatRules', 'type': '[InboundNatRule]'}, + 'inbound_nat_pools': {'key': 'properties.inboundNatPools', 'type': '[InboundNatPool]'}, + 'outbound_rules': {'key': 'properties.outboundRules', 'type': '[OutboundRule]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + extended_location: Optional["ExtendedLocation"] = None, + sku: Optional["LoadBalancerSku"] = None, + frontend_ip_configurations: Optional[List["FrontendIPConfiguration"]] = None, + backend_address_pools: Optional[List["BackendAddressPool"]] = None, + load_balancing_rules: Optional[List["LoadBalancingRule"]] = None, + probes: Optional[List["Probe"]] = None, + inbound_nat_rules: Optional[List["InboundNatRule"]] = None, + inbound_nat_pools: Optional[List["InboundNatPool"]] = None, + outbound_rules: Optional[List["OutboundRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword extended_location: The extended location of the load balancer. + :paramtype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :keyword sku: The load balancer SKU. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.LoadBalancerSku + :keyword frontend_ip_configurations: Object representing the frontend IPs to be used for the + load balancer. + :paramtype frontend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration] + :keyword backend_address_pools: Collection of backend address pools used by a load balancer. + :paramtype backend_address_pools: + list[~azure.mgmt.network.v2021_08_01.models.BackendAddressPool] + :keyword load_balancing_rules: Object collection representing the load balancing rules Gets the + provisioning. + :paramtype load_balancing_rules: list[~azure.mgmt.network.v2021_08_01.models.LoadBalancingRule] + :keyword probes: Collection of probe objects used in the load balancer. + :paramtype probes: list[~azure.mgmt.network.v2021_08_01.models.Probe] + :keyword inbound_nat_rules: Collection of inbound NAT Rules used by a load balancer. Defining + inbound NAT rules on your load balancer is mutually exclusive with defining an inbound NAT + pool. Inbound NAT pools are referenced from virtual machine scale sets. NICs that are + associated with individual virtual machines cannot reference an Inbound NAT pool. They have to + reference individual inbound NAT rules. + :paramtype inbound_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.InboundNatRule] + :keyword inbound_nat_pools: Defines an external port range for inbound NAT to a single backend + port on NICs associated with a load balancer. Inbound NAT rules are created automatically for + each NIC associated with the Load Balancer using an external port from this range. Defining an + Inbound NAT pool on your Load Balancer is mutually exclusive with defining inbound NAT rules. + Inbound NAT pools are referenced from virtual machine scale sets. NICs that are associated with + individual virtual machines cannot reference an inbound NAT pool. They have to reference + individual inbound NAT rules. + :paramtype inbound_nat_pools: list[~azure.mgmt.network.v2021_08_01.models.InboundNatPool] + :keyword outbound_rules: The outbound rules. + :paramtype outbound_rules: list[~azure.mgmt.network.v2021_08_01.models.OutboundRule] + """ + super(LoadBalancer, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.extended_location = extended_location + self.sku = sku + self.etag = None + self.frontend_ip_configurations = frontend_ip_configurations + self.backend_address_pools = backend_address_pools + self.load_balancing_rules = load_balancing_rules + self.probes = probes + self.inbound_nat_rules = inbound_nat_rules + self.inbound_nat_pools = inbound_nat_pools + self.outbound_rules = outbound_rules + self.resource_guid = None + self.provisioning_state = None + + +class LoadBalancerBackendAddress(msrest.serialization.Model): + """Load balancer backend addresses. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: Name of the backend address. + :vartype name: str + :ivar virtual_network: Reference to an existing virtual network. + :vartype virtual_network: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar subnet: Reference to an existing subnet. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar ip_address: IP Address belonging to the referenced virtual network. + :vartype ip_address: str + :ivar network_interface_ip_configuration: Reference to IP address defined in network + interfaces. + :vartype network_interface_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar load_balancer_frontend_ip_configuration: Reference to the frontend ip address + configuration defined in regional loadbalancer. + :vartype load_balancer_frontend_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar inbound_nat_rules_port_mapping: Collection of inbound NAT rule port mappings. + :vartype inbound_nat_rules_port_mapping: + list[~azure.mgmt.network.v2021_08_01.models.NatRulePortMapping] + :ivar admin_state: A list of administrative states which once set can override health probe so + that Load Balancer will always forward new connections to backend, or deny new connections and + reset existing connections. Possible values include: "None", "Up", "Down", "Drain". + :vartype admin_state: str or + ~azure.mgmt.network.v2021_08_01.models.LoadBalancerBackendAddressAdminState + """ + + _validation = { + 'network_interface_ip_configuration': {'readonly': True}, + 'inbound_nat_rules_port_mapping': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'virtual_network': {'key': 'properties.virtualNetwork', 'type': 'SubResource'}, + 'subnet': {'key': 'properties.subnet', 'type': 'SubResource'}, + 'ip_address': {'key': 'properties.ipAddress', 'type': 'str'}, + 'network_interface_ip_configuration': {'key': 'properties.networkInterfaceIPConfiguration', 'type': 'SubResource'}, + 'load_balancer_frontend_ip_configuration': {'key': 'properties.loadBalancerFrontendIPConfiguration', 'type': 'SubResource'}, + 'inbound_nat_rules_port_mapping': {'key': 'properties.inboundNatRulesPortMapping', 'type': '[NatRulePortMapping]'}, + 'admin_state': {'key': 'properties.adminState', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + virtual_network: Optional["SubResource"] = None, + subnet: Optional["SubResource"] = None, + ip_address: Optional[str] = None, + load_balancer_frontend_ip_configuration: Optional["SubResource"] = None, + admin_state: Optional[Union[str, "LoadBalancerBackendAddressAdminState"]] = None, + **kwargs + ): + """ + :keyword name: Name of the backend address. + :paramtype name: str + :keyword virtual_network: Reference to an existing virtual network. + :paramtype virtual_network: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword subnet: Reference to an existing subnet. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword ip_address: IP Address belonging to the referenced virtual network. + :paramtype ip_address: str + :keyword load_balancer_frontend_ip_configuration: Reference to the frontend ip address + configuration defined in regional loadbalancer. + :paramtype load_balancer_frontend_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword admin_state: A list of administrative states which once set can override health probe + so that Load Balancer will always forward new connections to backend, or deny new connections + and reset existing connections. Possible values include: "None", "Up", "Down", "Drain". + :paramtype admin_state: str or + ~azure.mgmt.network.v2021_08_01.models.LoadBalancerBackendAddressAdminState + """ + super(LoadBalancerBackendAddress, self).__init__(**kwargs) + self.name = name + self.virtual_network = virtual_network + self.subnet = subnet + self.ip_address = ip_address + self.network_interface_ip_configuration = None + self.load_balancer_frontend_ip_configuration = load_balancer_frontend_ip_configuration + self.inbound_nat_rules_port_mapping = None + self.admin_state = admin_state + + +class LoadBalancerBackendAddressPoolListResult(msrest.serialization.Model): + """Response for ListBackendAddressPool API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of backend address pools in a load balancer. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.BackendAddressPool] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[BackendAddressPool]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["BackendAddressPool"]] = None, + **kwargs + ): + """ + :keyword value: A list of backend address pools in a load balancer. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.BackendAddressPool] + """ + super(LoadBalancerBackendAddressPoolListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class LoadBalancerFrontendIPConfigurationListResult(msrest.serialization.Model): + """Response for ListFrontendIPConfiguration API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of frontend IP configurations in a load balancer. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[FrontendIPConfiguration]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["FrontendIPConfiguration"]] = None, + **kwargs + ): + """ + :keyword value: A list of frontend IP configurations in a load balancer. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration] + """ + super(LoadBalancerFrontendIPConfigurationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class LoadBalancerListResult(msrest.serialization.Model): + """Response for ListLoadBalancers API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of load balancers in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.LoadBalancer] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[LoadBalancer]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["LoadBalancer"]] = None, + **kwargs + ): + """ + :keyword value: A list of load balancers in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.LoadBalancer] + """ + super(LoadBalancerListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class LoadBalancerLoadBalancingRuleListResult(msrest.serialization.Model): + """Response for ListLoadBalancingRule API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of load balancing rules in a load balancer. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.LoadBalancingRule] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[LoadBalancingRule]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["LoadBalancingRule"]] = None, + **kwargs + ): + """ + :keyword value: A list of load balancing rules in a load balancer. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.LoadBalancingRule] + """ + super(LoadBalancerLoadBalancingRuleListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class LoadBalancerOutboundRuleListResult(msrest.serialization.Model): + """Response for ListOutboundRule API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of outbound rules in a load balancer. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.OutboundRule] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[OutboundRule]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["OutboundRule"]] = None, + **kwargs + ): + """ + :keyword value: A list of outbound rules in a load balancer. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.OutboundRule] + """ + super(LoadBalancerOutboundRuleListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class LoadBalancerProbeListResult(msrest.serialization.Model): + """Response for ListProbe API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of probes in a load balancer. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.Probe] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Probe]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["Probe"]] = None, + **kwargs + ): + """ + :keyword value: A list of probes in a load balancer. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.Probe] + """ + super(LoadBalancerProbeListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class LoadBalancerSku(msrest.serialization.Model): + """SKU of a load balancer. + + :ivar name: Name of a load balancer SKU. Possible values include: "Basic", "Standard", + "Gateway". + :vartype name: str or ~azure.mgmt.network.v2021_08_01.models.LoadBalancerSkuName + :ivar tier: Tier of a load balancer SKU. Possible values include: "Regional", "Global". + :vartype tier: str or ~azure.mgmt.network.v2021_08_01.models.LoadBalancerSkuTier + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[Union[str, "LoadBalancerSkuName"]] = None, + tier: Optional[Union[str, "LoadBalancerSkuTier"]] = None, + **kwargs + ): + """ + :keyword name: Name of a load balancer SKU. Possible values include: "Basic", "Standard", + "Gateway". + :paramtype name: str or ~azure.mgmt.network.v2021_08_01.models.LoadBalancerSkuName + :keyword tier: Tier of a load balancer SKU. Possible values include: "Regional", "Global". + :paramtype tier: str or ~azure.mgmt.network.v2021_08_01.models.LoadBalancerSkuTier + """ + super(LoadBalancerSku, self).__init__(**kwargs) + self.name = name + self.tier = tier + + +class LoadBalancerVipSwapRequest(msrest.serialization.Model): + """The request for a VIP swap. + + :ivar frontend_ip_configurations: A list of frontend IP configuration resources that should + swap VIPs. + :vartype frontend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.LoadBalancerVipSwapRequestFrontendIPConfiguration] + """ + + _attribute_map = { + 'frontend_ip_configurations': {'key': 'frontendIPConfigurations', 'type': '[LoadBalancerVipSwapRequestFrontendIPConfiguration]'}, + } + + def __init__( + self, + *, + frontend_ip_configurations: Optional[List["LoadBalancerVipSwapRequestFrontendIPConfiguration"]] = None, + **kwargs + ): + """ + :keyword frontend_ip_configurations: A list of frontend IP configuration resources that should + swap VIPs. + :paramtype frontend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.LoadBalancerVipSwapRequestFrontendIPConfiguration] + """ + super(LoadBalancerVipSwapRequest, self).__init__(**kwargs) + self.frontend_ip_configurations = frontend_ip_configurations + + +class LoadBalancerVipSwapRequestFrontendIPConfiguration(msrest.serialization.Model): + """VIP swap request's frontend IP configuration object. + + :ivar id: The ID of frontend IP configuration resource. + :vartype id: str + :ivar public_ip_address: A reference to public IP address resource. + :vartype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + public_ip_address: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: The ID of frontend IP configuration resource. + :paramtype id: str + :keyword public_ip_address: A reference to public IP address resource. + :paramtype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(LoadBalancerVipSwapRequestFrontendIPConfiguration, self).__init__(**kwargs) + self.id = id + self.public_ip_address = public_ip_address + + +class LoadBalancingRule(SubResource): + """A load balancing rule for a load balancer. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the set of load balancing rules used + by the load balancer. This name can be used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar frontend_ip_configuration: A reference to frontend IP addresses. + :vartype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar backend_address_pool: A reference to a pool of DIPs. Inbound traffic is randomly load + balanced across IPs in the backend IPs. + :vartype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar backend_address_pools: An array of references to pool of DIPs. + :vartype backend_address_pools: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar probe: The reference to the load balancer probe used by the load balancing rule. + :vartype probe: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar protocol: The reference to the transport protocol used by the load balancing rule. + Possible values include: "Udp", "Tcp", "All". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.TransportProtocol + :ivar load_distribution: The load distribution policy for this rule. Possible values include: + "Default", "SourceIP", "SourceIPProtocol". + :vartype load_distribution: str or ~azure.mgmt.network.v2021_08_01.models.LoadDistribution + :ivar frontend_port: The port for the external endpoint. Port numbers for each rule must be + unique within the Load Balancer. Acceptable values are between 0 and 65534. Note that value 0 + enables "Any Port". + :vartype frontend_port: int + :ivar backend_port: The port used for internal connections on the endpoint. Acceptable values + are between 0 and 65535. Note that value 0 enables "Any Port". + :vartype backend_port: int + :ivar idle_timeout_in_minutes: The timeout for the TCP idle connection. The value can be set + between 4 and 30 minutes. The default value is 4 minutes. This element is only used when the + protocol is set to TCP. + :vartype idle_timeout_in_minutes: int + :ivar enable_floating_ip: Configures a virtual machine's endpoint for the floating IP + capability required to configure a SQL AlwaysOn Availability Group. This setting is required + when using the SQL AlwaysOn Availability Groups in SQL server. This setting can't be changed + after you create the endpoint. + :vartype enable_floating_ip: bool + :ivar enable_tcp_reset: Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected + connection termination. This element is only used when the protocol is set to TCP. + :vartype enable_tcp_reset: bool + :ivar disable_outbound_snat: Configures SNAT for the VMs in the backend pool to use the + publicIP address specified in the frontend of the load balancing rule. + :vartype disable_outbound_snat: bool + :ivar provisioning_state: The provisioning state of the load balancing rule resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'frontend_ip_configuration': {'key': 'properties.frontendIPConfiguration', 'type': 'SubResource'}, + 'backend_address_pool': {'key': 'properties.backendAddressPool', 'type': 'SubResource'}, + 'backend_address_pools': {'key': 'properties.backendAddressPools', 'type': '[SubResource]'}, + 'probe': {'key': 'properties.probe', 'type': 'SubResource'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'load_distribution': {'key': 'properties.loadDistribution', 'type': 'str'}, + 'frontend_port': {'key': 'properties.frontendPort', 'type': 'int'}, + 'backend_port': {'key': 'properties.backendPort', 'type': 'int'}, + 'idle_timeout_in_minutes': {'key': 'properties.idleTimeoutInMinutes', 'type': 'int'}, + 'enable_floating_ip': {'key': 'properties.enableFloatingIP', 'type': 'bool'}, + 'enable_tcp_reset': {'key': 'properties.enableTcpReset', 'type': 'bool'}, + 'disable_outbound_snat': {'key': 'properties.disableOutboundSnat', 'type': 'bool'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + frontend_ip_configuration: Optional["SubResource"] = None, + backend_address_pool: Optional["SubResource"] = None, + backend_address_pools: Optional[List["SubResource"]] = None, + probe: Optional["SubResource"] = None, + protocol: Optional[Union[str, "TransportProtocol"]] = None, + load_distribution: Optional[Union[str, "LoadDistribution"]] = None, + frontend_port: Optional[int] = None, + backend_port: Optional[int] = None, + idle_timeout_in_minutes: Optional[int] = None, + enable_floating_ip: Optional[bool] = None, + enable_tcp_reset: Optional[bool] = None, + disable_outbound_snat: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the set of load balancing rules + used by the load balancer. This name can be used to access the resource. + :paramtype name: str + :keyword frontend_ip_configuration: A reference to frontend IP addresses. + :paramtype frontend_ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword backend_address_pool: A reference to a pool of DIPs. Inbound traffic is randomly load + balanced across IPs in the backend IPs. + :paramtype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword backend_address_pools: An array of references to pool of DIPs. + :paramtype backend_address_pools: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword probe: The reference to the load balancer probe used by the load balancing rule. + :paramtype probe: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword protocol: The reference to the transport protocol used by the load balancing rule. + Possible values include: "Udp", "Tcp", "All". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.TransportProtocol + :keyword load_distribution: The load distribution policy for this rule. Possible values + include: "Default", "SourceIP", "SourceIPProtocol". + :paramtype load_distribution: str or ~azure.mgmt.network.v2021_08_01.models.LoadDistribution + :keyword frontend_port: The port for the external endpoint. Port numbers for each rule must be + unique within the Load Balancer. Acceptable values are between 0 and 65534. Note that value 0 + enables "Any Port". + :paramtype frontend_port: int + :keyword backend_port: The port used for internal connections on the endpoint. Acceptable + values are between 0 and 65535. Note that value 0 enables "Any Port". + :paramtype backend_port: int + :keyword idle_timeout_in_minutes: The timeout for the TCP idle connection. The value can be set + between 4 and 30 minutes. The default value is 4 minutes. This element is only used when the + protocol is set to TCP. + :paramtype idle_timeout_in_minutes: int + :keyword enable_floating_ip: Configures a virtual machine's endpoint for the floating IP + capability required to configure a SQL AlwaysOn Availability Group. This setting is required + when using the SQL AlwaysOn Availability Groups in SQL server. This setting can't be changed + after you create the endpoint. + :paramtype enable_floating_ip: bool + :keyword enable_tcp_reset: Receive bidirectional TCP Reset on TCP flow idle timeout or + unexpected connection termination. This element is only used when the protocol is set to TCP. + :paramtype enable_tcp_reset: bool + :keyword disable_outbound_snat: Configures SNAT for the VMs in the backend pool to use the + publicIP address specified in the frontend of the load balancing rule. + :paramtype disable_outbound_snat: bool + """ + super(LoadBalancingRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.frontend_ip_configuration = frontend_ip_configuration + self.backend_address_pool = backend_address_pool + self.backend_address_pools = backend_address_pools + self.probe = probe + self.protocol = protocol + self.load_distribution = load_distribution + self.frontend_port = frontend_port + self.backend_port = backend_port + self.idle_timeout_in_minutes = idle_timeout_in_minutes + self.enable_floating_ip = enable_floating_ip + self.enable_tcp_reset = enable_tcp_reset + self.disable_outbound_snat = disable_outbound_snat + self.provisioning_state = None + + +class LocalNetworkGateway(Resource): + """A common class for general resource information. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar local_network_address_space: Local network site address space. + :vartype local_network_address_space: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :ivar gateway_ip_address: IP address of local network gateway. + :vartype gateway_ip_address: str + :ivar fqdn: FQDN of local network gateway. + :vartype fqdn: str + :ivar bgp_settings: Local network gateway's BGP speaker settings. + :vartype bgp_settings: ~azure.mgmt.network.v2021_08_01.models.BgpSettings + :ivar resource_guid: The resource GUID property of the local network gateway resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the local network gateway resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'local_network_address_space': {'key': 'properties.localNetworkAddressSpace', 'type': 'AddressSpace'}, + 'gateway_ip_address': {'key': 'properties.gatewayIpAddress', 'type': 'str'}, + 'fqdn': {'key': 'properties.fqdn', 'type': 'str'}, + 'bgp_settings': {'key': 'properties.bgpSettings', 'type': 'BgpSettings'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + local_network_address_space: Optional["AddressSpace"] = None, + gateway_ip_address: Optional[str] = None, + fqdn: Optional[str] = None, + bgp_settings: Optional["BgpSettings"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword local_network_address_space: Local network site address space. + :paramtype local_network_address_space: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :keyword gateway_ip_address: IP address of local network gateway. + :paramtype gateway_ip_address: str + :keyword fqdn: FQDN of local network gateway. + :paramtype fqdn: str + :keyword bgp_settings: Local network gateway's BGP speaker settings. + :paramtype bgp_settings: ~azure.mgmt.network.v2021_08_01.models.BgpSettings + """ + super(LocalNetworkGateway, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.local_network_address_space = local_network_address_space + self.gateway_ip_address = gateway_ip_address + self.fqdn = fqdn + self.bgp_settings = bgp_settings + self.resource_guid = None + self.provisioning_state = None + + +class LocalNetworkGatewayListResult(msrest.serialization.Model): + """Response for ListLocalNetworkGateways API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of local network gateways that exists in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[LocalNetworkGateway]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["LocalNetworkGateway"]] = None, + **kwargs + ): + """ + :keyword value: A list of local network gateways that exists in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway] + """ + super(LocalNetworkGatewayListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class LogSpecification(msrest.serialization.Model): + """Description of logging specification. + + :ivar name: The name of the specification. + :vartype name: str + :ivar display_name: The display name of the specification. + :vartype display_name: str + :ivar blob_duration: Duration of the blob. + :vartype blob_duration: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display_name': {'key': 'displayName', 'type': 'str'}, + 'blob_duration': {'key': 'blobDuration', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + display_name: Optional[str] = None, + blob_duration: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name of the specification. + :paramtype name: str + :keyword display_name: The display name of the specification. + :paramtype display_name: str + :keyword blob_duration: Duration of the blob. + :paramtype blob_duration: str + """ + super(LogSpecification, self).__init__(**kwargs) + self.name = name + self.display_name = display_name + self.blob_duration = blob_duration + + +class ManagedRuleGroupOverride(msrest.serialization.Model): + """Defines a managed rule group override setting. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_group_name: Required. The managed rule group to override. + :vartype rule_group_name: str + :ivar rules: List of rules that will be disabled. If none specified, all rules in the group + will be disabled. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.ManagedRuleOverride] + """ + + _validation = { + 'rule_group_name': {'required': True}, + } + + _attribute_map = { + 'rule_group_name': {'key': 'ruleGroupName', 'type': 'str'}, + 'rules': {'key': 'rules', 'type': '[ManagedRuleOverride]'}, + } + + def __init__( + self, + *, + rule_group_name: str, + rules: Optional[List["ManagedRuleOverride"]] = None, + **kwargs + ): + """ + :keyword rule_group_name: Required. The managed rule group to override. + :paramtype rule_group_name: str + :keyword rules: List of rules that will be disabled. If none specified, all rules in the group + will be disabled. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.ManagedRuleOverride] + """ + super(ManagedRuleGroupOverride, self).__init__(**kwargs) + self.rule_group_name = rule_group_name + self.rules = rules + + +class ManagedRuleOverride(msrest.serialization.Model): + """Defines a managed rule group override setting. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_id: Required. Identifier for the managed rule. + :vartype rule_id: str + :ivar state: The state of the managed rule. Defaults to Disabled if not specified. Possible + values include: "Disabled". + :vartype state: str or ~azure.mgmt.network.v2021_08_01.models.ManagedRuleEnabledState + """ + + _validation = { + 'rule_id': {'required': True}, + } + + _attribute_map = { + 'rule_id': {'key': 'ruleId', 'type': 'str'}, + 'state': {'key': 'state', 'type': 'str'}, + } + + def __init__( + self, + *, + rule_id: str, + state: Optional[Union[str, "ManagedRuleEnabledState"]] = None, + **kwargs + ): + """ + :keyword rule_id: Required. Identifier for the managed rule. + :paramtype rule_id: str + :keyword state: The state of the managed rule. Defaults to Disabled if not specified. Possible + values include: "Disabled". + :paramtype state: str or ~azure.mgmt.network.v2021_08_01.models.ManagedRuleEnabledState + """ + super(ManagedRuleOverride, self).__init__(**kwargs) + self.rule_id = rule_id + self.state = state + + +class ManagedRulesDefinition(msrest.serialization.Model): + """Allow to exclude some variable satisfy the condition for the WAF check. + + All required parameters must be populated in order to send to Azure. + + :ivar exclusions: The Exclusions that are applied on the policy. + :vartype exclusions: list[~azure.mgmt.network.v2021_08_01.models.OwaspCrsExclusionEntry] + :ivar managed_rule_sets: Required. The managed rule sets that are associated with the policy. + :vartype managed_rule_sets: list[~azure.mgmt.network.v2021_08_01.models.ManagedRuleSet] + """ + + _validation = { + 'managed_rule_sets': {'required': True}, + } + + _attribute_map = { + 'exclusions': {'key': 'exclusions', 'type': '[OwaspCrsExclusionEntry]'}, + 'managed_rule_sets': {'key': 'managedRuleSets', 'type': '[ManagedRuleSet]'}, + } + + def __init__( + self, + *, + managed_rule_sets: List["ManagedRuleSet"], + exclusions: Optional[List["OwaspCrsExclusionEntry"]] = None, + **kwargs + ): + """ + :keyword exclusions: The Exclusions that are applied on the policy. + :paramtype exclusions: list[~azure.mgmt.network.v2021_08_01.models.OwaspCrsExclusionEntry] + :keyword managed_rule_sets: Required. The managed rule sets that are associated with the + policy. + :paramtype managed_rule_sets: list[~azure.mgmt.network.v2021_08_01.models.ManagedRuleSet] + """ + super(ManagedRulesDefinition, self).__init__(**kwargs) + self.exclusions = exclusions + self.managed_rule_sets = managed_rule_sets + + +class ManagedRuleSet(msrest.serialization.Model): + """Defines a managed rule set. + + All required parameters must be populated in order to send to Azure. + + :ivar rule_set_type: Required. Defines the rule set type to use. + :vartype rule_set_type: str + :ivar rule_set_version: Required. Defines the version of the rule set to use. + :vartype rule_set_version: str + :ivar rule_group_overrides: Defines the rule group overrides to apply to the rule set. + :vartype rule_group_overrides: + list[~azure.mgmt.network.v2021_08_01.models.ManagedRuleGroupOverride] + """ + + _validation = { + 'rule_set_type': {'required': True}, + 'rule_set_version': {'required': True}, + } + + _attribute_map = { + 'rule_set_type': {'key': 'ruleSetType', 'type': 'str'}, + 'rule_set_version': {'key': 'ruleSetVersion', 'type': 'str'}, + 'rule_group_overrides': {'key': 'ruleGroupOverrides', 'type': '[ManagedRuleGroupOverride]'}, + } + + def __init__( + self, + *, + rule_set_type: str, + rule_set_version: str, + rule_group_overrides: Optional[List["ManagedRuleGroupOverride"]] = None, + **kwargs + ): + """ + :keyword rule_set_type: Required. Defines the rule set type to use. + :paramtype rule_set_type: str + :keyword rule_set_version: Required. Defines the version of the rule set to use. + :paramtype rule_set_version: str + :keyword rule_group_overrides: Defines the rule group overrides to apply to the rule set. + :paramtype rule_group_overrides: + list[~azure.mgmt.network.v2021_08_01.models.ManagedRuleGroupOverride] + """ + super(ManagedRuleSet, self).__init__(**kwargs) + self.rule_set_type = rule_set_type + self.rule_set_version = rule_set_version + self.rule_group_overrides = rule_group_overrides + + +class ManagedServiceIdentity(msrest.serialization.Model): + """Identity for the resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar principal_id: The principal id of the system assigned identity. This property will only + be provided for a system assigned identity. + :vartype principal_id: str + :ivar tenant_id: The tenant id of the system assigned identity. This property will only be + provided for a system assigned identity. + :vartype tenant_id: str + :ivar type: The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' + includes both an implicitly created identity and a set of user assigned identities. The type + 'None' will remove any identities from the virtual machine. Possible values include: + "SystemAssigned", "UserAssigned", "SystemAssigned, UserAssigned", "None". + :vartype type: str or ~azure.mgmt.network.v2021_08_01.models.ResourceIdentityType + :ivar user_assigned_identities: The list of user identities associated with resource. The user + identity dictionary key references will be ARM resource ids in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + :vartype user_assigned_identities: dict[str, + ~azure.mgmt.network.v2021_08_01.models.Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties] + """ + + _validation = { + 'principal_id': {'readonly': True}, + 'tenant_id': {'readonly': True}, + } + + _attribute_map = { + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'user_assigned_identities': {'key': 'userAssignedIdentities', 'type': '{Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties}'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "ResourceIdentityType"]] = None, + user_assigned_identities: Optional[Dict[str, "Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties"]] = None, + **kwargs + ): + """ + :keyword type: The type of identity used for the resource. The type 'SystemAssigned, + UserAssigned' includes both an implicitly created identity and a set of user assigned + identities. The type 'None' will remove any identities from the virtual machine. Possible + values include: "SystemAssigned", "UserAssigned", "SystemAssigned, UserAssigned", "None". + :paramtype type: str or ~azure.mgmt.network.v2021_08_01.models.ResourceIdentityType + :keyword user_assigned_identities: The list of user identities associated with resource. The + user identity dictionary key references will be ARM resource ids in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + :paramtype user_assigned_identities: dict[str, + ~azure.mgmt.network.v2021_08_01.models.Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties] + """ + super(ManagedServiceIdentity, self).__init__(**kwargs) + self.principal_id = None + self.tenant_id = None + self.type = type + self.user_assigned_identities = user_assigned_identities + + +class MatchCondition(msrest.serialization.Model): + """Define match conditions. + + All required parameters must be populated in order to send to Azure. + + :ivar match_variables: Required. List of match variables. + :vartype match_variables: list[~azure.mgmt.network.v2021_08_01.models.MatchVariable] + :ivar operator: Required. The operator to be matched. Possible values include: "IPMatch", + "Equal", "Contains", "LessThan", "GreaterThan", "LessThanOrEqual", "GreaterThanOrEqual", + "BeginsWith", "EndsWith", "Regex", "GeoMatch". + :vartype operator: str or ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallOperator + :ivar negation_conditon: Whether this is negate condition or not. + :vartype negation_conditon: bool + :ivar match_values: Required. Match value. + :vartype match_values: list[str] + :ivar transforms: List of transforms. + :vartype transforms: list[str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallTransform] + """ + + _validation = { + 'match_variables': {'required': True}, + 'operator': {'required': True}, + 'match_values': {'required': True}, + } + + _attribute_map = { + 'match_variables': {'key': 'matchVariables', 'type': '[MatchVariable]'}, + 'operator': {'key': 'operator', 'type': 'str'}, + 'negation_conditon': {'key': 'negationConditon', 'type': 'bool'}, + 'match_values': {'key': 'matchValues', 'type': '[str]'}, + 'transforms': {'key': 'transforms', 'type': '[str]'}, + } + + def __init__( + self, + *, + match_variables: List["MatchVariable"], + operator: Union[str, "WebApplicationFirewallOperator"], + match_values: List[str], + negation_conditon: Optional[bool] = None, + transforms: Optional[List[Union[str, "WebApplicationFirewallTransform"]]] = None, + **kwargs + ): + """ + :keyword match_variables: Required. List of match variables. + :paramtype match_variables: list[~azure.mgmt.network.v2021_08_01.models.MatchVariable] + :keyword operator: Required. The operator to be matched. Possible values include: "IPMatch", + "Equal", "Contains", "LessThan", "GreaterThan", "LessThanOrEqual", "GreaterThanOrEqual", + "BeginsWith", "EndsWith", "Regex", "GeoMatch". + :paramtype operator: str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallOperator + :keyword negation_conditon: Whether this is negate condition or not. + :paramtype negation_conditon: bool + :keyword match_values: Required. Match value. + :paramtype match_values: list[str] + :keyword transforms: List of transforms. + :paramtype transforms: list[str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallTransform] + """ + super(MatchCondition, self).__init__(**kwargs) + self.match_variables = match_variables + self.operator = operator + self.negation_conditon = negation_conditon + self.match_values = match_values + self.transforms = transforms + + +class MatchedRule(msrest.serialization.Model): + """Matched rule. + + :ivar rule_name: Name of the matched network security rule. + :vartype rule_name: str + :ivar action: The network traffic is allowed or denied. Possible values are 'Allow' and 'Deny'. + :vartype action: str + """ + + _attribute_map = { + 'rule_name': {'key': 'ruleName', 'type': 'str'}, + 'action': {'key': 'action', 'type': 'str'}, + } + + def __init__( + self, + *, + rule_name: Optional[str] = None, + action: Optional[str] = None, + **kwargs + ): + """ + :keyword rule_name: Name of the matched network security rule. + :paramtype rule_name: str + :keyword action: The network traffic is allowed or denied. Possible values are 'Allow' and + 'Deny'. + :paramtype action: str + """ + super(MatchedRule, self).__init__(**kwargs) + self.rule_name = rule_name + self.action = action + + +class MatchVariable(msrest.serialization.Model): + """Define match variables. + + All required parameters must be populated in order to send to Azure. + + :ivar variable_name: Required. Match Variable. Possible values include: "RemoteAddr", + "RequestMethod", "QueryString", "PostArgs", "RequestUri", "RequestHeaders", "RequestBody", + "RequestCookies". + :vartype variable_name: str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallMatchVariable + :ivar selector: The selector of match variable. + :vartype selector: str + """ + + _validation = { + 'variable_name': {'required': True}, + } + + _attribute_map = { + 'variable_name': {'key': 'variableName', 'type': 'str'}, + 'selector': {'key': 'selector', 'type': 'str'}, + } + + def __init__( + self, + *, + variable_name: Union[str, "WebApplicationFirewallMatchVariable"], + selector: Optional[str] = None, + **kwargs + ): + """ + :keyword variable_name: Required. Match Variable. Possible values include: "RemoteAddr", + "RequestMethod", "QueryString", "PostArgs", "RequestUri", "RequestHeaders", "RequestBody", + "RequestCookies". + :paramtype variable_name: str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallMatchVariable + :keyword selector: The selector of match variable. + :paramtype selector: str + """ + super(MatchVariable, self).__init__(**kwargs) + self.variable_name = variable_name + self.selector = selector + + +class MetricSpecification(msrest.serialization.Model): + """Description of metrics specification. + + :ivar name: The name of the metric. + :vartype name: str + :ivar display_name: The display name of the metric. + :vartype display_name: str + :ivar display_description: The description of the metric. + :vartype display_description: str + :ivar unit: Units the metric to be displayed in. + :vartype unit: str + :ivar aggregation_type: The aggregation type. + :vartype aggregation_type: str + :ivar availabilities: List of availability. + :vartype availabilities: list[~azure.mgmt.network.v2021_08_01.models.Availability] + :ivar enable_regional_mdm_account: Whether regional MDM account enabled. + :vartype enable_regional_mdm_account: bool + :ivar fill_gap_with_zero: Whether gaps would be filled with zeros. + :vartype fill_gap_with_zero: bool + :ivar metric_filter_pattern: Pattern for the filter of the metric. + :vartype metric_filter_pattern: str + :ivar dimensions: List of dimensions. + :vartype dimensions: list[~azure.mgmt.network.v2021_08_01.models.Dimension] + :ivar is_internal: Whether the metric is internal. + :vartype is_internal: bool + :ivar source_mdm_account: The source MDM account. + :vartype source_mdm_account: str + :ivar source_mdm_namespace: The source MDM namespace. + :vartype source_mdm_namespace: str + :ivar resource_id_dimension_name_override: The resource Id dimension name override. + :vartype resource_id_dimension_name_override: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display_name': {'key': 'displayName', 'type': 'str'}, + 'display_description': {'key': 'displayDescription', 'type': 'str'}, + 'unit': {'key': 'unit', 'type': 'str'}, + 'aggregation_type': {'key': 'aggregationType', 'type': 'str'}, + 'availabilities': {'key': 'availabilities', 'type': '[Availability]'}, + 'enable_regional_mdm_account': {'key': 'enableRegionalMdmAccount', 'type': 'bool'}, + 'fill_gap_with_zero': {'key': 'fillGapWithZero', 'type': 'bool'}, + 'metric_filter_pattern': {'key': 'metricFilterPattern', 'type': 'str'}, + 'dimensions': {'key': 'dimensions', 'type': '[Dimension]'}, + 'is_internal': {'key': 'isInternal', 'type': 'bool'}, + 'source_mdm_account': {'key': 'sourceMdmAccount', 'type': 'str'}, + 'source_mdm_namespace': {'key': 'sourceMdmNamespace', 'type': 'str'}, + 'resource_id_dimension_name_override': {'key': 'resourceIdDimensionNameOverride', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + display_name: Optional[str] = None, + display_description: Optional[str] = None, + unit: Optional[str] = None, + aggregation_type: Optional[str] = None, + availabilities: Optional[List["Availability"]] = None, + enable_regional_mdm_account: Optional[bool] = None, + fill_gap_with_zero: Optional[bool] = None, + metric_filter_pattern: Optional[str] = None, + dimensions: Optional[List["Dimension"]] = None, + is_internal: Optional[bool] = None, + source_mdm_account: Optional[str] = None, + source_mdm_namespace: Optional[str] = None, + resource_id_dimension_name_override: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name of the metric. + :paramtype name: str + :keyword display_name: The display name of the metric. + :paramtype display_name: str + :keyword display_description: The description of the metric. + :paramtype display_description: str + :keyword unit: Units the metric to be displayed in. + :paramtype unit: str + :keyword aggregation_type: The aggregation type. + :paramtype aggregation_type: str + :keyword availabilities: List of availability. + :paramtype availabilities: list[~azure.mgmt.network.v2021_08_01.models.Availability] + :keyword enable_regional_mdm_account: Whether regional MDM account enabled. + :paramtype enable_regional_mdm_account: bool + :keyword fill_gap_with_zero: Whether gaps would be filled with zeros. + :paramtype fill_gap_with_zero: bool + :keyword metric_filter_pattern: Pattern for the filter of the metric. + :paramtype metric_filter_pattern: str + :keyword dimensions: List of dimensions. + :paramtype dimensions: list[~azure.mgmt.network.v2021_08_01.models.Dimension] + :keyword is_internal: Whether the metric is internal. + :paramtype is_internal: bool + :keyword source_mdm_account: The source MDM account. + :paramtype source_mdm_account: str + :keyword source_mdm_namespace: The source MDM namespace. + :paramtype source_mdm_namespace: str + :keyword resource_id_dimension_name_override: The resource Id dimension name override. + :paramtype resource_id_dimension_name_override: str + """ + super(MetricSpecification, self).__init__(**kwargs) + self.name = name + self.display_name = display_name + self.display_description = display_description + self.unit = unit + self.aggregation_type = aggregation_type + self.availabilities = availabilities + self.enable_regional_mdm_account = enable_regional_mdm_account + self.fill_gap_with_zero = fill_gap_with_zero + self.metric_filter_pattern = metric_filter_pattern + self.dimensions = dimensions + self.is_internal = is_internal + self.source_mdm_account = source_mdm_account + self.source_mdm_namespace = source_mdm_namespace + self.resource_id_dimension_name_override = resource_id_dimension_name_override + + +class NatGateway(Resource): + """Nat Gateway resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar sku: The nat gateway SKU. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.NatGatewaySku + :ivar zones: A list of availability zones denoting the zone in which Nat Gateway should be + deployed. + :vartype zones: list[str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar idle_timeout_in_minutes: The idle timeout of the nat gateway. + :vartype idle_timeout_in_minutes: int + :ivar public_ip_addresses: An array of public ip addresses associated with the nat gateway + resource. + :vartype public_ip_addresses: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar public_ip_prefixes: An array of public ip prefixes associated with the nat gateway + resource. + :vartype public_ip_prefixes: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar subnets: An array of references to the subnets using this nat gateway resource. + :vartype subnets: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar resource_guid: The resource GUID property of the NAT gateway resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the NAT gateway resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'subnets': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'sku': {'key': 'sku', 'type': 'NatGatewaySku'}, + 'zones': {'key': 'zones', 'type': '[str]'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'idle_timeout_in_minutes': {'key': 'properties.idleTimeoutInMinutes', 'type': 'int'}, + 'public_ip_addresses': {'key': 'properties.publicIpAddresses', 'type': '[SubResource]'}, + 'public_ip_prefixes': {'key': 'properties.publicIpPrefixes', 'type': '[SubResource]'}, + 'subnets': {'key': 'properties.subnets', 'type': '[SubResource]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + sku: Optional["NatGatewaySku"] = None, + zones: Optional[List[str]] = None, + idle_timeout_in_minutes: Optional[int] = None, + public_ip_addresses: Optional[List["SubResource"]] = None, + public_ip_prefixes: Optional[List["SubResource"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword sku: The nat gateway SKU. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.NatGatewaySku + :keyword zones: A list of availability zones denoting the zone in which Nat Gateway should be + deployed. + :paramtype zones: list[str] + :keyword idle_timeout_in_minutes: The idle timeout of the nat gateway. + :paramtype idle_timeout_in_minutes: int + :keyword public_ip_addresses: An array of public ip addresses associated with the nat gateway + resource. + :paramtype public_ip_addresses: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword public_ip_prefixes: An array of public ip prefixes associated with the nat gateway + resource. + :paramtype public_ip_prefixes: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + super(NatGateway, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.sku = sku + self.zones = zones + self.etag = None + self.idle_timeout_in_minutes = idle_timeout_in_minutes + self.public_ip_addresses = public_ip_addresses + self.public_ip_prefixes = public_ip_prefixes + self.subnets = None + self.resource_guid = None + self.provisioning_state = None + + +class NatGatewayListResult(msrest.serialization.Model): + """Response for ListNatGateways API service call. + + :ivar value: A list of Nat Gateways that exists in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.NatGateway] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[NatGateway]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["NatGateway"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of Nat Gateways that exists in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.NatGateway] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(NatGatewayListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class NatGatewaySku(msrest.serialization.Model): + """SKU of nat gateway. + + :ivar name: Name of Nat Gateway SKU. Possible values include: "Standard". + :vartype name: str or ~azure.mgmt.network.v2021_08_01.models.NatGatewaySkuName + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[Union[str, "NatGatewaySkuName"]] = None, + **kwargs + ): + """ + :keyword name: Name of Nat Gateway SKU. Possible values include: "Standard". + :paramtype name: str or ~azure.mgmt.network.v2021_08_01.models.NatGatewaySkuName + """ + super(NatGatewaySku, self).__init__(**kwargs) + self.name = name + + +class NatRule(FirewallPolicyRule): + """Rule of type nat. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Name of the rule. + :vartype name: str + :ivar description: Description of the rule. + :vartype description: str + :ivar rule_type: Required. Rule Type.Constant filled by server. Possible values include: + "ApplicationRule", "NetworkRule", "NatRule". + :vartype rule_type: str or ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleType + :ivar ip_protocols: Array of FirewallPolicyRuleNetworkProtocols. + :vartype ip_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleNetworkProtocol] + :ivar source_addresses: List of source IP addresses for this rule. + :vartype source_addresses: list[str] + :ivar destination_addresses: List of destination IP addresses or Service Tags. + :vartype destination_addresses: list[str] + :ivar destination_ports: List of destination ports. + :vartype destination_ports: list[str] + :ivar translated_address: The translated address for this NAT rule. + :vartype translated_address: str + :ivar translated_port: The translated port for this NAT rule. + :vartype translated_port: str + :ivar source_ip_groups: List of source IpGroups for this rule. + :vartype source_ip_groups: list[str] + :ivar translated_fqdn: The translated FQDN for this NAT rule. + :vartype translated_fqdn: str + """ + + _validation = { + 'rule_type': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'rule_type': {'key': 'ruleType', 'type': 'str'}, + 'ip_protocols': {'key': 'ipProtocols', 'type': '[str]'}, + 'source_addresses': {'key': 'sourceAddresses', 'type': '[str]'}, + 'destination_addresses': {'key': 'destinationAddresses', 'type': '[str]'}, + 'destination_ports': {'key': 'destinationPorts', 'type': '[str]'}, + 'translated_address': {'key': 'translatedAddress', 'type': 'str'}, + 'translated_port': {'key': 'translatedPort', 'type': 'str'}, + 'source_ip_groups': {'key': 'sourceIpGroups', 'type': '[str]'}, + 'translated_fqdn': {'key': 'translatedFqdn', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + description: Optional[str] = None, + ip_protocols: Optional[List[Union[str, "FirewallPolicyRuleNetworkProtocol"]]] = None, + source_addresses: Optional[List[str]] = None, + destination_addresses: Optional[List[str]] = None, + destination_ports: Optional[List[str]] = None, + translated_address: Optional[str] = None, + translated_port: Optional[str] = None, + source_ip_groups: Optional[List[str]] = None, + translated_fqdn: Optional[str] = None, + **kwargs + ): + """ + :keyword name: Name of the rule. + :paramtype name: str + :keyword description: Description of the rule. + :paramtype description: str + :keyword ip_protocols: Array of FirewallPolicyRuleNetworkProtocols. + :paramtype ip_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleNetworkProtocol] + :keyword source_addresses: List of source IP addresses for this rule. + :paramtype source_addresses: list[str] + :keyword destination_addresses: List of destination IP addresses or Service Tags. + :paramtype destination_addresses: list[str] + :keyword destination_ports: List of destination ports. + :paramtype destination_ports: list[str] + :keyword translated_address: The translated address for this NAT rule. + :paramtype translated_address: str + :keyword translated_port: The translated port for this NAT rule. + :paramtype translated_port: str + :keyword source_ip_groups: List of source IpGroups for this rule. + :paramtype source_ip_groups: list[str] + :keyword translated_fqdn: The translated FQDN for this NAT rule. + :paramtype translated_fqdn: str + """ + super(NatRule, self).__init__(name=name, description=description, **kwargs) + self.rule_type = 'NatRule' # type: str + self.ip_protocols = ip_protocols + self.source_addresses = source_addresses + self.destination_addresses = destination_addresses + self.destination_ports = destination_ports + self.translated_address = translated_address + self.translated_port = translated_port + self.source_ip_groups = source_ip_groups + self.translated_fqdn = translated_fqdn + + +class NatRulePortMapping(msrest.serialization.Model): + """Individual port mappings for inbound NAT rule created for backend pool. + + :ivar inbound_nat_rule_name: Name of inbound NAT rule. + :vartype inbound_nat_rule_name: str + :ivar frontend_port: Frontend port. + :vartype frontend_port: int + :ivar backend_port: Backend port. + :vartype backend_port: int + """ + + _attribute_map = { + 'inbound_nat_rule_name': {'key': 'inboundNatRuleName', 'type': 'str'}, + 'frontend_port': {'key': 'frontendPort', 'type': 'int'}, + 'backend_port': {'key': 'backendPort', 'type': 'int'}, + } + + def __init__( + self, + *, + inbound_nat_rule_name: Optional[str] = None, + frontend_port: Optional[int] = None, + backend_port: Optional[int] = None, + **kwargs + ): + """ + :keyword inbound_nat_rule_name: Name of inbound NAT rule. + :paramtype inbound_nat_rule_name: str + :keyword frontend_port: Frontend port. + :paramtype frontend_port: int + :keyword backend_port: Backend port. + :paramtype backend_port: int + """ + super(NatRulePortMapping, self).__init__(**kwargs) + self.inbound_nat_rule_name = inbound_nat_rule_name + self.frontend_port = frontend_port + self.backend_port = backend_port + + +class NetworkConfigurationDiagnosticParameters(msrest.serialization.Model): + """Parameters to get network configuration diagnostic. + + All required parameters must be populated in order to send to Azure. + + :ivar target_resource_id: Required. The ID of the target resource to perform network + configuration diagnostic. Valid options are VM, NetworkInterface, VMSS/NetworkInterface and + Application Gateway. + :vartype target_resource_id: str + :ivar verbosity_level: Verbosity level. Possible values include: "Normal", "Minimum", "Full". + :vartype verbosity_level: str or ~azure.mgmt.network.v2021_08_01.models.VerbosityLevel + :ivar profiles: Required. List of network configuration diagnostic profiles. + :vartype profiles: + list[~azure.mgmt.network.v2021_08_01.models.NetworkConfigurationDiagnosticProfile] + """ + + _validation = { + 'target_resource_id': {'required': True}, + 'profiles': {'required': True}, + } + + _attribute_map = { + 'target_resource_id': {'key': 'targetResourceId', 'type': 'str'}, + 'verbosity_level': {'key': 'verbosityLevel', 'type': 'str'}, + 'profiles': {'key': 'profiles', 'type': '[NetworkConfigurationDiagnosticProfile]'}, + } + + def __init__( + self, + *, + target_resource_id: str, + profiles: List["NetworkConfigurationDiagnosticProfile"], + verbosity_level: Optional[Union[str, "VerbosityLevel"]] = None, + **kwargs + ): + """ + :keyword target_resource_id: Required. The ID of the target resource to perform network + configuration diagnostic. Valid options are VM, NetworkInterface, VMSS/NetworkInterface and + Application Gateway. + :paramtype target_resource_id: str + :keyword verbosity_level: Verbosity level. Possible values include: "Normal", "Minimum", + "Full". + :paramtype verbosity_level: str or ~azure.mgmt.network.v2021_08_01.models.VerbosityLevel + :keyword profiles: Required. List of network configuration diagnostic profiles. + :paramtype profiles: + list[~azure.mgmt.network.v2021_08_01.models.NetworkConfigurationDiagnosticProfile] + """ + super(NetworkConfigurationDiagnosticParameters, self).__init__(**kwargs) + self.target_resource_id = target_resource_id + self.verbosity_level = verbosity_level + self.profiles = profiles + + +class NetworkConfigurationDiagnosticProfile(msrest.serialization.Model): + """Parameters to compare with network configuration. + + All required parameters must be populated in order to send to Azure. + + :ivar direction: Required. The direction of the traffic. Possible values include: "Inbound", + "Outbound". + :vartype direction: str or ~azure.mgmt.network.v2021_08_01.models.Direction + :ivar protocol: Required. Protocol to be verified on. Accepted values are '*', TCP, UDP. + :vartype protocol: str + :ivar source: Required. Traffic source. Accepted values are '*', IP Address/CIDR, Service Tag. + :vartype source: str + :ivar destination: Required. Traffic destination. Accepted values are: '*', IP Address/CIDR, + Service Tag. + :vartype destination: str + :ivar destination_port: Required. Traffic destination port. Accepted values are '*' and a + single port in the range (0 - 65535). + :vartype destination_port: str + """ + + _validation = { + 'direction': {'required': True}, + 'protocol': {'required': True}, + 'source': {'required': True}, + 'destination': {'required': True}, + 'destination_port': {'required': True}, + } + + _attribute_map = { + 'direction': {'key': 'direction', 'type': 'str'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'source': {'key': 'source', 'type': 'str'}, + 'destination': {'key': 'destination', 'type': 'str'}, + 'destination_port': {'key': 'destinationPort', 'type': 'str'}, + } + + def __init__( + self, + *, + direction: Union[str, "Direction"], + protocol: str, + source: str, + destination: str, + destination_port: str, + **kwargs + ): + """ + :keyword direction: Required. The direction of the traffic. Possible values include: "Inbound", + "Outbound". + :paramtype direction: str or ~azure.mgmt.network.v2021_08_01.models.Direction + :keyword protocol: Required. Protocol to be verified on. Accepted values are '*', TCP, UDP. + :paramtype protocol: str + :keyword source: Required. Traffic source. Accepted values are '*', IP Address/CIDR, Service + Tag. + :paramtype source: str + :keyword destination: Required. Traffic destination. Accepted values are: '*', IP Address/CIDR, + Service Tag. + :paramtype destination: str + :keyword destination_port: Required. Traffic destination port. Accepted values are '*' and a + single port in the range (0 - 65535). + :paramtype destination_port: str + """ + super(NetworkConfigurationDiagnosticProfile, self).__init__(**kwargs) + self.direction = direction + self.protocol = protocol + self.source = source + self.destination = destination + self.destination_port = destination_port + + +class NetworkConfigurationDiagnosticResponse(msrest.serialization.Model): + """Results of network configuration diagnostic on the target resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar results: List of network configuration diagnostic results. + :vartype results: + list[~azure.mgmt.network.v2021_08_01.models.NetworkConfigurationDiagnosticResult] + """ + + _validation = { + 'results': {'readonly': True}, + } + + _attribute_map = { + 'results': {'key': 'results', 'type': '[NetworkConfigurationDiagnosticResult]'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(NetworkConfigurationDiagnosticResponse, self).__init__(**kwargs) + self.results = None + + +class NetworkConfigurationDiagnosticResult(msrest.serialization.Model): + """Network configuration diagnostic result corresponded to provided traffic query. + + :ivar profile: Network configuration diagnostic profile. + :vartype profile: ~azure.mgmt.network.v2021_08_01.models.NetworkConfigurationDiagnosticProfile + :ivar network_security_group_result: Network security group result. + :vartype network_security_group_result: + ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroupResult + """ + + _attribute_map = { + 'profile': {'key': 'profile', 'type': 'NetworkConfigurationDiagnosticProfile'}, + 'network_security_group_result': {'key': 'networkSecurityGroupResult', 'type': 'NetworkSecurityGroupResult'}, + } + + def __init__( + self, + *, + profile: Optional["NetworkConfigurationDiagnosticProfile"] = None, + network_security_group_result: Optional["NetworkSecurityGroupResult"] = None, + **kwargs + ): + """ + :keyword profile: Network configuration diagnostic profile. + :paramtype profile: + ~azure.mgmt.network.v2021_08_01.models.NetworkConfigurationDiagnosticProfile + :keyword network_security_group_result: Network security group result. + :paramtype network_security_group_result: + ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroupResult + """ + super(NetworkConfigurationDiagnosticResult, self).__init__(**kwargs) + self.profile = profile + self.network_security_group_result = network_security_group_result + + +class NetworkIntentPolicy(Resource): + """Network Intent Policy resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + """ + super(NetworkIntentPolicy, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + + +class NetworkIntentPolicyConfiguration(msrest.serialization.Model): + """Details of NetworkIntentPolicyConfiguration for PrepareNetworkPoliciesRequest. + + :ivar network_intent_policy_name: The name of the Network Intent Policy for storing in target + subscription. + :vartype network_intent_policy_name: str + :ivar source_network_intent_policy: Source network intent policy. + :vartype source_network_intent_policy: + ~azure.mgmt.network.v2021_08_01.models.NetworkIntentPolicy + """ + + _attribute_map = { + 'network_intent_policy_name': {'key': 'networkIntentPolicyName', 'type': 'str'}, + 'source_network_intent_policy': {'key': 'sourceNetworkIntentPolicy', 'type': 'NetworkIntentPolicy'}, + } + + def __init__( + self, + *, + network_intent_policy_name: Optional[str] = None, + source_network_intent_policy: Optional["NetworkIntentPolicy"] = None, + **kwargs + ): + """ + :keyword network_intent_policy_name: The name of the Network Intent Policy for storing in + target subscription. + :paramtype network_intent_policy_name: str + :keyword source_network_intent_policy: Source network intent policy. + :paramtype source_network_intent_policy: + ~azure.mgmt.network.v2021_08_01.models.NetworkIntentPolicy + """ + super(NetworkIntentPolicyConfiguration, self).__init__(**kwargs) + self.network_intent_policy_name = network_intent_policy_name + self.source_network_intent_policy = source_network_intent_policy + + +class NetworkInterface(Resource): + """A network interface in a resource group. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar extended_location: The extended location of the network interface. + :vartype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar virtual_machine: The reference to a virtual machine. + :vartype virtual_machine: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar network_security_group: The reference to the NetworkSecurityGroup resource. + :vartype network_security_group: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :ivar private_endpoint: A reference to the private endpoint to which the network interface is + linked. + :vartype private_endpoint: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint + :ivar ip_configurations: A list of IPConfigurations of the network interface. + :vartype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration] + :ivar tap_configurations: A list of TapConfigurations of the network interface. + :vartype tap_configurations: + list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration] + :ivar dns_settings: The DNS settings in network interface. + :vartype dns_settings: ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceDnsSettings + :ivar mac_address: The MAC address of the network interface. + :vartype mac_address: str + :ivar primary: Whether this is a primary network interface on a virtual machine. + :vartype primary: bool + :ivar vnet_encryption_supported: Whether the virtual machine this nic is attached to supports + encryption. + :vartype vnet_encryption_supported: bool + :ivar enable_accelerated_networking: If the network interface is accelerated networking + enabled. + :vartype enable_accelerated_networking: bool + :ivar enable_ip_forwarding: Indicates whether IP forwarding is enabled on this network + interface. + :vartype enable_ip_forwarding: bool + :ivar hosted_workloads: A list of references to linked BareMetal resources. + :vartype hosted_workloads: list[str] + :ivar dscp_configuration: A reference to the dscp configuration to which the network interface + is linked. + :vartype dscp_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar resource_guid: The resource GUID property of the network interface resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the network interface resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar workload_type: WorkloadType of the NetworkInterface for BareMetal resources. + :vartype workload_type: str + :ivar nic_type: Type of Network Interface resource. Possible values include: "Standard", + "Elastic". + :vartype nic_type: str or ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceNicType + :ivar private_link_service: Privatelinkservice of the network interface resource. + :vartype private_link_service: ~azure.mgmt.network.v2021_08_01.models.PrivateLinkService + :ivar migration_phase: Migration phase of Network Interface resource. Possible values include: + "None", "Prepare", "Commit", "Abort", "Committed". + :vartype migration_phase: str or + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceMigrationPhase + :ivar auxiliary_mode: Auxiliary mode of Network Interface resource. Possible values include: + "None", "MaxConnections", "Floating". + :vartype auxiliary_mode: str or + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceAuxiliaryMode + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'virtual_machine': {'readonly': True}, + 'private_endpoint': {'readonly': True}, + 'tap_configurations': {'readonly': True}, + 'mac_address': {'readonly': True}, + 'primary': {'readonly': True}, + 'vnet_encryption_supported': {'readonly': True}, + 'hosted_workloads': {'readonly': True}, + 'dscp_configuration': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'extended_location': {'key': 'extendedLocation', 'type': 'ExtendedLocation'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'virtual_machine': {'key': 'properties.virtualMachine', 'type': 'SubResource'}, + 'network_security_group': {'key': 'properties.networkSecurityGroup', 'type': 'NetworkSecurityGroup'}, + 'private_endpoint': {'key': 'properties.privateEndpoint', 'type': 'PrivateEndpoint'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[NetworkInterfaceIPConfiguration]'}, + 'tap_configurations': {'key': 'properties.tapConfigurations', 'type': '[NetworkInterfaceTapConfiguration]'}, + 'dns_settings': {'key': 'properties.dnsSettings', 'type': 'NetworkInterfaceDnsSettings'}, + 'mac_address': {'key': 'properties.macAddress', 'type': 'str'}, + 'primary': {'key': 'properties.primary', 'type': 'bool'}, + 'vnet_encryption_supported': {'key': 'properties.vnetEncryptionSupported', 'type': 'bool'}, + 'enable_accelerated_networking': {'key': 'properties.enableAcceleratedNetworking', 'type': 'bool'}, + 'enable_ip_forwarding': {'key': 'properties.enableIPForwarding', 'type': 'bool'}, + 'hosted_workloads': {'key': 'properties.hostedWorkloads', 'type': '[str]'}, + 'dscp_configuration': {'key': 'properties.dscpConfiguration', 'type': 'SubResource'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'workload_type': {'key': 'properties.workloadType', 'type': 'str'}, + 'nic_type': {'key': 'properties.nicType', 'type': 'str'}, + 'private_link_service': {'key': 'properties.privateLinkService', 'type': 'PrivateLinkService'}, + 'migration_phase': {'key': 'properties.migrationPhase', 'type': 'str'}, + 'auxiliary_mode': {'key': 'properties.auxiliaryMode', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + extended_location: Optional["ExtendedLocation"] = None, + network_security_group: Optional["NetworkSecurityGroup"] = None, + ip_configurations: Optional[List["NetworkInterfaceIPConfiguration"]] = None, + dns_settings: Optional["NetworkInterfaceDnsSettings"] = None, + enable_accelerated_networking: Optional[bool] = None, + enable_ip_forwarding: Optional[bool] = None, + workload_type: Optional[str] = None, + nic_type: Optional[Union[str, "NetworkInterfaceNicType"]] = None, + private_link_service: Optional["PrivateLinkService"] = None, + migration_phase: Optional[Union[str, "NetworkInterfaceMigrationPhase"]] = None, + auxiliary_mode: Optional[Union[str, "NetworkInterfaceAuxiliaryMode"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword extended_location: The extended location of the network interface. + :paramtype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :keyword network_security_group: The reference to the NetworkSecurityGroup resource. + :paramtype network_security_group: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :keyword ip_configurations: A list of IPConfigurations of the network interface. + :paramtype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration] + :keyword dns_settings: The DNS settings in network interface. + :paramtype dns_settings: ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceDnsSettings + :keyword enable_accelerated_networking: If the network interface is accelerated networking + enabled. + :paramtype enable_accelerated_networking: bool + :keyword enable_ip_forwarding: Indicates whether IP forwarding is enabled on this network + interface. + :paramtype enable_ip_forwarding: bool + :keyword workload_type: WorkloadType of the NetworkInterface for BareMetal resources. + :paramtype workload_type: str + :keyword nic_type: Type of Network Interface resource. Possible values include: "Standard", + "Elastic". + :paramtype nic_type: str or ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceNicType + :keyword private_link_service: Privatelinkservice of the network interface resource. + :paramtype private_link_service: ~azure.mgmt.network.v2021_08_01.models.PrivateLinkService + :keyword migration_phase: Migration phase of Network Interface resource. Possible values + include: "None", "Prepare", "Commit", "Abort", "Committed". + :paramtype migration_phase: str or + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceMigrationPhase + :keyword auxiliary_mode: Auxiliary mode of Network Interface resource. Possible values include: + "None", "MaxConnections", "Floating". + :paramtype auxiliary_mode: str or + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceAuxiliaryMode + """ + super(NetworkInterface, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.extended_location = extended_location + self.etag = None + self.virtual_machine = None + self.network_security_group = network_security_group + self.private_endpoint = None + self.ip_configurations = ip_configurations + self.tap_configurations = None + self.dns_settings = dns_settings + self.mac_address = None + self.primary = None + self.vnet_encryption_supported = None + self.enable_accelerated_networking = enable_accelerated_networking + self.enable_ip_forwarding = enable_ip_forwarding + self.hosted_workloads = None + self.dscp_configuration = None + self.resource_guid = None + self.provisioning_state = None + self.workload_type = workload_type + self.nic_type = nic_type + self.private_link_service = private_link_service + self.migration_phase = migration_phase + self.auxiliary_mode = auxiliary_mode + + +class NetworkInterfaceAssociation(msrest.serialization.Model): + """Network interface and its custom security rules. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Network interface ID. + :vartype id: str + :ivar security_rules: Collection of custom security rules. + :vartype security_rules: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + """ + + _validation = { + 'id': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'security_rules': {'key': 'securityRules', 'type': '[SecurityRule]'}, + } + + def __init__( + self, + *, + security_rules: Optional[List["SecurityRule"]] = None, + **kwargs + ): + """ + :keyword security_rules: Collection of custom security rules. + :paramtype security_rules: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + """ + super(NetworkInterfaceAssociation, self).__init__(**kwargs) + self.id = None + self.security_rules = security_rules + + +class NetworkInterfaceDnsSettings(msrest.serialization.Model): + """DNS settings of a network interface. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar dns_servers: List of DNS servers IP addresses. Use 'AzureProvidedDNS' to switch to azure + provided DNS resolution. 'AzureProvidedDNS' value cannot be combined with other IPs, it must be + the only value in dnsServers collection. + :vartype dns_servers: list[str] + :ivar applied_dns_servers: If the VM that uses this NIC is part of an Availability Set, then + this list will have the union of all DNS servers from all NICs that are part of the + Availability Set. This property is what is configured on each of those VMs. + :vartype applied_dns_servers: list[str] + :ivar internal_dns_name_label: Relative DNS name for this NIC used for internal communications + between VMs in the same virtual network. + :vartype internal_dns_name_label: str + :ivar internal_fqdn: Fully qualified DNS name supporting internal communications between VMs in + the same virtual network. + :vartype internal_fqdn: str + :ivar internal_domain_name_suffix: Even if internalDnsNameLabel is not specified, a DNS entry + is created for the primary NIC of the VM. This DNS name can be constructed by concatenating the + VM name with the value of internalDomainNameSuffix. + :vartype internal_domain_name_suffix: str + """ + + _validation = { + 'applied_dns_servers': {'readonly': True}, + 'internal_fqdn': {'readonly': True}, + 'internal_domain_name_suffix': {'readonly': True}, + } + + _attribute_map = { + 'dns_servers': {'key': 'dnsServers', 'type': '[str]'}, + 'applied_dns_servers': {'key': 'appliedDnsServers', 'type': '[str]'}, + 'internal_dns_name_label': {'key': 'internalDnsNameLabel', 'type': 'str'}, + 'internal_fqdn': {'key': 'internalFqdn', 'type': 'str'}, + 'internal_domain_name_suffix': {'key': 'internalDomainNameSuffix', 'type': 'str'}, + } + + def __init__( + self, + *, + dns_servers: Optional[List[str]] = None, + internal_dns_name_label: Optional[str] = None, + **kwargs + ): + """ + :keyword dns_servers: List of DNS servers IP addresses. Use 'AzureProvidedDNS' to switch to + azure provided DNS resolution. 'AzureProvidedDNS' value cannot be combined with other IPs, it + must be the only value in dnsServers collection. + :paramtype dns_servers: list[str] + :keyword internal_dns_name_label: Relative DNS name for this NIC used for internal + communications between VMs in the same virtual network. + :paramtype internal_dns_name_label: str + """ + super(NetworkInterfaceDnsSettings, self).__init__(**kwargs) + self.dns_servers = dns_servers + self.applied_dns_servers = None + self.internal_dns_name_label = internal_dns_name_label + self.internal_fqdn = None + self.internal_domain_name_suffix = None + + +class NetworkInterfaceIPConfiguration(SubResource): + """IPConfiguration in a network interface. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar gateway_load_balancer: The reference to gateway load balancer frontend IP. + :vartype gateway_load_balancer: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar virtual_network_taps: The reference to Virtual Network Taps. + :vartype virtual_network_taps: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap] + :ivar application_gateway_backend_address_pools: The reference to + ApplicationGatewayBackendAddressPool resource. + :vartype application_gateway_backend_address_pools: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddressPool] + :ivar load_balancer_backend_address_pools: The reference to LoadBalancerBackendAddressPool + resource. + :vartype load_balancer_backend_address_pools: + list[~azure.mgmt.network.v2021_08_01.models.BackendAddressPool] + :ivar load_balancer_inbound_nat_rules: A list of references of LoadBalancerInboundNatRules. + :vartype load_balancer_inbound_nat_rules: + list[~azure.mgmt.network.v2021_08_01.models.InboundNatRule] + :ivar private_ip_address: Private IP address of the IP configuration. + :vartype private_ip_address: str + :ivar private_ip_allocation_method: The private IP address allocation method. Possible values + include: "Static", "Dynamic". + :vartype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :ivar private_ip_address_version: Whether the specific IP configuration is IPv4 or IPv6. + Default is IPv4. Possible values include: "IPv4", "IPv6". + :vartype private_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :ivar subnet: Subnet bound to the IP configuration. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :ivar primary: Whether this is a primary customer address on the network interface. + :vartype primary: bool + :ivar public_ip_address: Public IP address bound to the IP configuration. + :vartype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :ivar application_security_groups: Application security groups in which the IP configuration is + included. + :vartype application_security_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :ivar provisioning_state: The provisioning state of the network interface IP configuration. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar private_link_connection_properties: PrivateLinkConnection properties for the network + interface. + :vartype private_link_connection_properties: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfigurationPrivateLinkConnectionProperties + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'private_link_connection_properties': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'gateway_load_balancer': {'key': 'properties.gatewayLoadBalancer', 'type': 'SubResource'}, + 'virtual_network_taps': {'key': 'properties.virtualNetworkTaps', 'type': '[VirtualNetworkTap]'}, + 'application_gateway_backend_address_pools': {'key': 'properties.applicationGatewayBackendAddressPools', 'type': '[ApplicationGatewayBackendAddressPool]'}, + 'load_balancer_backend_address_pools': {'key': 'properties.loadBalancerBackendAddressPools', 'type': '[BackendAddressPool]'}, + 'load_balancer_inbound_nat_rules': {'key': 'properties.loadBalancerInboundNatRules', 'type': '[InboundNatRule]'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + 'private_ip_allocation_method': {'key': 'properties.privateIPAllocationMethod', 'type': 'str'}, + 'private_ip_address_version': {'key': 'properties.privateIPAddressVersion', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'Subnet'}, + 'primary': {'key': 'properties.primary', 'type': 'bool'}, + 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'PublicIPAddress'}, + 'application_security_groups': {'key': 'properties.applicationSecurityGroups', 'type': '[ApplicationSecurityGroup]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'private_link_connection_properties': {'key': 'properties.privateLinkConnectionProperties', 'type': 'NetworkInterfaceIPConfigurationPrivateLinkConnectionProperties'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + type: Optional[str] = None, + gateway_load_balancer: Optional["SubResource"] = None, + virtual_network_taps: Optional[List["VirtualNetworkTap"]] = None, + application_gateway_backend_address_pools: Optional[List["ApplicationGatewayBackendAddressPool"]] = None, + load_balancer_backend_address_pools: Optional[List["BackendAddressPool"]] = None, + load_balancer_inbound_nat_rules: Optional[List["InboundNatRule"]] = None, + private_ip_address: Optional[str] = None, + private_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + private_ip_address_version: Optional[Union[str, "IPVersion"]] = None, + subnet: Optional["Subnet"] = None, + primary: Optional[bool] = None, + public_ip_address: Optional["PublicIPAddress"] = None, + application_security_groups: Optional[List["ApplicationSecurityGroup"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword type: Resource type. + :paramtype type: str + :keyword gateway_load_balancer: The reference to gateway load balancer frontend IP. + :paramtype gateway_load_balancer: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword virtual_network_taps: The reference to Virtual Network Taps. + :paramtype virtual_network_taps: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap] + :keyword application_gateway_backend_address_pools: The reference to + ApplicationGatewayBackendAddressPool resource. + :paramtype application_gateway_backend_address_pools: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendAddressPool] + :keyword load_balancer_backend_address_pools: The reference to LoadBalancerBackendAddressPool + resource. + :paramtype load_balancer_backend_address_pools: + list[~azure.mgmt.network.v2021_08_01.models.BackendAddressPool] + :keyword load_balancer_inbound_nat_rules: A list of references of LoadBalancerInboundNatRules. + :paramtype load_balancer_inbound_nat_rules: + list[~azure.mgmt.network.v2021_08_01.models.InboundNatRule] + :keyword private_ip_address: Private IP address of the IP configuration. + :paramtype private_ip_address: str + :keyword private_ip_allocation_method: The private IP address allocation method. Possible + values include: "Static", "Dynamic". + :paramtype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :keyword private_ip_address_version: Whether the specific IP configuration is IPv4 or IPv6. + Default is IPv4. Possible values include: "IPv4", "IPv6". + :paramtype private_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :keyword subnet: Subnet bound to the IP configuration. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :keyword primary: Whether this is a primary customer address on the network interface. + :paramtype primary: bool + :keyword public_ip_address: Public IP address bound to the IP configuration. + :paramtype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :keyword application_security_groups: Application security groups in which the IP configuration + is included. + :paramtype application_security_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + """ + super(NetworkInterfaceIPConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = type + self.gateway_load_balancer = gateway_load_balancer + self.virtual_network_taps = virtual_network_taps + self.application_gateway_backend_address_pools = application_gateway_backend_address_pools + self.load_balancer_backend_address_pools = load_balancer_backend_address_pools + self.load_balancer_inbound_nat_rules = load_balancer_inbound_nat_rules + self.private_ip_address = private_ip_address + self.private_ip_allocation_method = private_ip_allocation_method + self.private_ip_address_version = private_ip_address_version + self.subnet = subnet + self.primary = primary + self.public_ip_address = public_ip_address + self.application_security_groups = application_security_groups + self.provisioning_state = None + self.private_link_connection_properties = None + + +class NetworkInterfaceIPConfigurationListResult(msrest.serialization.Model): + """Response for list ip configurations API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of ip configurations. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[NetworkInterfaceIPConfiguration]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["NetworkInterfaceIPConfiguration"]] = None, + **kwargs + ): + """ + :keyword value: A list of ip configurations. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration] + """ + super(NetworkInterfaceIPConfigurationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class NetworkInterfaceIPConfigurationPrivateLinkConnectionProperties(msrest.serialization.Model): + """PrivateLinkConnection properties for the network interface. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar group_id: The group ID for current private link connection. + :vartype group_id: str + :ivar required_member_name: The required member name for current private link connection. + :vartype required_member_name: str + :ivar fqdns: List of FQDNs for current private link connection. + :vartype fqdns: list[str] + """ + + _validation = { + 'group_id': {'readonly': True}, + 'required_member_name': {'readonly': True}, + 'fqdns': {'readonly': True}, + } + + _attribute_map = { + 'group_id': {'key': 'groupId', 'type': 'str'}, + 'required_member_name': {'key': 'requiredMemberName', 'type': 'str'}, + 'fqdns': {'key': 'fqdns', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(NetworkInterfaceIPConfigurationPrivateLinkConnectionProperties, self).__init__(**kwargs) + self.group_id = None + self.required_member_name = None + self.fqdns = None + + +class NetworkInterfaceListResult(msrest.serialization.Model): + """Response for the ListNetworkInterface API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of network interfaces in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkInterface] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[NetworkInterface]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["NetworkInterface"]] = None, + **kwargs + ): + """ + :keyword value: A list of network interfaces in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkInterface] + """ + super(NetworkInterfaceListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class NetworkInterfaceLoadBalancerListResult(msrest.serialization.Model): + """Response for list ip configurations API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of load balancers. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.LoadBalancer] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[LoadBalancer]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["LoadBalancer"]] = None, + **kwargs + ): + """ + :keyword value: A list of load balancers. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.LoadBalancer] + """ + super(NetworkInterfaceLoadBalancerListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class NetworkInterfaceTapConfiguration(SubResource): + """Tap configuration in a Network Interface. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Sub Resource type. + :vartype type: str + :ivar virtual_network_tap: The reference to the Virtual Network Tap resource. + :vartype virtual_network_tap: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap + :ivar provisioning_state: The provisioning state of the network interface tap configuration + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'virtual_network_tap': {'key': 'properties.virtualNetworkTap', 'type': 'VirtualNetworkTap'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + virtual_network_tap: Optional["VirtualNetworkTap"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword virtual_network_tap: The reference to the Virtual Network Tap resource. + :paramtype virtual_network_tap: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap + """ + super(NetworkInterfaceTapConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.virtual_network_tap = virtual_network_tap + self.provisioning_state = None + + +class NetworkInterfaceTapConfigurationListResult(msrest.serialization.Model): + """Response for list tap configurations API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of tap configurations. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[NetworkInterfaceTapConfiguration]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["NetworkInterfaceTapConfiguration"]] = None, + **kwargs + ): + """ + :keyword value: A list of tap configurations. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration] + """ + super(NetworkInterfaceTapConfigurationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class NetworkProfile(Resource): + """Network profile resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar container_network_interfaces: List of child container network interfaces. + :vartype container_network_interfaces: + list[~azure.mgmt.network.v2021_08_01.models.ContainerNetworkInterface] + :ivar container_network_interface_configurations: List of chid container network interface + configurations. + :vartype container_network_interface_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ContainerNetworkInterfaceConfiguration] + :ivar resource_guid: The resource GUID property of the network profile resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the network profile resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'container_network_interfaces': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'container_network_interfaces': {'key': 'properties.containerNetworkInterfaces', 'type': '[ContainerNetworkInterface]'}, + 'container_network_interface_configurations': {'key': 'properties.containerNetworkInterfaceConfigurations', 'type': '[ContainerNetworkInterfaceConfiguration]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + container_network_interface_configurations: Optional[List["ContainerNetworkInterfaceConfiguration"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword container_network_interface_configurations: List of chid container network interface + configurations. + :paramtype container_network_interface_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ContainerNetworkInterfaceConfiguration] + """ + super(NetworkProfile, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.container_network_interfaces = None + self.container_network_interface_configurations = container_network_interface_configurations + self.resource_guid = None + self.provisioning_state = None + + +class NetworkProfileListResult(msrest.serialization.Model): + """Response for ListNetworkProfiles API service call. + + :ivar value: A list of network profiles that exist in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkProfile] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[NetworkProfile]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["NetworkProfile"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of network profiles that exist in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkProfile] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(NetworkProfileListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class NetworkRule(FirewallPolicyRule): + """Rule of type network. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Name of the rule. + :vartype name: str + :ivar description: Description of the rule. + :vartype description: str + :ivar rule_type: Required. Rule Type.Constant filled by server. Possible values include: + "ApplicationRule", "NetworkRule", "NatRule". + :vartype rule_type: str or ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleType + :ivar ip_protocols: Array of FirewallPolicyRuleNetworkProtocols. + :vartype ip_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleNetworkProtocol] + :ivar source_addresses: List of source IP addresses for this rule. + :vartype source_addresses: list[str] + :ivar destination_addresses: List of destination IP addresses or Service Tags. + :vartype destination_addresses: list[str] + :ivar destination_ports: List of destination ports. + :vartype destination_ports: list[str] + :ivar source_ip_groups: List of source IpGroups for this rule. + :vartype source_ip_groups: list[str] + :ivar destination_ip_groups: List of destination IpGroups for this rule. + :vartype destination_ip_groups: list[str] + :ivar destination_fqdns: List of destination FQDNs. + :vartype destination_fqdns: list[str] + """ + + _validation = { + 'rule_type': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'rule_type': {'key': 'ruleType', 'type': 'str'}, + 'ip_protocols': {'key': 'ipProtocols', 'type': '[str]'}, + 'source_addresses': {'key': 'sourceAddresses', 'type': '[str]'}, + 'destination_addresses': {'key': 'destinationAddresses', 'type': '[str]'}, + 'destination_ports': {'key': 'destinationPorts', 'type': '[str]'}, + 'source_ip_groups': {'key': 'sourceIpGroups', 'type': '[str]'}, + 'destination_ip_groups': {'key': 'destinationIpGroups', 'type': '[str]'}, + 'destination_fqdns': {'key': 'destinationFqdns', 'type': '[str]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + description: Optional[str] = None, + ip_protocols: Optional[List[Union[str, "FirewallPolicyRuleNetworkProtocol"]]] = None, + source_addresses: Optional[List[str]] = None, + destination_addresses: Optional[List[str]] = None, + destination_ports: Optional[List[str]] = None, + source_ip_groups: Optional[List[str]] = None, + destination_ip_groups: Optional[List[str]] = None, + destination_fqdns: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword name: Name of the rule. + :paramtype name: str + :keyword description: Description of the rule. + :paramtype description: str + :keyword ip_protocols: Array of FirewallPolicyRuleNetworkProtocols. + :paramtype ip_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleNetworkProtocol] + :keyword source_addresses: List of source IP addresses for this rule. + :paramtype source_addresses: list[str] + :keyword destination_addresses: List of destination IP addresses or Service Tags. + :paramtype destination_addresses: list[str] + :keyword destination_ports: List of destination ports. + :paramtype destination_ports: list[str] + :keyword source_ip_groups: List of source IpGroups for this rule. + :paramtype source_ip_groups: list[str] + :keyword destination_ip_groups: List of destination IpGroups for this rule. + :paramtype destination_ip_groups: list[str] + :keyword destination_fqdns: List of destination FQDNs. + :paramtype destination_fqdns: list[str] + """ + super(NetworkRule, self).__init__(name=name, description=description, **kwargs) + self.rule_type = 'NetworkRule' # type: str + self.ip_protocols = ip_protocols + self.source_addresses = source_addresses + self.destination_addresses = destination_addresses + self.destination_ports = destination_ports + self.source_ip_groups = source_ip_groups + self.destination_ip_groups = destination_ip_groups + self.destination_fqdns = destination_fqdns + + +class NetworkSecurityGroup(Resource): + """NetworkSecurityGroup resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar security_rules: A collection of security rules of the network security group. + :vartype security_rules: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + :ivar default_security_rules: The default security rules of network security group. + :vartype default_security_rules: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + :ivar network_interfaces: A collection of references to network interfaces. + :vartype network_interfaces: list[~azure.mgmt.network.v2021_08_01.models.NetworkInterface] + :ivar subnets: A collection of references to subnets. + :vartype subnets: list[~azure.mgmt.network.v2021_08_01.models.Subnet] + :ivar flow_logs: A collection of references to flow log resources. + :vartype flow_logs: list[~azure.mgmt.network.v2021_08_01.models.FlowLog] + :ivar resource_guid: The resource GUID property of the network security group resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the network security group resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'default_security_rules': {'readonly': True}, + 'network_interfaces': {'readonly': True}, + 'subnets': {'readonly': True}, + 'flow_logs': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'security_rules': {'key': 'properties.securityRules', 'type': '[SecurityRule]'}, + 'default_security_rules': {'key': 'properties.defaultSecurityRules', 'type': '[SecurityRule]'}, + 'network_interfaces': {'key': 'properties.networkInterfaces', 'type': '[NetworkInterface]'}, + 'subnets': {'key': 'properties.subnets', 'type': '[Subnet]'}, + 'flow_logs': {'key': 'properties.flowLogs', 'type': '[FlowLog]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + security_rules: Optional[List["SecurityRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword security_rules: A collection of security rules of the network security group. + :paramtype security_rules: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + """ + super(NetworkSecurityGroup, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.security_rules = security_rules + self.default_security_rules = None + self.network_interfaces = None + self.subnets = None + self.flow_logs = None + self.resource_guid = None + self.provisioning_state = None + + +class NetworkSecurityGroupListResult(msrest.serialization.Model): + """Response for ListNetworkSecurityGroups API service call. + + :ivar value: A list of NetworkSecurityGroup resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[NetworkSecurityGroup]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["NetworkSecurityGroup"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of NetworkSecurityGroup resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(NetworkSecurityGroupListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class NetworkSecurityGroupResult(msrest.serialization.Model): + """Network configuration diagnostic result corresponded provided traffic query. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar security_rule_access_result: The network traffic is allowed or denied. Possible values + include: "Allow", "Deny". + :vartype security_rule_access_result: str or + ~azure.mgmt.network.v2021_08_01.models.SecurityRuleAccess + :ivar evaluated_network_security_groups: List of results network security groups diagnostic. + :vartype evaluated_network_security_groups: + list[~azure.mgmt.network.v2021_08_01.models.EvaluatedNetworkSecurityGroup] + """ + + _validation = { + 'evaluated_network_security_groups': {'readonly': True}, + } + + _attribute_map = { + 'security_rule_access_result': {'key': 'securityRuleAccessResult', 'type': 'str'}, + 'evaluated_network_security_groups': {'key': 'evaluatedNetworkSecurityGroups', 'type': '[EvaluatedNetworkSecurityGroup]'}, + } + + def __init__( + self, + *, + security_rule_access_result: Optional[Union[str, "SecurityRuleAccess"]] = None, + **kwargs + ): + """ + :keyword security_rule_access_result: The network traffic is allowed or denied. Possible values + include: "Allow", "Deny". + :paramtype security_rule_access_result: str or + ~azure.mgmt.network.v2021_08_01.models.SecurityRuleAccess + """ + super(NetworkSecurityGroupResult, self).__init__(**kwargs) + self.security_rule_access_result = security_rule_access_result + self.evaluated_network_security_groups = None + + +class NetworkSecurityRulesEvaluationResult(msrest.serialization.Model): + """Network security rules evaluation result. + + :ivar name: Name of the network security rule. + :vartype name: str + :ivar protocol_matched: Value indicating whether protocol is matched. + :vartype protocol_matched: bool + :ivar source_matched: Value indicating whether source is matched. + :vartype source_matched: bool + :ivar source_port_matched: Value indicating whether source port is matched. + :vartype source_port_matched: bool + :ivar destination_matched: Value indicating whether destination is matched. + :vartype destination_matched: bool + :ivar destination_port_matched: Value indicating whether destination port is matched. + :vartype destination_port_matched: bool + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'protocol_matched': {'key': 'protocolMatched', 'type': 'bool'}, + 'source_matched': {'key': 'sourceMatched', 'type': 'bool'}, + 'source_port_matched': {'key': 'sourcePortMatched', 'type': 'bool'}, + 'destination_matched': {'key': 'destinationMatched', 'type': 'bool'}, + 'destination_port_matched': {'key': 'destinationPortMatched', 'type': 'bool'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + protocol_matched: Optional[bool] = None, + source_matched: Optional[bool] = None, + source_port_matched: Optional[bool] = None, + destination_matched: Optional[bool] = None, + destination_port_matched: Optional[bool] = None, + **kwargs + ): + """ + :keyword name: Name of the network security rule. + :paramtype name: str + :keyword protocol_matched: Value indicating whether protocol is matched. + :paramtype protocol_matched: bool + :keyword source_matched: Value indicating whether source is matched. + :paramtype source_matched: bool + :keyword source_port_matched: Value indicating whether source port is matched. + :paramtype source_port_matched: bool + :keyword destination_matched: Value indicating whether destination is matched. + :paramtype destination_matched: bool + :keyword destination_port_matched: Value indicating whether destination port is matched. + :paramtype destination_port_matched: bool + """ + super(NetworkSecurityRulesEvaluationResult, self).__init__(**kwargs) + self.name = name + self.protocol_matched = protocol_matched + self.source_matched = source_matched + self.source_port_matched = source_port_matched + self.destination_matched = destination_matched + self.destination_port_matched = destination_port_matched + + +class NetworkVirtualAppliance(Resource): + """NetworkVirtualAppliance Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar identity: The service principal that has read access to cloud-init and config blob. + :vartype identity: ~azure.mgmt.network.v2021_08_01.models.ManagedServiceIdentity + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar nva_sku: Network Virtual Appliance SKU. + :vartype nva_sku: ~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSkuProperties + :ivar address_prefix: Address Prefix. + :vartype address_prefix: str + :ivar boot_strap_configuration_blobs: BootStrapConfigurationBlobs storage URLs. + :vartype boot_strap_configuration_blobs: list[str] + :ivar virtual_hub: The Virtual Hub where Network Virtual Appliance is being deployed. + :vartype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar cloud_init_configuration_blobs: CloudInitConfigurationBlob storage URLs. + :vartype cloud_init_configuration_blobs: list[str] + :ivar cloud_init_configuration: CloudInitConfiguration string in plain text. + :vartype cloud_init_configuration: str + :ivar virtual_appliance_asn: VirtualAppliance ASN. + :vartype virtual_appliance_asn: long + :ivar ssh_public_key: Public key for SSH login. + :vartype ssh_public_key: str + :ivar virtual_appliance_nics: List of Virtual Appliance Network Interfaces. + :vartype virtual_appliance_nics: + list[~azure.mgmt.network.v2021_08_01.models.VirtualApplianceNicProperties] + :ivar virtual_appliance_sites: List of references to VirtualApplianceSite. + :vartype virtual_appliance_sites: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar inbound_security_rules: List of references to InboundSecurityRules. + :vartype inbound_security_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar provisioning_state: The provisioning state of the resource. Possible values include: + "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'address_prefix': {'readonly': True}, + 'virtual_appliance_asn': {'maximum': 4294967295, 'minimum': 0}, + 'virtual_appliance_nics': {'readonly': True}, + 'virtual_appliance_sites': {'readonly': True}, + 'inbound_security_rules': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'identity': {'key': 'identity', 'type': 'ManagedServiceIdentity'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'nva_sku': {'key': 'properties.nvaSku', 'type': 'VirtualApplianceSkuProperties'}, + 'address_prefix': {'key': 'properties.addressPrefix', 'type': 'str'}, + 'boot_strap_configuration_blobs': {'key': 'properties.bootStrapConfigurationBlobs', 'type': '[str]'}, + 'virtual_hub': {'key': 'properties.virtualHub', 'type': 'SubResource'}, + 'cloud_init_configuration_blobs': {'key': 'properties.cloudInitConfigurationBlobs', 'type': '[str]'}, + 'cloud_init_configuration': {'key': 'properties.cloudInitConfiguration', 'type': 'str'}, + 'virtual_appliance_asn': {'key': 'properties.virtualApplianceAsn', 'type': 'long'}, + 'ssh_public_key': {'key': 'properties.sshPublicKey', 'type': 'str'}, + 'virtual_appliance_nics': {'key': 'properties.virtualApplianceNics', 'type': '[VirtualApplianceNicProperties]'}, + 'virtual_appliance_sites': {'key': 'properties.virtualApplianceSites', 'type': '[SubResource]'}, + 'inbound_security_rules': {'key': 'properties.inboundSecurityRules', 'type': '[SubResource]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + identity: Optional["ManagedServiceIdentity"] = None, + nva_sku: Optional["VirtualApplianceSkuProperties"] = None, + boot_strap_configuration_blobs: Optional[List[str]] = None, + virtual_hub: Optional["SubResource"] = None, + cloud_init_configuration_blobs: Optional[List[str]] = None, + cloud_init_configuration: Optional[str] = None, + virtual_appliance_asn: Optional[int] = None, + ssh_public_key: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword identity: The service principal that has read access to cloud-init and config blob. + :paramtype identity: ~azure.mgmt.network.v2021_08_01.models.ManagedServiceIdentity + :keyword nva_sku: Network Virtual Appliance SKU. + :paramtype nva_sku: ~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSkuProperties + :keyword boot_strap_configuration_blobs: BootStrapConfigurationBlobs storage URLs. + :paramtype boot_strap_configuration_blobs: list[str] + :keyword virtual_hub: The Virtual Hub where Network Virtual Appliance is being deployed. + :paramtype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword cloud_init_configuration_blobs: CloudInitConfigurationBlob storage URLs. + :paramtype cloud_init_configuration_blobs: list[str] + :keyword cloud_init_configuration: CloudInitConfiguration string in plain text. + :paramtype cloud_init_configuration: str + :keyword virtual_appliance_asn: VirtualAppliance ASN. + :paramtype virtual_appliance_asn: long + :keyword ssh_public_key: Public key for SSH login. + :paramtype ssh_public_key: str + """ + super(NetworkVirtualAppliance, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.identity = identity + self.etag = None + self.nva_sku = nva_sku + self.address_prefix = None + self.boot_strap_configuration_blobs = boot_strap_configuration_blobs + self.virtual_hub = virtual_hub + self.cloud_init_configuration_blobs = cloud_init_configuration_blobs + self.cloud_init_configuration = cloud_init_configuration + self.virtual_appliance_asn = virtual_appliance_asn + self.ssh_public_key = ssh_public_key + self.virtual_appliance_nics = None + self.virtual_appliance_sites = None + self.inbound_security_rules = None + self.provisioning_state = None + + +class NetworkVirtualApplianceListResult(msrest.serialization.Model): + """Response for ListNetworkVirtualAppliances API service call. + + :ivar value: List of Network Virtual Appliances. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[NetworkVirtualAppliance]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["NetworkVirtualAppliance"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Network Virtual Appliances. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(NetworkVirtualApplianceListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class NetworkVirtualApplianceSiteListResult(msrest.serialization.Model): + """Response for ListNetworkVirtualApplianceSites API service call. + + :ivar value: List of Network Virtual Appliance sites. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSite] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualApplianceSite]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualApplianceSite"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Network Virtual Appliance sites. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSite] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(NetworkVirtualApplianceSiteListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class NetworkVirtualApplianceSku(Resource): + """Definition of the NetworkVirtualApplianceSkus resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar vendor: Network Virtual Appliance Sku vendor. + :vartype vendor: str + :ivar available_versions: Available Network Virtual Appliance versions. + :vartype available_versions: list[str] + :ivar available_scale_units: The list of scale units available. + :vartype available_scale_units: + list[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSkuInstances] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'vendor': {'readonly': True}, + 'available_versions': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'vendor': {'key': 'properties.vendor', 'type': 'str'}, + 'available_versions': {'key': 'properties.availableVersions', 'type': '[str]'}, + 'available_scale_units': {'key': 'properties.availableScaleUnits', 'type': '[NetworkVirtualApplianceSkuInstances]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + available_scale_units: Optional[List["NetworkVirtualApplianceSkuInstances"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword available_scale_units: The list of scale units available. + :paramtype available_scale_units: + list[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSkuInstances] + """ + super(NetworkVirtualApplianceSku, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.vendor = None + self.available_versions = None + self.available_scale_units = available_scale_units + + +class NetworkVirtualApplianceSkuInstances(msrest.serialization.Model): + """List of available Sku and instances. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar scale_unit: Scale Unit. + :vartype scale_unit: str + :ivar instance_count: Instance Count. + :vartype instance_count: int + """ + + _validation = { + 'scale_unit': {'readonly': True}, + 'instance_count': {'readonly': True}, + } + + _attribute_map = { + 'scale_unit': {'key': 'scaleUnit', 'type': 'str'}, + 'instance_count': {'key': 'instanceCount', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(NetworkVirtualApplianceSkuInstances, self).__init__(**kwargs) + self.scale_unit = None + self.instance_count = None + + +class NetworkVirtualApplianceSkuListResult(msrest.serialization.Model): + """Response for ListNetworkVirtualApplianceSkus API service call. + + :ivar value: List of Network Virtual Appliance Skus that are available. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSku] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[NetworkVirtualApplianceSku]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["NetworkVirtualApplianceSku"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Network Virtual Appliance Skus that are available. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSku] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(NetworkVirtualApplianceSkuListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class NetworkWatcher(Resource): + """Network watcher in a resource group. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar provisioning_state: The provisioning state of the network watcher resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + """ + super(NetworkWatcher, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.provisioning_state = None + + +class NetworkWatcherListResult(msrest.serialization.Model): + """Response for ListNetworkWatchers API service call. + + :ivar value: List of network watcher resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkWatcher] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[NetworkWatcher]'}, + } + + def __init__( + self, + *, + value: Optional[List["NetworkWatcher"]] = None, + **kwargs + ): + """ + :keyword value: List of network watcher resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.NetworkWatcher] + """ + super(NetworkWatcherListResult, self).__init__(**kwargs) + self.value = value + + +class NextHopParameters(msrest.serialization.Model): + """Parameters that define the source and destination endpoint. + + All required parameters must be populated in order to send to Azure. + + :ivar target_resource_id: Required. The resource identifier of the target resource against + which the action is to be performed. + :vartype target_resource_id: str + :ivar source_ip_address: Required. The source IP address. + :vartype source_ip_address: str + :ivar destination_ip_address: Required. The destination IP address. + :vartype destination_ip_address: str + :ivar target_nic_resource_id: The NIC ID. (If VM has multiple NICs and IP forwarding is enabled + on any of the nics, then this parameter must be specified. Otherwise optional). + :vartype target_nic_resource_id: str + """ + + _validation = { + 'target_resource_id': {'required': True}, + 'source_ip_address': {'required': True}, + 'destination_ip_address': {'required': True}, + } + + _attribute_map = { + 'target_resource_id': {'key': 'targetResourceId', 'type': 'str'}, + 'source_ip_address': {'key': 'sourceIPAddress', 'type': 'str'}, + 'destination_ip_address': {'key': 'destinationIPAddress', 'type': 'str'}, + 'target_nic_resource_id': {'key': 'targetNicResourceId', 'type': 'str'}, + } + + def __init__( + self, + *, + target_resource_id: str, + source_ip_address: str, + destination_ip_address: str, + target_nic_resource_id: Optional[str] = None, + **kwargs + ): + """ + :keyword target_resource_id: Required. The resource identifier of the target resource against + which the action is to be performed. + :paramtype target_resource_id: str + :keyword source_ip_address: Required. The source IP address. + :paramtype source_ip_address: str + :keyword destination_ip_address: Required. The destination IP address. + :paramtype destination_ip_address: str + :keyword target_nic_resource_id: The NIC ID. (If VM has multiple NICs and IP forwarding is + enabled on any of the nics, then this parameter must be specified. Otherwise optional). + :paramtype target_nic_resource_id: str + """ + super(NextHopParameters, self).__init__(**kwargs) + self.target_resource_id = target_resource_id + self.source_ip_address = source_ip_address + self.destination_ip_address = destination_ip_address + self.target_nic_resource_id = target_nic_resource_id + + +class NextHopResult(msrest.serialization.Model): + """The information about next hop from the specified VM. + + :ivar next_hop_type: Next hop type. Possible values include: "Internet", "VirtualAppliance", + "VirtualNetworkGateway", "VnetLocal", "HyperNetGateway", "None". + :vartype next_hop_type: str or ~azure.mgmt.network.v2021_08_01.models.NextHopType + :ivar next_hop_ip_address: Next hop IP Address. + :vartype next_hop_ip_address: str + :ivar route_table_id: The resource identifier for the route table associated with the route + being returned. If the route being returned does not correspond to any user created routes then + this field will be the string 'System Route'. + :vartype route_table_id: str + """ + + _attribute_map = { + 'next_hop_type': {'key': 'nextHopType', 'type': 'str'}, + 'next_hop_ip_address': {'key': 'nextHopIpAddress', 'type': 'str'}, + 'route_table_id': {'key': 'routeTableId', 'type': 'str'}, + } + + def __init__( + self, + *, + next_hop_type: Optional[Union[str, "NextHopType"]] = None, + next_hop_ip_address: Optional[str] = None, + route_table_id: Optional[str] = None, + **kwargs + ): + """ + :keyword next_hop_type: Next hop type. Possible values include: "Internet", "VirtualAppliance", + "VirtualNetworkGateway", "VnetLocal", "HyperNetGateway", "None". + :paramtype next_hop_type: str or ~azure.mgmt.network.v2021_08_01.models.NextHopType + :keyword next_hop_ip_address: Next hop IP Address. + :paramtype next_hop_ip_address: str + :keyword route_table_id: The resource identifier for the route table associated with the route + being returned. If the route being returned does not correspond to any user created routes then + this field will be the string 'System Route'. + :paramtype route_table_id: str + """ + super(NextHopResult, self).__init__(**kwargs) + self.next_hop_type = next_hop_type + self.next_hop_ip_address = next_hop_ip_address + self.route_table_id = route_table_id + + +class O365BreakOutCategoryPolicies(msrest.serialization.Model): + """Office365 breakout categories. + + :ivar allow: Flag to control allow category. + :vartype allow: bool + :ivar optimize: Flag to control optimize category. + :vartype optimize: bool + :ivar default: Flag to control default category. + :vartype default: bool + """ + + _attribute_map = { + 'allow': {'key': 'allow', 'type': 'bool'}, + 'optimize': {'key': 'optimize', 'type': 'bool'}, + 'default': {'key': 'default', 'type': 'bool'}, + } + + def __init__( + self, + *, + allow: Optional[bool] = None, + optimize: Optional[bool] = None, + default: Optional[bool] = None, + **kwargs + ): + """ + :keyword allow: Flag to control allow category. + :paramtype allow: bool + :keyword optimize: Flag to control optimize category. + :paramtype optimize: bool + :keyword default: Flag to control default category. + :paramtype default: bool + """ + super(O365BreakOutCategoryPolicies, self).__init__(**kwargs) + self.allow = allow + self.optimize = optimize + self.default = default + + +class O365PolicyProperties(msrest.serialization.Model): + """The Office365 breakout policy. + + :ivar break_out_categories: Office365 breakout categories. + :vartype break_out_categories: + ~azure.mgmt.network.v2021_08_01.models.O365BreakOutCategoryPolicies + """ + + _attribute_map = { + 'break_out_categories': {'key': 'breakOutCategories', 'type': 'O365BreakOutCategoryPolicies'}, + } + + def __init__( + self, + *, + break_out_categories: Optional["O365BreakOutCategoryPolicies"] = None, + **kwargs + ): + """ + :keyword break_out_categories: Office365 breakout categories. + :paramtype break_out_categories: + ~azure.mgmt.network.v2021_08_01.models.O365BreakOutCategoryPolicies + """ + super(O365PolicyProperties, self).__init__(**kwargs) + self.break_out_categories = break_out_categories + + +class Office365PolicyProperties(msrest.serialization.Model): + """Network Virtual Appliance Sku Properties. + + :ivar break_out_categories: Office 365 breakout categories. + :vartype break_out_categories: ~azure.mgmt.network.v2021_08_01.models.BreakOutCategoryPolicies + """ + + _attribute_map = { + 'break_out_categories': {'key': 'breakOutCategories', 'type': 'BreakOutCategoryPolicies'}, + } + + def __init__( + self, + *, + break_out_categories: Optional["BreakOutCategoryPolicies"] = None, + **kwargs + ): + """ + :keyword break_out_categories: Office 365 breakout categories. + :paramtype break_out_categories: + ~azure.mgmt.network.v2021_08_01.models.BreakOutCategoryPolicies + """ + super(Office365PolicyProperties, self).__init__(**kwargs) + self.break_out_categories = break_out_categories + + +class Operation(msrest.serialization.Model): + """Network REST API operation definition. + + :ivar name: Operation name: {provider}/{resource}/{operation}. + :vartype name: str + :ivar display: Display metadata associated with the operation. + :vartype display: ~azure.mgmt.network.v2021_08_01.models.OperationDisplay + :ivar origin: Origin of the operation. + :vartype origin: str + :ivar service_specification: Specification of the service. + :vartype service_specification: + ~azure.mgmt.network.v2021_08_01.models.OperationPropertiesFormatServiceSpecification + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display': {'key': 'display', 'type': 'OperationDisplay'}, + 'origin': {'key': 'origin', 'type': 'str'}, + 'service_specification': {'key': 'properties.serviceSpecification', 'type': 'OperationPropertiesFormatServiceSpecification'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + display: Optional["OperationDisplay"] = None, + origin: Optional[str] = None, + service_specification: Optional["OperationPropertiesFormatServiceSpecification"] = None, + **kwargs + ): + """ + :keyword name: Operation name: {provider}/{resource}/{operation}. + :paramtype name: str + :keyword display: Display metadata associated with the operation. + :paramtype display: ~azure.mgmt.network.v2021_08_01.models.OperationDisplay + :keyword origin: Origin of the operation. + :paramtype origin: str + :keyword service_specification: Specification of the service. + :paramtype service_specification: + ~azure.mgmt.network.v2021_08_01.models.OperationPropertiesFormatServiceSpecification + """ + super(Operation, self).__init__(**kwargs) + self.name = name + self.display = display + self.origin = origin + self.service_specification = service_specification + + +class OperationDisplay(msrest.serialization.Model): + """Display metadata associated with the operation. + + :ivar provider: Service provider: Microsoft Network. + :vartype provider: str + :ivar resource: Resource on which the operation is performed. + :vartype resource: str + :ivar operation: Type of the operation: get, read, delete, etc. + :vartype operation: str + :ivar description: Description of the operation. + :vartype description: str + """ + + _attribute_map = { + 'provider': {'key': 'provider', 'type': 'str'}, + 'resource': {'key': 'resource', 'type': 'str'}, + 'operation': {'key': 'operation', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + } + + def __init__( + self, + *, + provider: Optional[str] = None, + resource: Optional[str] = None, + operation: Optional[str] = None, + description: Optional[str] = None, + **kwargs + ): + """ + :keyword provider: Service provider: Microsoft Network. + :paramtype provider: str + :keyword resource: Resource on which the operation is performed. + :paramtype resource: str + :keyword operation: Type of the operation: get, read, delete, etc. + :paramtype operation: str + :keyword description: Description of the operation. + :paramtype description: str + """ + super(OperationDisplay, self).__init__(**kwargs) + self.provider = provider + self.resource = resource + self.operation = operation + self.description = description + + +class OperationListResult(msrest.serialization.Model): + """Result of the request to list Network operations. It contains a list of operations and a URL link to get the next set of results. + + :ivar value: List of Network operations supported by the Network resource provider. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.Operation] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Operation]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["Operation"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Network operations supported by the Network resource provider. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.Operation] + :keyword next_link: URL to get the next set of operation list results if there are any. + :paramtype next_link: str + """ + super(OperationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class OperationPropertiesFormatServiceSpecification(msrest.serialization.Model): + """Specification of the service. + + :ivar metric_specifications: Operation service specification. + :vartype metric_specifications: + list[~azure.mgmt.network.v2021_08_01.models.MetricSpecification] + :ivar log_specifications: Operation log specification. + :vartype log_specifications: list[~azure.mgmt.network.v2021_08_01.models.LogSpecification] + """ + + _attribute_map = { + 'metric_specifications': {'key': 'metricSpecifications', 'type': '[MetricSpecification]'}, + 'log_specifications': {'key': 'logSpecifications', 'type': '[LogSpecification]'}, + } + + def __init__( + self, + *, + metric_specifications: Optional[List["MetricSpecification"]] = None, + log_specifications: Optional[List["LogSpecification"]] = None, + **kwargs + ): + """ + :keyword metric_specifications: Operation service specification. + :paramtype metric_specifications: + list[~azure.mgmt.network.v2021_08_01.models.MetricSpecification] + :keyword log_specifications: Operation log specification. + :paramtype log_specifications: list[~azure.mgmt.network.v2021_08_01.models.LogSpecification] + """ + super(OperationPropertiesFormatServiceSpecification, self).__init__(**kwargs) + self.metric_specifications = metric_specifications + self.log_specifications = log_specifications + + +class OrderBy(msrest.serialization.Model): + """Describes a column to sort. + + :ivar field: Describes the actual column name to sort by. + :vartype field: str + :ivar order: Describes if results should be in ascending/descending order. Possible values + include: "Ascending", "Descending". + :vartype order: str or ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIDPSQuerySortOrder + """ + + _attribute_map = { + 'field': {'key': 'field', 'type': 'str'}, + 'order': {'key': 'order', 'type': 'str'}, + } + + def __init__( + self, + *, + field: Optional[str] = None, + order: Optional[Union[str, "FirewallPolicyIDPSQuerySortOrder"]] = None, + **kwargs + ): + """ + :keyword field: Describes the actual column name to sort by. + :paramtype field: str + :keyword order: Describes if results should be in ascending/descending order. Possible values + include: "Ascending", "Descending". + :paramtype order: str or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIDPSQuerySortOrder + """ + super(OrderBy, self).__init__(**kwargs) + self.field = field + self.order = order + + +class OutboundRule(SubResource): + """Outbound rule of the load balancer. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the set of outbound rules used by + the load balancer. This name can be used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar allocated_outbound_ports: The number of outbound ports to be used for NAT. + :vartype allocated_outbound_ports: int + :ivar frontend_ip_configurations: The Frontend IP addresses of the load balancer. + :vartype frontend_ip_configurations: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar backend_address_pool: A reference to a pool of DIPs. Outbound traffic is randomly load + balanced across IPs in the backend IPs. + :vartype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar provisioning_state: The provisioning state of the outbound rule resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar protocol: The protocol for the outbound rule in load balancer. Possible values include: + "Tcp", "Udp", "All". + :vartype protocol: str or + ~azure.mgmt.network.v2021_08_01.models.LoadBalancerOutboundRuleProtocol + :ivar enable_tcp_reset: Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected + connection termination. This element is only used when the protocol is set to TCP. + :vartype enable_tcp_reset: bool + :ivar idle_timeout_in_minutes: The timeout for the TCP idle connection. + :vartype idle_timeout_in_minutes: int + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'allocated_outbound_ports': {'key': 'properties.allocatedOutboundPorts', 'type': 'int'}, + 'frontend_ip_configurations': {'key': 'properties.frontendIPConfigurations', 'type': '[SubResource]'}, + 'backend_address_pool': {'key': 'properties.backendAddressPool', 'type': 'SubResource'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'enable_tcp_reset': {'key': 'properties.enableTcpReset', 'type': 'bool'}, + 'idle_timeout_in_minutes': {'key': 'properties.idleTimeoutInMinutes', 'type': 'int'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + allocated_outbound_ports: Optional[int] = None, + frontend_ip_configurations: Optional[List["SubResource"]] = None, + backend_address_pool: Optional["SubResource"] = None, + protocol: Optional[Union[str, "LoadBalancerOutboundRuleProtocol"]] = None, + enable_tcp_reset: Optional[bool] = None, + idle_timeout_in_minutes: Optional[int] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the set of outbound rules used by + the load balancer. This name can be used to access the resource. + :paramtype name: str + :keyword allocated_outbound_ports: The number of outbound ports to be used for NAT. + :paramtype allocated_outbound_ports: int + :keyword frontend_ip_configurations: The Frontend IP addresses of the load balancer. + :paramtype frontend_ip_configurations: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword backend_address_pool: A reference to a pool of DIPs. Outbound traffic is randomly load + balanced across IPs in the backend IPs. + :paramtype backend_address_pool: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword protocol: The protocol for the outbound rule in load balancer. Possible values + include: "Tcp", "Udp", "All". + :paramtype protocol: str or + ~azure.mgmt.network.v2021_08_01.models.LoadBalancerOutboundRuleProtocol + :keyword enable_tcp_reset: Receive bidirectional TCP Reset on TCP flow idle timeout or + unexpected connection termination. This element is only used when the protocol is set to TCP. + :paramtype enable_tcp_reset: bool + :keyword idle_timeout_in_minutes: The timeout for the TCP idle connection. + :paramtype idle_timeout_in_minutes: int + """ + super(OutboundRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.allocated_outbound_ports = allocated_outbound_ports + self.frontend_ip_configurations = frontend_ip_configurations + self.backend_address_pool = backend_address_pool + self.provisioning_state = None + self.protocol = protocol + self.enable_tcp_reset = enable_tcp_reset + self.idle_timeout_in_minutes = idle_timeout_in_minutes + + +class OwaspCrsExclusionEntry(msrest.serialization.Model): + """Allow to exclude some variable satisfy the condition for the WAF check. + + All required parameters must be populated in order to send to Azure. + + :ivar match_variable: Required. The variable to be excluded. Possible values include: + "RequestHeaderNames", "RequestCookieNames", "RequestArgNames", "RequestHeaderKeys", + "RequestHeaderValues", "RequestCookieKeys", "RequestCookieValues", "RequestArgKeys", + "RequestArgValues". + :vartype match_variable: str or + ~azure.mgmt.network.v2021_08_01.models.OwaspCrsExclusionEntryMatchVariable + :ivar selector_match_operator: Required. When matchVariable is a collection, operate on the + selector to specify which elements in the collection this exclusion applies to. Possible values + include: "Equals", "Contains", "StartsWith", "EndsWith", "EqualsAny". + :vartype selector_match_operator: str or + ~azure.mgmt.network.v2021_08_01.models.OwaspCrsExclusionEntrySelectorMatchOperator + :ivar selector: Required. When matchVariable is a collection, operator used to specify which + elements in the collection this exclusion applies to. + :vartype selector: str + :ivar exclusion_managed_rule_sets: The managed rule sets that are associated with the + exclusion. + :vartype exclusion_managed_rule_sets: + list[~azure.mgmt.network.v2021_08_01.models.ExclusionManagedRuleSet] + """ + + _validation = { + 'match_variable': {'required': True}, + 'selector_match_operator': {'required': True}, + 'selector': {'required': True}, + } + + _attribute_map = { + 'match_variable': {'key': 'matchVariable', 'type': 'str'}, + 'selector_match_operator': {'key': 'selectorMatchOperator', 'type': 'str'}, + 'selector': {'key': 'selector', 'type': 'str'}, + 'exclusion_managed_rule_sets': {'key': 'exclusionManagedRuleSets', 'type': '[ExclusionManagedRuleSet]'}, + } + + def __init__( + self, + *, + match_variable: Union[str, "OwaspCrsExclusionEntryMatchVariable"], + selector_match_operator: Union[str, "OwaspCrsExclusionEntrySelectorMatchOperator"], + selector: str, + exclusion_managed_rule_sets: Optional[List["ExclusionManagedRuleSet"]] = None, + **kwargs + ): + """ + :keyword match_variable: Required. The variable to be excluded. Possible values include: + "RequestHeaderNames", "RequestCookieNames", "RequestArgNames", "RequestHeaderKeys", + "RequestHeaderValues", "RequestCookieKeys", "RequestCookieValues", "RequestArgKeys", + "RequestArgValues". + :paramtype match_variable: str or + ~azure.mgmt.network.v2021_08_01.models.OwaspCrsExclusionEntryMatchVariable + :keyword selector_match_operator: Required. When matchVariable is a collection, operate on the + selector to specify which elements in the collection this exclusion applies to. Possible values + include: "Equals", "Contains", "StartsWith", "EndsWith", "EqualsAny". + :paramtype selector_match_operator: str or + ~azure.mgmt.network.v2021_08_01.models.OwaspCrsExclusionEntrySelectorMatchOperator + :keyword selector: Required. When matchVariable is a collection, operator used to specify which + elements in the collection this exclusion applies to. + :paramtype selector: str + :keyword exclusion_managed_rule_sets: The managed rule sets that are associated with the + exclusion. + :paramtype exclusion_managed_rule_sets: + list[~azure.mgmt.network.v2021_08_01.models.ExclusionManagedRuleSet] + """ + super(OwaspCrsExclusionEntry, self).__init__(**kwargs) + self.match_variable = match_variable + self.selector_match_operator = selector_match_operator + self.selector = selector + self.exclusion_managed_rule_sets = exclusion_managed_rule_sets + + +class P2SConnectionConfiguration(SubResource): + """P2SConnectionConfiguration Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar vpn_client_address_pool: The reference to the address space resource which represents + Address space for P2S VpnClient. + :vartype vpn_client_address_pool: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :ivar routing_configuration: The Routing Configuration indicating the associated and propagated + route tables on this connection. + :vartype routing_configuration: ~azure.mgmt.network.v2021_08_01.models.RoutingConfiguration + :ivar enable_internet_security: Flag indicating whether the enable internet security flag is + turned on for the P2S Connections or not. + :vartype enable_internet_security: bool + :ivar configuration_policy_group_associations: List of Configuration Policy Groups that this + P2SConnectionConfiguration is attached to. + :vartype configuration_policy_group_associations: + list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar previous_configuration_policy_group_associations: List of previous Configuration Policy + Groups that this P2SConnectionConfiguration was attached to. + :vartype previous_configuration_policy_group_associations: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup] + :ivar provisioning_state: The provisioning state of the P2SConnectionConfiguration resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'configuration_policy_group_associations': {'readonly': True}, + 'previous_configuration_policy_group_associations': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'vpn_client_address_pool': {'key': 'properties.vpnClientAddressPool', 'type': 'AddressSpace'}, + 'routing_configuration': {'key': 'properties.routingConfiguration', 'type': 'RoutingConfiguration'}, + 'enable_internet_security': {'key': 'properties.enableInternetSecurity', 'type': 'bool'}, + 'configuration_policy_group_associations': {'key': 'properties.configurationPolicyGroupAssociations', 'type': '[SubResource]'}, + 'previous_configuration_policy_group_associations': {'key': 'properties.previousConfigurationPolicyGroupAssociations', 'type': '[VpnServerConfigurationPolicyGroup]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + vpn_client_address_pool: Optional["AddressSpace"] = None, + routing_configuration: Optional["RoutingConfiguration"] = None, + enable_internet_security: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword vpn_client_address_pool: The reference to the address space resource which represents + Address space for P2S VpnClient. + :paramtype vpn_client_address_pool: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :keyword routing_configuration: The Routing Configuration indicating the associated and + propagated route tables on this connection. + :paramtype routing_configuration: ~azure.mgmt.network.v2021_08_01.models.RoutingConfiguration + :keyword enable_internet_security: Flag indicating whether the enable internet security flag is + turned on for the P2S Connections or not. + :paramtype enable_internet_security: bool + """ + super(P2SConnectionConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.vpn_client_address_pool = vpn_client_address_pool + self.routing_configuration = routing_configuration + self.enable_internet_security = enable_internet_security + self.configuration_policy_group_associations = None + self.previous_configuration_policy_group_associations = None + self.provisioning_state = None + + +class P2SVpnConnectionHealth(msrest.serialization.Model): + """P2S Vpn connection detailed health written to sas url. + + :ivar sas_url: Returned sas url of the blob to which the p2s vpn connection detailed health + will be written. + :vartype sas_url: str + """ + + _attribute_map = { + 'sas_url': {'key': 'sasUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + sas_url: Optional[str] = None, + **kwargs + ): + """ + :keyword sas_url: Returned sas url of the blob to which the p2s vpn connection detailed health + will be written. + :paramtype sas_url: str + """ + super(P2SVpnConnectionHealth, self).__init__(**kwargs) + self.sas_url = sas_url + + +class P2SVpnConnectionHealthRequest(msrest.serialization.Model): + """List of P2S Vpn connection health request. + + :ivar vpn_user_names_filter: The list of p2s vpn user names whose p2s vpn connection detailed + health to retrieve for. + :vartype vpn_user_names_filter: list[str] + :ivar output_blob_sas_url: The sas-url to download the P2S Vpn connection health detail. + :vartype output_blob_sas_url: str + """ + + _attribute_map = { + 'vpn_user_names_filter': {'key': 'vpnUserNamesFilter', 'type': '[str]'}, + 'output_blob_sas_url': {'key': 'outputBlobSasUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + vpn_user_names_filter: Optional[List[str]] = None, + output_blob_sas_url: Optional[str] = None, + **kwargs + ): + """ + :keyword vpn_user_names_filter: The list of p2s vpn user names whose p2s vpn connection + detailed health to retrieve for. + :paramtype vpn_user_names_filter: list[str] + :keyword output_blob_sas_url: The sas-url to download the P2S Vpn connection health detail. + :paramtype output_blob_sas_url: str + """ + super(P2SVpnConnectionHealthRequest, self).__init__(**kwargs) + self.vpn_user_names_filter = vpn_user_names_filter + self.output_blob_sas_url = output_blob_sas_url + + +class P2SVpnConnectionRequest(msrest.serialization.Model): + """List of p2s vpn connections to be disconnected. + + :ivar vpn_connection_ids: List of p2s vpn connection Ids. + :vartype vpn_connection_ids: list[str] + """ + + _attribute_map = { + 'vpn_connection_ids': {'key': 'vpnConnectionIds', 'type': '[str]'}, + } + + def __init__( + self, + *, + vpn_connection_ids: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword vpn_connection_ids: List of p2s vpn connection Ids. + :paramtype vpn_connection_ids: list[str] + """ + super(P2SVpnConnectionRequest, self).__init__(**kwargs) + self.vpn_connection_ids = vpn_connection_ids + + +class P2SVpnGateway(Resource): + """P2SVpnGateway Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar virtual_hub: The VirtualHub to which the gateway belongs. + :vartype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar p2_s_connection_configurations: List of all p2s connection configurations of the gateway. + :vartype p2_s_connection_configurations: + list[~azure.mgmt.network.v2021_08_01.models.P2SConnectionConfiguration] + :ivar provisioning_state: The provisioning state of the P2S VPN gateway resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar vpn_gateway_scale_unit: The scale unit for this p2s vpn gateway. + :vartype vpn_gateway_scale_unit: int + :ivar vpn_server_configuration: The VpnServerConfiguration to which the p2sVpnGateway is + attached to. + :vartype vpn_server_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar vpn_client_connection_health: All P2S VPN clients' connection health status. + :vartype vpn_client_connection_health: + ~azure.mgmt.network.v2021_08_01.models.VpnClientConnectionHealth + :ivar custom_dns_servers: List of all customer specified DNS servers IP addresses. + :vartype custom_dns_servers: list[str] + :ivar is_routing_preference_internet: Enable Routing Preference property for the Public IP + Interface of the P2SVpnGateway. + :vartype is_routing_preference_internet: bool + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'vpn_client_connection_health': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'virtual_hub': {'key': 'properties.virtualHub', 'type': 'SubResource'}, + 'p2_s_connection_configurations': {'key': 'properties.p2SConnectionConfigurations', 'type': '[P2SConnectionConfiguration]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'vpn_gateway_scale_unit': {'key': 'properties.vpnGatewayScaleUnit', 'type': 'int'}, + 'vpn_server_configuration': {'key': 'properties.vpnServerConfiguration', 'type': 'SubResource'}, + 'vpn_client_connection_health': {'key': 'properties.vpnClientConnectionHealth', 'type': 'VpnClientConnectionHealth'}, + 'custom_dns_servers': {'key': 'properties.customDnsServers', 'type': '[str]'}, + 'is_routing_preference_internet': {'key': 'properties.isRoutingPreferenceInternet', 'type': 'bool'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + virtual_hub: Optional["SubResource"] = None, + p2_s_connection_configurations: Optional[List["P2SConnectionConfiguration"]] = None, + vpn_gateway_scale_unit: Optional[int] = None, + vpn_server_configuration: Optional["SubResource"] = None, + custom_dns_servers: Optional[List[str]] = None, + is_routing_preference_internet: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword virtual_hub: The VirtualHub to which the gateway belongs. + :paramtype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword p2_s_connection_configurations: List of all p2s connection configurations of the + gateway. + :paramtype p2_s_connection_configurations: + list[~azure.mgmt.network.v2021_08_01.models.P2SConnectionConfiguration] + :keyword vpn_gateway_scale_unit: The scale unit for this p2s vpn gateway. + :paramtype vpn_gateway_scale_unit: int + :keyword vpn_server_configuration: The VpnServerConfiguration to which the p2sVpnGateway is + attached to. + :paramtype vpn_server_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword custom_dns_servers: List of all customer specified DNS servers IP addresses. + :paramtype custom_dns_servers: list[str] + :keyword is_routing_preference_internet: Enable Routing Preference property for the Public IP + Interface of the P2SVpnGateway. + :paramtype is_routing_preference_internet: bool + """ + super(P2SVpnGateway, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.virtual_hub = virtual_hub + self.p2_s_connection_configurations = p2_s_connection_configurations + self.provisioning_state = None + self.vpn_gateway_scale_unit = vpn_gateway_scale_unit + self.vpn_server_configuration = vpn_server_configuration + self.vpn_client_connection_health = None + self.custom_dns_servers = custom_dns_servers + self.is_routing_preference_internet = is_routing_preference_internet + + +class P2SVpnProfileParameters(msrest.serialization.Model): + """Vpn Client Parameters for package generation. + + :ivar authentication_method: VPN client authentication method. Possible values include: + "EAPTLS", "EAPMSCHAPv2". + :vartype authentication_method: str or + ~azure.mgmt.network.v2021_08_01.models.AuthenticationMethod + """ + + _attribute_map = { + 'authentication_method': {'key': 'authenticationMethod', 'type': 'str'}, + } + + def __init__( + self, + *, + authentication_method: Optional[Union[str, "AuthenticationMethod"]] = None, + **kwargs + ): + """ + :keyword authentication_method: VPN client authentication method. Possible values include: + "EAPTLS", "EAPMSCHAPv2". + :paramtype authentication_method: str or + ~azure.mgmt.network.v2021_08_01.models.AuthenticationMethod + """ + super(P2SVpnProfileParameters, self).__init__(**kwargs) + self.authentication_method = authentication_method + + +class PacketCapture(msrest.serialization.Model): + """Parameters that define the create packet capture operation. + + All required parameters must be populated in order to send to Azure. + + :ivar target: Required. The ID of the targeted resource, only VM is currently supported. + :vartype target: str + :ivar bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes are + truncated. + :vartype bytes_to_capture_per_packet: long + :ivar total_bytes_per_session: Maximum size of the capture output. + :vartype total_bytes_per_session: long + :ivar time_limit_in_seconds: Maximum duration of the capture session in seconds. + :vartype time_limit_in_seconds: int + :ivar storage_location: Required. The storage location for a packet capture session. + :vartype storage_location: ~azure.mgmt.network.v2021_08_01.models.PacketCaptureStorageLocation + :ivar filters: A list of packet capture filters. + :vartype filters: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureFilter] + """ + + _validation = { + 'target': {'required': True}, + 'bytes_to_capture_per_packet': {'maximum': 4294967295, 'minimum': 0}, + 'total_bytes_per_session': {'maximum': 4294967295, 'minimum': 0}, + 'time_limit_in_seconds': {'maximum': 18000, 'minimum': 0}, + 'storage_location': {'required': True}, + } + + _attribute_map = { + 'target': {'key': 'properties.target', 'type': 'str'}, + 'bytes_to_capture_per_packet': {'key': 'properties.bytesToCapturePerPacket', 'type': 'long'}, + 'total_bytes_per_session': {'key': 'properties.totalBytesPerSession', 'type': 'long'}, + 'time_limit_in_seconds': {'key': 'properties.timeLimitInSeconds', 'type': 'int'}, + 'storage_location': {'key': 'properties.storageLocation', 'type': 'PacketCaptureStorageLocation'}, + 'filters': {'key': 'properties.filters', 'type': '[PacketCaptureFilter]'}, + } + + def __init__( + self, + *, + target: str, + storage_location: "PacketCaptureStorageLocation", + bytes_to_capture_per_packet: Optional[int] = 0, + total_bytes_per_session: Optional[int] = 1073741824, + time_limit_in_seconds: Optional[int] = 18000, + filters: Optional[List["PacketCaptureFilter"]] = None, + **kwargs + ): + """ + :keyword target: Required. The ID of the targeted resource, only VM is currently supported. + :paramtype target: str + :keyword bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes + are truncated. + :paramtype bytes_to_capture_per_packet: long + :keyword total_bytes_per_session: Maximum size of the capture output. + :paramtype total_bytes_per_session: long + :keyword time_limit_in_seconds: Maximum duration of the capture session in seconds. + :paramtype time_limit_in_seconds: int + :keyword storage_location: Required. The storage location for a packet capture session. + :paramtype storage_location: + ~azure.mgmt.network.v2021_08_01.models.PacketCaptureStorageLocation + :keyword filters: A list of packet capture filters. + :paramtype filters: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureFilter] + """ + super(PacketCapture, self).__init__(**kwargs) + self.target = target + self.bytes_to_capture_per_packet = bytes_to_capture_per_packet + self.total_bytes_per_session = total_bytes_per_session + self.time_limit_in_seconds = time_limit_in_seconds + self.storage_location = storage_location + self.filters = filters + + +class PacketCaptureFilter(msrest.serialization.Model): + """Filter that is applied to packet capture request. Multiple filters can be applied. + + :ivar protocol: Protocol to be filtered on. Possible values include: "TCP", "UDP", "Any". + Default value: "Any". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.PcProtocol + :ivar local_ip_address: Local IP Address to be filtered on. Notation: "127.0.0.1" for single + address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5"? for multiple entries. + Multiple ranges not currently supported. Mixing ranges with multiple entries not currently + supported. Default = null. + :vartype local_ip_address: str + :ivar remote_ip_address: Local IP Address to be filtered on. Notation: "127.0.0.1" for single + address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;" for multiple entries. + Multiple ranges not currently supported. Mixing ranges with multiple entries not currently + supported. Default = null. + :vartype remote_ip_address: str + :ivar local_port: Local port to be filtered on. Notation: "80" for single port entry."80-85" + for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing + ranges with multiple entries not currently supported. Default = null. + :vartype local_port: str + :ivar remote_port: Remote port to be filtered on. Notation: "80" for single port entry."80-85" + for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing + ranges with multiple entries not currently supported. Default = null. + :vartype remote_port: str + """ + + _attribute_map = { + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'local_ip_address': {'key': 'localIPAddress', 'type': 'str'}, + 'remote_ip_address': {'key': 'remoteIPAddress', 'type': 'str'}, + 'local_port': {'key': 'localPort', 'type': 'str'}, + 'remote_port': {'key': 'remotePort', 'type': 'str'}, + } + + def __init__( + self, + *, + protocol: Optional[Union[str, "PcProtocol"]] = "Any", + local_ip_address: Optional[str] = None, + remote_ip_address: Optional[str] = None, + local_port: Optional[str] = None, + remote_port: Optional[str] = None, + **kwargs + ): + """ + :keyword protocol: Protocol to be filtered on. Possible values include: "TCP", "UDP", "Any". + Default value: "Any". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.PcProtocol + :keyword local_ip_address: Local IP Address to be filtered on. Notation: "127.0.0.1" for single + address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5"? for multiple entries. + Multiple ranges not currently supported. Mixing ranges with multiple entries not currently + supported. Default = null. + :paramtype local_ip_address: str + :keyword remote_ip_address: Local IP Address to be filtered on. Notation: "127.0.0.1" for + single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;" for multiple + entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not + currently supported. Default = null. + :paramtype remote_ip_address: str + :keyword local_port: Local port to be filtered on. Notation: "80" for single port entry."80-85" + for range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing + ranges with multiple entries not currently supported. Default = null. + :paramtype local_port: str + :keyword remote_port: Remote port to be filtered on. Notation: "80" for single port + entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges not currently + supported. Mixing ranges with multiple entries not currently supported. Default = null. + :paramtype remote_port: str + """ + super(PacketCaptureFilter, self).__init__(**kwargs) + self.protocol = protocol + self.local_ip_address = local_ip_address + self.remote_ip_address = remote_ip_address + self.local_port = local_port + self.remote_port = remote_port + + +class PacketCaptureListResult(msrest.serialization.Model): + """List of packet capture sessions. + + :ivar value: Information about packet capture sessions. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureResult] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PacketCaptureResult]'}, + } + + def __init__( + self, + *, + value: Optional[List["PacketCaptureResult"]] = None, + **kwargs + ): + """ + :keyword value: Information about packet capture sessions. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureResult] + """ + super(PacketCaptureListResult, self).__init__(**kwargs) + self.value = value + + +class PacketCaptureParameters(msrest.serialization.Model): + """Parameters that define the create packet capture operation. + + All required parameters must be populated in order to send to Azure. + + :ivar target: Required. The ID of the targeted resource, only VM is currently supported. + :vartype target: str + :ivar bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes are + truncated. + :vartype bytes_to_capture_per_packet: long + :ivar total_bytes_per_session: Maximum size of the capture output. + :vartype total_bytes_per_session: long + :ivar time_limit_in_seconds: Maximum duration of the capture session in seconds. + :vartype time_limit_in_seconds: int + :ivar storage_location: Required. The storage location for a packet capture session. + :vartype storage_location: ~azure.mgmt.network.v2021_08_01.models.PacketCaptureStorageLocation + :ivar filters: A list of packet capture filters. + :vartype filters: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureFilter] + """ + + _validation = { + 'target': {'required': True}, + 'bytes_to_capture_per_packet': {'maximum': 4294967295, 'minimum': 0}, + 'total_bytes_per_session': {'maximum': 4294967295, 'minimum': 0}, + 'time_limit_in_seconds': {'maximum': 18000, 'minimum': 0}, + 'storage_location': {'required': True}, + } + + _attribute_map = { + 'target': {'key': 'target', 'type': 'str'}, + 'bytes_to_capture_per_packet': {'key': 'bytesToCapturePerPacket', 'type': 'long'}, + 'total_bytes_per_session': {'key': 'totalBytesPerSession', 'type': 'long'}, + 'time_limit_in_seconds': {'key': 'timeLimitInSeconds', 'type': 'int'}, + 'storage_location': {'key': 'storageLocation', 'type': 'PacketCaptureStorageLocation'}, + 'filters': {'key': 'filters', 'type': '[PacketCaptureFilter]'}, + } + + def __init__( + self, + *, + target: str, + storage_location: "PacketCaptureStorageLocation", + bytes_to_capture_per_packet: Optional[int] = 0, + total_bytes_per_session: Optional[int] = 1073741824, + time_limit_in_seconds: Optional[int] = 18000, + filters: Optional[List["PacketCaptureFilter"]] = None, + **kwargs + ): + """ + :keyword target: Required. The ID of the targeted resource, only VM is currently supported. + :paramtype target: str + :keyword bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes + are truncated. + :paramtype bytes_to_capture_per_packet: long + :keyword total_bytes_per_session: Maximum size of the capture output. + :paramtype total_bytes_per_session: long + :keyword time_limit_in_seconds: Maximum duration of the capture session in seconds. + :paramtype time_limit_in_seconds: int + :keyword storage_location: Required. The storage location for a packet capture session. + :paramtype storage_location: + ~azure.mgmt.network.v2021_08_01.models.PacketCaptureStorageLocation + :keyword filters: A list of packet capture filters. + :paramtype filters: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureFilter] + """ + super(PacketCaptureParameters, self).__init__(**kwargs) + self.target = target + self.bytes_to_capture_per_packet = bytes_to_capture_per_packet + self.total_bytes_per_session = total_bytes_per_session + self.time_limit_in_seconds = time_limit_in_seconds + self.storage_location = storage_location + self.filters = filters + + +class PacketCaptureQueryStatusResult(msrest.serialization.Model): + """Status of packet capture session. + + :ivar name: The name of the packet capture resource. + :vartype name: str + :ivar id: The ID of the packet capture resource. + :vartype id: str + :ivar capture_start_time: The start time of the packet capture session. + :vartype capture_start_time: ~datetime.datetime + :ivar packet_capture_status: The status of the packet capture session. Possible values include: + "NotStarted", "Running", "Stopped", "Error", "Unknown". + :vartype packet_capture_status: str or ~azure.mgmt.network.v2021_08_01.models.PcStatus + :ivar stop_reason: The reason the current packet capture session was stopped. + :vartype stop_reason: str + :ivar packet_capture_error: List of errors of packet capture session. + :vartype packet_capture_error: list[str or ~azure.mgmt.network.v2021_08_01.models.PcError] + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'capture_start_time': {'key': 'captureStartTime', 'type': 'iso-8601'}, + 'packet_capture_status': {'key': 'packetCaptureStatus', 'type': 'str'}, + 'stop_reason': {'key': 'stopReason', 'type': 'str'}, + 'packet_capture_error': {'key': 'packetCaptureError', 'type': '[str]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + id: Optional[str] = None, + capture_start_time: Optional[datetime.datetime] = None, + packet_capture_status: Optional[Union[str, "PcStatus"]] = None, + stop_reason: Optional[str] = None, + packet_capture_error: Optional[List[Union[str, "PcError"]]] = None, + **kwargs + ): + """ + :keyword name: The name of the packet capture resource. + :paramtype name: str + :keyword id: The ID of the packet capture resource. + :paramtype id: str + :keyword capture_start_time: The start time of the packet capture session. + :paramtype capture_start_time: ~datetime.datetime + :keyword packet_capture_status: The status of the packet capture session. Possible values + include: "NotStarted", "Running", "Stopped", "Error", "Unknown". + :paramtype packet_capture_status: str or ~azure.mgmt.network.v2021_08_01.models.PcStatus + :keyword stop_reason: The reason the current packet capture session was stopped. + :paramtype stop_reason: str + :keyword packet_capture_error: List of errors of packet capture session. + :paramtype packet_capture_error: list[str or ~azure.mgmt.network.v2021_08_01.models.PcError] + """ + super(PacketCaptureQueryStatusResult, self).__init__(**kwargs) + self.name = name + self.id = id + self.capture_start_time = capture_start_time + self.packet_capture_status = packet_capture_status + self.stop_reason = stop_reason + self.packet_capture_error = packet_capture_error + + +class PacketCaptureResult(msrest.serialization.Model): + """Information about packet capture session. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: Name of the packet capture session. + :vartype name: str + :ivar id: ID of the packet capture operation. + :vartype id: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar target: The ID of the targeted resource, only VM is currently supported. + :vartype target: str + :ivar bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes are + truncated. + :vartype bytes_to_capture_per_packet: long + :ivar total_bytes_per_session: Maximum size of the capture output. + :vartype total_bytes_per_session: long + :ivar time_limit_in_seconds: Maximum duration of the capture session in seconds. + :vartype time_limit_in_seconds: int + :ivar storage_location: The storage location for a packet capture session. + :vartype storage_location: ~azure.mgmt.network.v2021_08_01.models.PacketCaptureStorageLocation + :ivar filters: A list of packet capture filters. + :vartype filters: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureFilter] + :ivar provisioning_state: The provisioning state of the packet capture session. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'id': {'readonly': True}, + 'etag': {'readonly': True}, + 'bytes_to_capture_per_packet': {'maximum': 4294967295, 'minimum': 0}, + 'total_bytes_per_session': {'maximum': 4294967295, 'minimum': 0}, + 'time_limit_in_seconds': {'maximum': 18000, 'minimum': 0}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'target': {'key': 'properties.target', 'type': 'str'}, + 'bytes_to_capture_per_packet': {'key': 'properties.bytesToCapturePerPacket', 'type': 'long'}, + 'total_bytes_per_session': {'key': 'properties.totalBytesPerSession', 'type': 'long'}, + 'time_limit_in_seconds': {'key': 'properties.timeLimitInSeconds', 'type': 'int'}, + 'storage_location': {'key': 'properties.storageLocation', 'type': 'PacketCaptureStorageLocation'}, + 'filters': {'key': 'properties.filters', 'type': '[PacketCaptureFilter]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + target: Optional[str] = None, + bytes_to_capture_per_packet: Optional[int] = 0, + total_bytes_per_session: Optional[int] = 1073741824, + time_limit_in_seconds: Optional[int] = 18000, + storage_location: Optional["PacketCaptureStorageLocation"] = None, + filters: Optional[List["PacketCaptureFilter"]] = None, + **kwargs + ): + """ + :keyword target: The ID of the targeted resource, only VM is currently supported. + :paramtype target: str + :keyword bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes + are truncated. + :paramtype bytes_to_capture_per_packet: long + :keyword total_bytes_per_session: Maximum size of the capture output. + :paramtype total_bytes_per_session: long + :keyword time_limit_in_seconds: Maximum duration of the capture session in seconds. + :paramtype time_limit_in_seconds: int + :keyword storage_location: The storage location for a packet capture session. + :paramtype storage_location: + ~azure.mgmt.network.v2021_08_01.models.PacketCaptureStorageLocation + :keyword filters: A list of packet capture filters. + :paramtype filters: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureFilter] + """ + super(PacketCaptureResult, self).__init__(**kwargs) + self.name = None + self.id = None + self.etag = None + self.target = target + self.bytes_to_capture_per_packet = bytes_to_capture_per_packet + self.total_bytes_per_session = total_bytes_per_session + self.time_limit_in_seconds = time_limit_in_seconds + self.storage_location = storage_location + self.filters = filters + self.provisioning_state = None + + +class PacketCaptureResultProperties(PacketCaptureParameters): + """The properties of a packet capture session. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar target: Required. The ID of the targeted resource, only VM is currently supported. + :vartype target: str + :ivar bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes are + truncated. + :vartype bytes_to_capture_per_packet: long + :ivar total_bytes_per_session: Maximum size of the capture output. + :vartype total_bytes_per_session: long + :ivar time_limit_in_seconds: Maximum duration of the capture session in seconds. + :vartype time_limit_in_seconds: int + :ivar storage_location: Required. The storage location for a packet capture session. + :vartype storage_location: ~azure.mgmt.network.v2021_08_01.models.PacketCaptureStorageLocation + :ivar filters: A list of packet capture filters. + :vartype filters: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureFilter] + :ivar provisioning_state: The provisioning state of the packet capture session. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'target': {'required': True}, + 'bytes_to_capture_per_packet': {'maximum': 4294967295, 'minimum': 0}, + 'total_bytes_per_session': {'maximum': 4294967295, 'minimum': 0}, + 'time_limit_in_seconds': {'maximum': 18000, 'minimum': 0}, + 'storage_location': {'required': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'target': {'key': 'target', 'type': 'str'}, + 'bytes_to_capture_per_packet': {'key': 'bytesToCapturePerPacket', 'type': 'long'}, + 'total_bytes_per_session': {'key': 'totalBytesPerSession', 'type': 'long'}, + 'time_limit_in_seconds': {'key': 'timeLimitInSeconds', 'type': 'int'}, + 'storage_location': {'key': 'storageLocation', 'type': 'PacketCaptureStorageLocation'}, + 'filters': {'key': 'filters', 'type': '[PacketCaptureFilter]'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + target: str, + storage_location: "PacketCaptureStorageLocation", + bytes_to_capture_per_packet: Optional[int] = 0, + total_bytes_per_session: Optional[int] = 1073741824, + time_limit_in_seconds: Optional[int] = 18000, + filters: Optional[List["PacketCaptureFilter"]] = None, + **kwargs + ): + """ + :keyword target: Required. The ID of the targeted resource, only VM is currently supported. + :paramtype target: str + :keyword bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes + are truncated. + :paramtype bytes_to_capture_per_packet: long + :keyword total_bytes_per_session: Maximum size of the capture output. + :paramtype total_bytes_per_session: long + :keyword time_limit_in_seconds: Maximum duration of the capture session in seconds. + :paramtype time_limit_in_seconds: int + :keyword storage_location: Required. The storage location for a packet capture session. + :paramtype storage_location: + ~azure.mgmt.network.v2021_08_01.models.PacketCaptureStorageLocation + :keyword filters: A list of packet capture filters. + :paramtype filters: list[~azure.mgmt.network.v2021_08_01.models.PacketCaptureFilter] + """ + super(PacketCaptureResultProperties, self).__init__(target=target, bytes_to_capture_per_packet=bytes_to_capture_per_packet, total_bytes_per_session=total_bytes_per_session, time_limit_in_seconds=time_limit_in_seconds, storage_location=storage_location, filters=filters, **kwargs) + self.provisioning_state = None + + +class PacketCaptureStorageLocation(msrest.serialization.Model): + """The storage location for a packet capture session. + + :ivar storage_id: The ID of the storage account to save the packet capture session. Required if + no local file path is provided. + :vartype storage_id: str + :ivar storage_path: The URI of the storage path to save the packet capture. Must be a + well-formed URI describing the location to save the packet capture. + :vartype storage_path: str + :ivar file_path: A valid local path on the targeting VM. Must include the name of the capture + file (*.cap). For linux virtual machine it must start with /var/captures. Required if no + storage ID is provided, otherwise optional. + :vartype file_path: str + """ + + _attribute_map = { + 'storage_id': {'key': 'storageId', 'type': 'str'}, + 'storage_path': {'key': 'storagePath', 'type': 'str'}, + 'file_path': {'key': 'filePath', 'type': 'str'}, + } + + def __init__( + self, + *, + storage_id: Optional[str] = None, + storage_path: Optional[str] = None, + file_path: Optional[str] = None, + **kwargs + ): + """ + :keyword storage_id: The ID of the storage account to save the packet capture session. Required + if no local file path is provided. + :paramtype storage_id: str + :keyword storage_path: The URI of the storage path to save the packet capture. Must be a + well-formed URI describing the location to save the packet capture. + :paramtype storage_path: str + :keyword file_path: A valid local path on the targeting VM. Must include the name of the + capture file (*.cap). For linux virtual machine it must start with /var/captures. Required if + no storage ID is provided, otherwise optional. + :paramtype file_path: str + """ + super(PacketCaptureStorageLocation, self).__init__(**kwargs) + self.storage_id = storage_id + self.storage_path = storage_path + self.file_path = file_path + + +class PatchRouteFilter(SubResource): + """Route Filter Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar rules: Collection of RouteFilterRules contained within a route filter. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.RouteFilterRule] + :ivar peerings: A collection of references to express route circuit peerings. + :vartype peerings: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :ivar ipv6_peerings: A collection of references to express route circuit ipv6 peerings. + :vartype ipv6_peerings: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :ivar provisioning_state: The provisioning state of the route filter resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'peerings': {'readonly': True}, + 'ipv6_peerings': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'rules': {'key': 'properties.rules', 'type': '[RouteFilterRule]'}, + 'peerings': {'key': 'properties.peerings', 'type': '[ExpressRouteCircuitPeering]'}, + 'ipv6_peerings': {'key': 'properties.ipv6Peerings', 'type': '[ExpressRouteCircuitPeering]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + rules: Optional[List["RouteFilterRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword rules: Collection of RouteFilterRules contained within a route filter. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.RouteFilterRule] + """ + super(PatchRouteFilter, self).__init__(id=id, **kwargs) + self.name = None + self.etag = None + self.type = None + self.tags = tags + self.rules = rules + self.peerings = None + self.ipv6_peerings = None + self.provisioning_state = None + + +class PatchRouteFilterRule(SubResource): + """Route Filter Rule Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar access: The access type of the rule. Possible values include: "Allow", "Deny". + :vartype access: str or ~azure.mgmt.network.v2021_08_01.models.Access + :ivar route_filter_rule_type: The rule type of the rule. Possible values include: "Community". + :vartype route_filter_rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.RouteFilterRuleType + :ivar communities: The collection for bgp community values to filter on. e.g. + ['12076:5010','12076:5020']. + :vartype communities: list[str] + :ivar provisioning_state: The provisioning state of the route filter rule resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'access': {'key': 'properties.access', 'type': 'str'}, + 'route_filter_rule_type': {'key': 'properties.routeFilterRuleType', 'type': 'str'}, + 'communities': {'key': 'properties.communities', 'type': '[str]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + access: Optional[Union[str, "Access"]] = None, + route_filter_rule_type: Optional[Union[str, "RouteFilterRuleType"]] = None, + communities: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword access: The access type of the rule. Possible values include: "Allow", "Deny". + :paramtype access: str or ~azure.mgmt.network.v2021_08_01.models.Access + :keyword route_filter_rule_type: The rule type of the rule. Possible values include: + "Community". + :paramtype route_filter_rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.RouteFilterRuleType + :keyword communities: The collection for bgp community values to filter on. e.g. + ['12076:5010','12076:5020']. + :paramtype communities: list[str] + """ + super(PatchRouteFilterRule, self).__init__(id=id, **kwargs) + self.name = None + self.etag = None + self.access = access + self.route_filter_rule_type = route_filter_rule_type + self.communities = communities + self.provisioning_state = None + + +class PeerExpressRouteCircuitConnection(SubResource): + """Peer Express Route Circuit Connection in an ExpressRouteCircuitPeering resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar express_route_circuit_peering: Reference to Express Route Circuit Private Peering + Resource of the circuit. + :vartype express_route_circuit_peering: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar peer_express_route_circuit_peering: Reference to Express Route Circuit Private Peering + Resource of the peered circuit. + :vartype peer_express_route_circuit_peering: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar address_prefix: /29 IP address space to carve out Customer addresses for tunnels. + :vartype address_prefix: str + :ivar circuit_connection_status: Express Route Circuit connection state. Possible values + include: "Connected", "Connecting", "Disconnected". + :vartype circuit_connection_status: str or + ~azure.mgmt.network.v2021_08_01.models.CircuitConnectionStatus + :ivar connection_name: The name of the express route circuit connection resource. + :vartype connection_name: str + :ivar auth_resource_guid: The resource guid of the authorization used for the express route + circuit connection. + :vartype auth_resource_guid: str + :ivar provisioning_state: The provisioning state of the peer express route circuit connection + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'circuit_connection_status': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'express_route_circuit_peering': {'key': 'properties.expressRouteCircuitPeering', 'type': 'SubResource'}, + 'peer_express_route_circuit_peering': {'key': 'properties.peerExpressRouteCircuitPeering', 'type': 'SubResource'}, + 'address_prefix': {'key': 'properties.addressPrefix', 'type': 'str'}, + 'circuit_connection_status': {'key': 'properties.circuitConnectionStatus', 'type': 'str'}, + 'connection_name': {'key': 'properties.connectionName', 'type': 'str'}, + 'auth_resource_guid': {'key': 'properties.authResourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + express_route_circuit_peering: Optional["SubResource"] = None, + peer_express_route_circuit_peering: Optional["SubResource"] = None, + address_prefix: Optional[str] = None, + connection_name: Optional[str] = None, + auth_resource_guid: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword express_route_circuit_peering: Reference to Express Route Circuit Private Peering + Resource of the circuit. + :paramtype express_route_circuit_peering: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword peer_express_route_circuit_peering: Reference to Express Route Circuit Private Peering + Resource of the peered circuit. + :paramtype peer_express_route_circuit_peering: + ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword address_prefix: /29 IP address space to carve out Customer addresses for tunnels. + :paramtype address_prefix: str + :keyword connection_name: The name of the express route circuit connection resource. + :paramtype connection_name: str + :keyword auth_resource_guid: The resource guid of the authorization used for the express route + circuit connection. + :paramtype auth_resource_guid: str + """ + super(PeerExpressRouteCircuitConnection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.express_route_circuit_peering = express_route_circuit_peering + self.peer_express_route_circuit_peering = peer_express_route_circuit_peering + self.address_prefix = address_prefix + self.circuit_connection_status = None + self.connection_name = connection_name + self.auth_resource_guid = auth_resource_guid + self.provisioning_state = None + + +class PeerExpressRouteCircuitConnectionListResult(msrest.serialization.Model): + """Response for ListPeeredConnections API service call retrieves all global reach peer circuit connections that belongs to a Private Peering for an ExpressRouteCircuit. + + :ivar value: The global reach peer circuit connection associated with Private Peering in an + ExpressRoute Circuit. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.PeerExpressRouteCircuitConnection] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PeerExpressRouteCircuitConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["PeerExpressRouteCircuitConnection"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The global reach peer circuit connection associated with Private Peering in an + ExpressRoute Circuit. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.PeerExpressRouteCircuitConnection] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(PeerExpressRouteCircuitConnectionListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class PeerRoute(msrest.serialization.Model): + """Peer routing details. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar local_address: The peer's local address. + :vartype local_address: str + :ivar network: The route's network prefix. + :vartype network: str + :ivar next_hop: The route's next hop. + :vartype next_hop: str + :ivar source_peer: The peer this route was learned from. + :vartype source_peer: str + :ivar origin: The source this route was learned from. + :vartype origin: str + :ivar as_path: The route's AS path sequence. + :vartype as_path: str + :ivar weight: The route's weight. + :vartype weight: int + """ + + _validation = { + 'local_address': {'readonly': True}, + 'network': {'readonly': True}, + 'next_hop': {'readonly': True}, + 'source_peer': {'readonly': True}, + 'origin': {'readonly': True}, + 'as_path': {'readonly': True}, + 'weight': {'readonly': True}, + } + + _attribute_map = { + 'local_address': {'key': 'localAddress', 'type': 'str'}, + 'network': {'key': 'network', 'type': 'str'}, + 'next_hop': {'key': 'nextHop', 'type': 'str'}, + 'source_peer': {'key': 'sourcePeer', 'type': 'str'}, + 'origin': {'key': 'origin', 'type': 'str'}, + 'as_path': {'key': 'asPath', 'type': 'str'}, + 'weight': {'key': 'weight', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(PeerRoute, self).__init__(**kwargs) + self.local_address = None + self.network = None + self.next_hop = None + self.source_peer = None + self.origin = None + self.as_path = None + self.weight = None + + +class PeerRouteList(msrest.serialization.Model): + """List of virtual router peer routes. + + :ivar value: List of peer routes. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.PeerRoute] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PeerRoute]'}, + } + + def __init__( + self, + *, + value: Optional[List["PeerRoute"]] = None, + **kwargs + ): + """ + :keyword value: List of peer routes. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.PeerRoute] + """ + super(PeerRouteList, self).__init__(**kwargs) + self.value = value + + +class PolicySettings(msrest.serialization.Model): + """Defines contents of a web application firewall global configuration. + + :ivar state: The state of the policy. Possible values include: "Disabled", "Enabled". + :vartype state: str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallEnabledState + :ivar mode: The mode of the policy. Possible values include: "Prevention", "Detection". + :vartype mode: str or ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallMode + :ivar request_body_check: Whether to allow WAF to check request Body. + :vartype request_body_check: bool + :ivar max_request_body_size_in_kb: Maximum request body size in Kb for WAF. + :vartype max_request_body_size_in_kb: int + :ivar file_upload_limit_in_mb: Maximum file upload size in Mb for WAF. + :vartype file_upload_limit_in_mb: int + """ + + _validation = { + 'max_request_body_size_in_kb': {'minimum': 8}, + 'file_upload_limit_in_mb': {'minimum': 0}, + } + + _attribute_map = { + 'state': {'key': 'state', 'type': 'str'}, + 'mode': {'key': 'mode', 'type': 'str'}, + 'request_body_check': {'key': 'requestBodyCheck', 'type': 'bool'}, + 'max_request_body_size_in_kb': {'key': 'maxRequestBodySizeInKb', 'type': 'int'}, + 'file_upload_limit_in_mb': {'key': 'fileUploadLimitInMb', 'type': 'int'}, + } + + def __init__( + self, + *, + state: Optional[Union[str, "WebApplicationFirewallEnabledState"]] = None, + mode: Optional[Union[str, "WebApplicationFirewallMode"]] = None, + request_body_check: Optional[bool] = None, + max_request_body_size_in_kb: Optional[int] = None, + file_upload_limit_in_mb: Optional[int] = None, + **kwargs + ): + """ + :keyword state: The state of the policy. Possible values include: "Disabled", "Enabled". + :paramtype state: str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallEnabledState + :keyword mode: The mode of the policy. Possible values include: "Prevention", "Detection". + :paramtype mode: str or ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallMode + :keyword request_body_check: Whether to allow WAF to check request Body. + :paramtype request_body_check: bool + :keyword max_request_body_size_in_kb: Maximum request body size in Kb for WAF. + :paramtype max_request_body_size_in_kb: int + :keyword file_upload_limit_in_mb: Maximum file upload size in Mb for WAF. + :paramtype file_upload_limit_in_mb: int + """ + super(PolicySettings, self).__init__(**kwargs) + self.state = state + self.mode = mode + self.request_body_check = request_body_check + self.max_request_body_size_in_kb = max_request_body_size_in_kb + self.file_upload_limit_in_mb = file_upload_limit_in_mb + + +class PrepareNetworkPoliciesRequest(msrest.serialization.Model): + """Details of PrepareNetworkPolicies for Subnet. + + :ivar service_name: The name of the service for which subnet is being prepared for. + :vartype service_name: str + :ivar network_intent_policy_configurations: A list of NetworkIntentPolicyConfiguration. + :vartype network_intent_policy_configurations: + list[~azure.mgmt.network.v2021_08_01.models.NetworkIntentPolicyConfiguration] + """ + + _attribute_map = { + 'service_name': {'key': 'serviceName', 'type': 'str'}, + 'network_intent_policy_configurations': {'key': 'networkIntentPolicyConfigurations', 'type': '[NetworkIntentPolicyConfiguration]'}, + } + + def __init__( + self, + *, + service_name: Optional[str] = None, + network_intent_policy_configurations: Optional[List["NetworkIntentPolicyConfiguration"]] = None, + **kwargs + ): + """ + :keyword service_name: The name of the service for which subnet is being prepared for. + :paramtype service_name: str + :keyword network_intent_policy_configurations: A list of NetworkIntentPolicyConfiguration. + :paramtype network_intent_policy_configurations: + list[~azure.mgmt.network.v2021_08_01.models.NetworkIntentPolicyConfiguration] + """ + super(PrepareNetworkPoliciesRequest, self).__init__(**kwargs) + self.service_name = service_name + self.network_intent_policy_configurations = network_intent_policy_configurations + + +class PrivateDnsZoneConfig(msrest.serialization.Model): + """PrivateDnsZoneConfig resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: Name of the resource that is unique within a resource group. This name can be used + to access the resource. + :vartype name: str + :ivar private_dns_zone_id: The resource id of the private dns zone. + :vartype private_dns_zone_id: str + :ivar record_sets: A collection of information regarding a recordSet, holding information to + identify private resources. + :vartype record_sets: list[~azure.mgmt.network.v2021_08_01.models.RecordSet] + """ + + _validation = { + 'record_sets': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'private_dns_zone_id': {'key': 'properties.privateDnsZoneId', 'type': 'str'}, + 'record_sets': {'key': 'properties.recordSets', 'type': '[RecordSet]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + private_dns_zone_id: Optional[str] = None, + **kwargs + ): + """ + :keyword name: Name of the resource that is unique within a resource group. This name can be + used to access the resource. + :paramtype name: str + :keyword private_dns_zone_id: The resource id of the private dns zone. + :paramtype private_dns_zone_id: str + """ + super(PrivateDnsZoneConfig, self).__init__(**kwargs) + self.name = name + self.private_dns_zone_id = private_dns_zone_id + self.record_sets = None + + +class PrivateDnsZoneGroup(SubResource): + """Private dns zone group resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the resource that is unique within a resource group. This name can be used + to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar provisioning_state: The provisioning state of the private dns zone group resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar private_dns_zone_configs: A collection of private dns zone configurations of the private + dns zone group. + :vartype private_dns_zone_configs: + list[~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneConfig] + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'private_dns_zone_configs': {'key': 'properties.privateDnsZoneConfigs', 'type': '[PrivateDnsZoneConfig]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_dns_zone_configs: Optional[List["PrivateDnsZoneConfig"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the resource that is unique within a resource group. This name can be + used to access the resource. + :paramtype name: str + :keyword private_dns_zone_configs: A collection of private dns zone configurations of the + private dns zone group. + :paramtype private_dns_zone_configs: + list[~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneConfig] + """ + super(PrivateDnsZoneGroup, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.provisioning_state = None + self.private_dns_zone_configs = private_dns_zone_configs + + +class PrivateDnsZoneGroupListResult(msrest.serialization.Model): + """Response for the ListPrivateDnsZoneGroups API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of private dns zone group resources in a private endpoint. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroup] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateDnsZoneGroup]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["PrivateDnsZoneGroup"]] = None, + **kwargs + ): + """ + :keyword value: A list of private dns zone group resources in a private endpoint. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroup] + """ + super(PrivateDnsZoneGroupListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class PrivateEndpoint(Resource): + """Private endpoint resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar extended_location: The extended location of the load balancer. + :vartype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar subnet: The ID of the subnet from which the private IP will be allocated. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :ivar network_interfaces: An array of references to the network interfaces created for this + private endpoint. + :vartype network_interfaces: list[~azure.mgmt.network.v2021_08_01.models.NetworkInterface] + :ivar provisioning_state: The provisioning state of the private endpoint resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar private_link_service_connections: A grouping of information about the connection to the + remote resource. + :vartype private_link_service_connections: + list[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnection] + :ivar manual_private_link_service_connections: A grouping of information about the connection + to the remote resource. Used when the network admin does not have access to approve connections + to the remote resource. + :vartype manual_private_link_service_connections: + list[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnection] + :ivar custom_dns_configs: An array of custom dns configurations. + :vartype custom_dns_configs: + list[~azure.mgmt.network.v2021_08_01.models.CustomDnsConfigPropertiesFormat] + :ivar application_security_groups: Application security groups in which the private endpoint IP + configuration is included. + :vartype application_security_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :ivar ip_configurations: A list of IP configurations of the private endpoint. This will be used + to map to the First Party Service's endpoints. + :vartype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointIPConfiguration] + :ivar custom_network_interface_name: The custom name of the network interface attached to the + private endpoint. + :vartype custom_network_interface_name: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'network_interfaces': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'extended_location': {'key': 'extendedLocation', 'type': 'ExtendedLocation'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'Subnet'}, + 'network_interfaces': {'key': 'properties.networkInterfaces', 'type': '[NetworkInterface]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'private_link_service_connections': {'key': 'properties.privateLinkServiceConnections', 'type': '[PrivateLinkServiceConnection]'}, + 'manual_private_link_service_connections': {'key': 'properties.manualPrivateLinkServiceConnections', 'type': '[PrivateLinkServiceConnection]'}, + 'custom_dns_configs': {'key': 'properties.customDnsConfigs', 'type': '[CustomDnsConfigPropertiesFormat]'}, + 'application_security_groups': {'key': 'properties.applicationSecurityGroups', 'type': '[ApplicationSecurityGroup]'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[PrivateEndpointIPConfiguration]'}, + 'custom_network_interface_name': {'key': 'properties.customNetworkInterfaceName', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + extended_location: Optional["ExtendedLocation"] = None, + subnet: Optional["Subnet"] = None, + private_link_service_connections: Optional[List["PrivateLinkServiceConnection"]] = None, + manual_private_link_service_connections: Optional[List["PrivateLinkServiceConnection"]] = None, + custom_dns_configs: Optional[List["CustomDnsConfigPropertiesFormat"]] = None, + application_security_groups: Optional[List["ApplicationSecurityGroup"]] = None, + ip_configurations: Optional[List["PrivateEndpointIPConfiguration"]] = None, + custom_network_interface_name: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword extended_location: The extended location of the load balancer. + :paramtype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :keyword subnet: The ID of the subnet from which the private IP will be allocated. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :keyword private_link_service_connections: A grouping of information about the connection to + the remote resource. + :paramtype private_link_service_connections: + list[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnection] + :keyword manual_private_link_service_connections: A grouping of information about the + connection to the remote resource. Used when the network admin does not have access to approve + connections to the remote resource. + :paramtype manual_private_link_service_connections: + list[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnection] + :keyword custom_dns_configs: An array of custom dns configurations. + :paramtype custom_dns_configs: + list[~azure.mgmt.network.v2021_08_01.models.CustomDnsConfigPropertiesFormat] + :keyword application_security_groups: Application security groups in which the private endpoint + IP configuration is included. + :paramtype application_security_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :keyword ip_configurations: A list of IP configurations of the private endpoint. This will be + used to map to the First Party Service's endpoints. + :paramtype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointIPConfiguration] + :keyword custom_network_interface_name: The custom name of the network interface attached to + the private endpoint. + :paramtype custom_network_interface_name: str + """ + super(PrivateEndpoint, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.extended_location = extended_location + self.etag = None + self.subnet = subnet + self.network_interfaces = None + self.provisioning_state = None + self.private_link_service_connections = private_link_service_connections + self.manual_private_link_service_connections = manual_private_link_service_connections + self.custom_dns_configs = custom_dns_configs + self.application_security_groups = application_security_groups + self.ip_configurations = ip_configurations + self.custom_network_interface_name = custom_network_interface_name + + +class PrivateEndpointConnection(SubResource): + """PrivateEndpointConnection resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar type: The resource type. + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar private_endpoint: The resource of private end point. + :vartype private_endpoint: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint + :ivar private_link_service_connection_state: A collection of information about the state of the + connection between service consumer and provider. + :vartype private_link_service_connection_state: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnectionState + :ivar provisioning_state: The provisioning state of the private endpoint connection resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar link_identifier: The consumer link id. + :vartype link_identifier: str + """ + + _validation = { + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'private_endpoint': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'link_identifier': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'private_endpoint': {'key': 'properties.privateEndpoint', 'type': 'PrivateEndpoint'}, + 'private_link_service_connection_state': {'key': 'properties.privateLinkServiceConnectionState', 'type': 'PrivateLinkServiceConnectionState'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'link_identifier': {'key': 'properties.linkIdentifier', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_link_service_connection_state: Optional["PrivateLinkServiceConnectionState"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword private_link_service_connection_state: A collection of information about the state of + the connection between service consumer and provider. + :paramtype private_link_service_connection_state: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnectionState + """ + super(PrivateEndpointConnection, self).__init__(id=id, **kwargs) + self.name = name + self.type = None + self.etag = None + self.private_endpoint = None + self.private_link_service_connection_state = private_link_service_connection_state + self.provisioning_state = None + self.link_identifier = None + + +class PrivateEndpointConnectionListResult(msrest.serialization.Model): + """Response for the ListPrivateEndpointConnection API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of PrivateEndpointConnection resources for a specific private link service. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnection] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateEndpointConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["PrivateEndpointConnection"]] = None, + **kwargs + ): + """ + :keyword value: A list of PrivateEndpointConnection resources for a specific private link + service. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnection] + """ + super(PrivateEndpointConnectionListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class PrivateEndpointIPConfiguration(msrest.serialization.Model): + """An IP Configuration of the private endpoint. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: The name of the resource that is unique within a resource group. + :vartype name: str + :ivar type: The resource type. + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar group_id: The ID of a group obtained from the remote resource that this private endpoint + should connect to. + :vartype group_id: str + :ivar member_name: The member name of a group obtained from the remote resource that this + private endpoint should connect to. + :vartype member_name: str + :ivar private_ip_address: A private ip address obtained from the private endpoint's subnet. + :vartype private_ip_address: str + """ + + _validation = { + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'group_id': {'key': 'properties.groupId', 'type': 'str'}, + 'member_name': {'key': 'properties.memberName', 'type': 'str'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + group_id: Optional[str] = None, + member_name: Optional[str] = None, + private_ip_address: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name of the resource that is unique within a resource group. + :paramtype name: str + :keyword group_id: The ID of a group obtained from the remote resource that this private + endpoint should connect to. + :paramtype group_id: str + :keyword member_name: The member name of a group obtained from the remote resource that this + private endpoint should connect to. + :paramtype member_name: str + :keyword private_ip_address: A private ip address obtained from the private endpoint's subnet. + :paramtype private_ip_address: str + """ + super(PrivateEndpointIPConfiguration, self).__init__(**kwargs) + self.name = name + self.type = None + self.etag = None + self.group_id = group_id + self.member_name = member_name + self.private_ip_address = private_ip_address + + +class PrivateEndpointListResult(msrest.serialization.Model): + """Response for the ListPrivateEndpoints API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of private endpoint resources in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateEndpoint]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["PrivateEndpoint"]] = None, + **kwargs + ): + """ + :keyword value: A list of private endpoint resources in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint] + """ + super(PrivateEndpointListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class PrivateLinkService(Resource): + """Private link service resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar extended_location: The extended location of the load balancer. + :vartype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar load_balancer_frontend_ip_configurations: An array of references to the load balancer IP + configurations. + :vartype load_balancer_frontend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration] + :ivar ip_configurations: An array of private link service IP configurations. + :vartype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceIpConfiguration] + :ivar network_interfaces: An array of references to the network interfaces created for this + private link service. + :vartype network_interfaces: list[~azure.mgmt.network.v2021_08_01.models.NetworkInterface] + :ivar provisioning_state: The provisioning state of the private link service resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar private_endpoint_connections: An array of list about connections to the private endpoint. + :vartype private_endpoint_connections: + list[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnection] + :ivar visibility: The visibility list of the private link service. + :vartype visibility: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServicePropertiesVisibility + :ivar auto_approval: The auto-approval list of the private link service. + :vartype auto_approval: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServicePropertiesAutoApproval + :ivar fqdns: The list of Fqdn. + :vartype fqdns: list[str] + :ivar alias: The alias of the private link service. + :vartype alias: str + :ivar enable_proxy_protocol: Whether the private link service is enabled for proxy protocol or + not. + :vartype enable_proxy_protocol: bool + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'network_interfaces': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'private_endpoint_connections': {'readonly': True}, + 'alias': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'extended_location': {'key': 'extendedLocation', 'type': 'ExtendedLocation'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'load_balancer_frontend_ip_configurations': {'key': 'properties.loadBalancerFrontendIpConfigurations', 'type': '[FrontendIPConfiguration]'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[PrivateLinkServiceIpConfiguration]'}, + 'network_interfaces': {'key': 'properties.networkInterfaces', 'type': '[NetworkInterface]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'private_endpoint_connections': {'key': 'properties.privateEndpointConnections', 'type': '[PrivateEndpointConnection]'}, + 'visibility': {'key': 'properties.visibility', 'type': 'PrivateLinkServicePropertiesVisibility'}, + 'auto_approval': {'key': 'properties.autoApproval', 'type': 'PrivateLinkServicePropertiesAutoApproval'}, + 'fqdns': {'key': 'properties.fqdns', 'type': '[str]'}, + 'alias': {'key': 'properties.alias', 'type': 'str'}, + 'enable_proxy_protocol': {'key': 'properties.enableProxyProtocol', 'type': 'bool'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + extended_location: Optional["ExtendedLocation"] = None, + load_balancer_frontend_ip_configurations: Optional[List["FrontendIPConfiguration"]] = None, + ip_configurations: Optional[List["PrivateLinkServiceIpConfiguration"]] = None, + visibility: Optional["PrivateLinkServicePropertiesVisibility"] = None, + auto_approval: Optional["PrivateLinkServicePropertiesAutoApproval"] = None, + fqdns: Optional[List[str]] = None, + enable_proxy_protocol: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword extended_location: The extended location of the load balancer. + :paramtype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :keyword load_balancer_frontend_ip_configurations: An array of references to the load balancer + IP configurations. + :paramtype load_balancer_frontend_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration] + :keyword ip_configurations: An array of private link service IP configurations. + :paramtype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceIpConfiguration] + :keyword visibility: The visibility list of the private link service. + :paramtype visibility: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServicePropertiesVisibility + :keyword auto_approval: The auto-approval list of the private link service. + :paramtype auto_approval: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServicePropertiesAutoApproval + :keyword fqdns: The list of Fqdn. + :paramtype fqdns: list[str] + :keyword enable_proxy_protocol: Whether the private link service is enabled for proxy protocol + or not. + :paramtype enable_proxy_protocol: bool + """ + super(PrivateLinkService, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.extended_location = extended_location + self.etag = None + self.load_balancer_frontend_ip_configurations = load_balancer_frontend_ip_configurations + self.ip_configurations = ip_configurations + self.network_interfaces = None + self.provisioning_state = None + self.private_endpoint_connections = None + self.visibility = visibility + self.auto_approval = auto_approval + self.fqdns = fqdns + self.alias = None + self.enable_proxy_protocol = enable_proxy_protocol + + +class PrivateLinkServiceConnection(SubResource): + """PrivateLinkServiceConnection resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar type: The resource type. + :vartype type: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar provisioning_state: The provisioning state of the private link service connection + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar private_link_service_id: The resource id of private link service. + :vartype private_link_service_id: str + :ivar group_ids: The ID(s) of the group(s) obtained from the remote resource that this private + endpoint should connect to. + :vartype group_ids: list[str] + :ivar request_message: A message passed to the owner of the remote resource with this + connection request. Restricted to 140 chars. + :vartype request_message: str + :ivar private_link_service_connection_state: A collection of read-only information about the + state of the connection to the remote resource. + :vartype private_link_service_connection_state: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnectionState + """ + + _validation = { + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'private_link_service_id': {'key': 'properties.privateLinkServiceId', 'type': 'str'}, + 'group_ids': {'key': 'properties.groupIds', 'type': '[str]'}, + 'request_message': {'key': 'properties.requestMessage', 'type': 'str'}, + 'private_link_service_connection_state': {'key': 'properties.privateLinkServiceConnectionState', 'type': 'PrivateLinkServiceConnectionState'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_link_service_id: Optional[str] = None, + group_ids: Optional[List[str]] = None, + request_message: Optional[str] = None, + private_link_service_connection_state: Optional["PrivateLinkServiceConnectionState"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword private_link_service_id: The resource id of private link service. + :paramtype private_link_service_id: str + :keyword group_ids: The ID(s) of the group(s) obtained from the remote resource that this + private endpoint should connect to. + :paramtype group_ids: list[str] + :keyword request_message: A message passed to the owner of the remote resource with this + connection request. Restricted to 140 chars. + :paramtype request_message: str + :keyword private_link_service_connection_state: A collection of read-only information about the + state of the connection to the remote resource. + :paramtype private_link_service_connection_state: + ~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceConnectionState + """ + super(PrivateLinkServiceConnection, self).__init__(id=id, **kwargs) + self.name = name + self.type = None + self.etag = None + self.provisioning_state = None + self.private_link_service_id = private_link_service_id + self.group_ids = group_ids + self.request_message = request_message + self.private_link_service_connection_state = private_link_service_connection_state + + +class PrivateLinkServiceConnectionState(msrest.serialization.Model): + """A collection of information about the state of the connection between service consumer and provider. + + :ivar status: Indicates whether the connection has been Approved/Rejected/Removed by the owner + of the service. + :vartype status: str + :ivar description: The reason for approval/rejection of the connection. + :vartype description: str + :ivar actions_required: A message indicating if changes on the service provider require any + updates on the consumer. + :vartype actions_required: str + """ + + _attribute_map = { + 'status': {'key': 'status', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'actions_required': {'key': 'actionsRequired', 'type': 'str'}, + } + + def __init__( + self, + *, + status: Optional[str] = None, + description: Optional[str] = None, + actions_required: Optional[str] = None, + **kwargs + ): + """ + :keyword status: Indicates whether the connection has been Approved/Rejected/Removed by the + owner of the service. + :paramtype status: str + :keyword description: The reason for approval/rejection of the connection. + :paramtype description: str + :keyword actions_required: A message indicating if changes on the service provider require any + updates on the consumer. + :paramtype actions_required: str + """ + super(PrivateLinkServiceConnectionState, self).__init__(**kwargs) + self.status = status + self.description = description + self.actions_required = actions_required + + +class PrivateLinkServiceIpConfiguration(SubResource): + """The private link service ip configuration. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of private link service ip configuration. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: The resource type. + :vartype type: str + :ivar private_ip_address: The private IP address of the IP configuration. + :vartype private_ip_address: str + :ivar private_ip_allocation_method: The private IP address allocation method. Possible values + include: "Static", "Dynamic". + :vartype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :ivar subnet: The reference to the subnet resource. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :ivar primary: Whether the ip configuration is primary or not. + :vartype primary: bool + :ivar provisioning_state: The provisioning state of the private link service IP configuration + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar private_ip_address_version: Whether the specific IP configuration is IPv4 or IPv6. + Default is IPv4. Possible values include: "IPv4", "IPv6". + :vartype private_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + 'private_ip_allocation_method': {'key': 'properties.privateIPAllocationMethod', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'Subnet'}, + 'primary': {'key': 'properties.primary', 'type': 'bool'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'private_ip_address_version': {'key': 'properties.privateIPAddressVersion', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_ip_address: Optional[str] = None, + private_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + subnet: Optional["Subnet"] = None, + primary: Optional[bool] = None, + private_ip_address_version: Optional[Union[str, "IPVersion"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of private link service ip configuration. + :paramtype name: str + :keyword private_ip_address: The private IP address of the IP configuration. + :paramtype private_ip_address: str + :keyword private_ip_allocation_method: The private IP address allocation method. Possible + values include: "Static", "Dynamic". + :paramtype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :keyword subnet: The reference to the subnet resource. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.Subnet + :keyword primary: Whether the ip configuration is primary or not. + :paramtype primary: bool + :keyword private_ip_address_version: Whether the specific IP configuration is IPv4 or IPv6. + Default is IPv4. Possible values include: "IPv4", "IPv6". + :paramtype private_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + """ + super(PrivateLinkServiceIpConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.private_ip_address = private_ip_address + self.private_ip_allocation_method = private_ip_allocation_method + self.subnet = subnet + self.primary = primary + self.provisioning_state = None + self.private_ip_address_version = private_ip_address_version + + +class PrivateLinkServiceListResult(msrest.serialization.Model): + """Response for the ListPrivateLinkService API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of PrivateLinkService resources in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.PrivateLinkService] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PrivateLinkService]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["PrivateLinkService"]] = None, + **kwargs + ): + """ + :keyword value: A list of PrivateLinkService resources in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.PrivateLinkService] + """ + super(PrivateLinkServiceListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class ResourceSet(msrest.serialization.Model): + """The base resource set for visibility and auto-approval. + + :ivar subscriptions: The list of subscriptions. + :vartype subscriptions: list[str] + """ + + _attribute_map = { + 'subscriptions': {'key': 'subscriptions', 'type': '[str]'}, + } + + def __init__( + self, + *, + subscriptions: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword subscriptions: The list of subscriptions. + :paramtype subscriptions: list[str] + """ + super(ResourceSet, self).__init__(**kwargs) + self.subscriptions = subscriptions + + +class PrivateLinkServicePropertiesAutoApproval(ResourceSet): + """The auto-approval list of the private link service. + + :ivar subscriptions: The list of subscriptions. + :vartype subscriptions: list[str] + """ + + _attribute_map = { + 'subscriptions': {'key': 'subscriptions', 'type': '[str]'}, + } + + def __init__( + self, + *, + subscriptions: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword subscriptions: The list of subscriptions. + :paramtype subscriptions: list[str] + """ + super(PrivateLinkServicePropertiesAutoApproval, self).__init__(subscriptions=subscriptions, **kwargs) + + +class PrivateLinkServicePropertiesVisibility(ResourceSet): + """The visibility list of the private link service. + + :ivar subscriptions: The list of subscriptions. + :vartype subscriptions: list[str] + """ + + _attribute_map = { + 'subscriptions': {'key': 'subscriptions', 'type': '[str]'}, + } + + def __init__( + self, + *, + subscriptions: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword subscriptions: The list of subscriptions. + :paramtype subscriptions: list[str] + """ + super(PrivateLinkServicePropertiesVisibility, self).__init__(subscriptions=subscriptions, **kwargs) + + +class PrivateLinkServiceVisibility(msrest.serialization.Model): + """Response for the CheckPrivateLinkServiceVisibility API service call. + + :ivar visible: Private Link Service Visibility (True/False). + :vartype visible: bool + """ + + _attribute_map = { + 'visible': {'key': 'visible', 'type': 'bool'}, + } + + def __init__( + self, + *, + visible: Optional[bool] = None, + **kwargs + ): + """ + :keyword visible: Private Link Service Visibility (True/False). + :paramtype visible: bool + """ + super(PrivateLinkServiceVisibility, self).__init__(**kwargs) + self.visible = visible + + +class Probe(SubResource): + """A load balancer probe. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within the set of probes used by the load + balancer. This name can be used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Type of the resource. + :vartype type: str + :ivar load_balancing_rules: The load balancer rules that use this probe. + :vartype load_balancing_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar protocol: The protocol of the end point. If 'Tcp' is specified, a received ACK is + required for the probe to be successful. If 'Http' or 'Https' is specified, a 200 OK response + from the specifies URI is required for the probe to be successful. Possible values include: + "Http", "Tcp", "Https". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ProbeProtocol + :ivar port: The port for communicating the probe. Possible values range from 1 to 65535, + inclusive. + :vartype port: int + :ivar interval_in_seconds: The interval, in seconds, for how frequently to probe the endpoint + for health status. Typically, the interval is slightly less than half the allocated timeout + period (in seconds) which allows two full probes before taking the instance out of rotation. + The default value is 15, the minimum value is 5. + :vartype interval_in_seconds: int + :ivar number_of_probes: The number of probes where if no response, will result in stopping + further traffic from being delivered to the endpoint. This values allows endpoints to be taken + out of rotation faster or slower than the typical times used in Azure. + :vartype number_of_probes: int + :ivar request_path: The URI used for requesting health status from the VM. Path is required if + a protocol is set to http. Otherwise, it is not allowed. There is no default value. + :vartype request_path: str + :ivar provisioning_state: The provisioning state of the probe resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'load_balancing_rules': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'load_balancing_rules': {'key': 'properties.loadBalancingRules', 'type': '[SubResource]'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'port': {'key': 'properties.port', 'type': 'int'}, + 'interval_in_seconds': {'key': 'properties.intervalInSeconds', 'type': 'int'}, + 'number_of_probes': {'key': 'properties.numberOfProbes', 'type': 'int'}, + 'request_path': {'key': 'properties.requestPath', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + protocol: Optional[Union[str, "ProbeProtocol"]] = None, + port: Optional[int] = None, + interval_in_seconds: Optional[int] = None, + number_of_probes: Optional[int] = None, + request_path: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within the set of probes used by the + load balancer. This name can be used to access the resource. + :paramtype name: str + :keyword protocol: The protocol of the end point. If 'Tcp' is specified, a received ACK is + required for the probe to be successful. If 'Http' or 'Https' is specified, a 200 OK response + from the specifies URI is required for the probe to be successful. Possible values include: + "Http", "Tcp", "Https". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ProbeProtocol + :keyword port: The port for communicating the probe. Possible values range from 1 to 65535, + inclusive. + :paramtype port: int + :keyword interval_in_seconds: The interval, in seconds, for how frequently to probe the + endpoint for health status. Typically, the interval is slightly less than half the allocated + timeout period (in seconds) which allows two full probes before taking the instance out of + rotation. The default value is 15, the minimum value is 5. + :paramtype interval_in_seconds: int + :keyword number_of_probes: The number of probes where if no response, will result in stopping + further traffic from being delivered to the endpoint. This values allows endpoints to be taken + out of rotation faster or slower than the typical times used in Azure. + :paramtype number_of_probes: int + :keyword request_path: The URI used for requesting health status from the VM. Path is required + if a protocol is set to http. Otherwise, it is not allowed. There is no default value. + :paramtype request_path: str + """ + super(Probe, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.load_balancing_rules = None + self.protocol = protocol + self.port = port + self.interval_in_seconds = interval_in_seconds + self.number_of_probes = number_of_probes + self.request_path = request_path + self.provisioning_state = None + + +class PropagatedRouteTable(msrest.serialization.Model): + """The list of RouteTables to advertise the routes to. + + :ivar labels: The list of labels. + :vartype labels: list[str] + :ivar ids: The list of resource ids of all the RouteTables. + :vartype ids: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + + _attribute_map = { + 'labels': {'key': 'labels', 'type': '[str]'}, + 'ids': {'key': 'ids', 'type': '[SubResource]'}, + } + + def __init__( + self, + *, + labels: Optional[List[str]] = None, + ids: Optional[List["SubResource"]] = None, + **kwargs + ): + """ + :keyword labels: The list of labels. + :paramtype labels: list[str] + :keyword ids: The list of resource ids of all the RouteTables. + :paramtype ids: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + super(PropagatedRouteTable, self).__init__(**kwargs) + self.labels = labels + self.ids = ids + + +class ProtocolConfiguration(msrest.serialization.Model): + """Configuration of the protocol. + + :ivar http_configuration: HTTP configuration of the connectivity check. + :vartype http_configuration: ~azure.mgmt.network.v2021_08_01.models.HTTPConfiguration + """ + + _attribute_map = { + 'http_configuration': {'key': 'HTTPConfiguration', 'type': 'HTTPConfiguration'}, + } + + def __init__( + self, + *, + http_configuration: Optional["HTTPConfiguration"] = None, + **kwargs + ): + """ + :keyword http_configuration: HTTP configuration of the connectivity check. + :paramtype http_configuration: ~azure.mgmt.network.v2021_08_01.models.HTTPConfiguration + """ + super(ProtocolConfiguration, self).__init__(**kwargs) + self.http_configuration = http_configuration + + +class ProtocolCustomSettingsFormat(msrest.serialization.Model): + """DDoS custom policy properties. + + :ivar protocol: The protocol for which the DDoS protection policy is being customized. Possible + values include: "Tcp", "Udp", "Syn". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicyProtocol + :ivar trigger_rate_override: The customized DDoS protection trigger rate. + :vartype trigger_rate_override: str + :ivar source_rate_override: The customized DDoS protection source rate. + :vartype source_rate_override: str + :ivar trigger_sensitivity_override: The customized DDoS protection trigger rate sensitivity + degrees. High: Trigger rate set with most sensitivity w.r.t. normal traffic. Default: Trigger + rate set with moderate sensitivity w.r.t. normal traffic. Low: Trigger rate set with less + sensitivity w.r.t. normal traffic. Relaxed: Trigger rate set with least sensitivity w.r.t. + normal traffic. Possible values include: "Relaxed", "Low", "Default", "High". + :vartype trigger_sensitivity_override: str or + ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicyTriggerSensitivityOverride + """ + + _attribute_map = { + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'trigger_rate_override': {'key': 'triggerRateOverride', 'type': 'str'}, + 'source_rate_override': {'key': 'sourceRateOverride', 'type': 'str'}, + 'trigger_sensitivity_override': {'key': 'triggerSensitivityOverride', 'type': 'str'}, + } + + def __init__( + self, + *, + protocol: Optional[Union[str, "DdosCustomPolicyProtocol"]] = None, + trigger_rate_override: Optional[str] = None, + source_rate_override: Optional[str] = None, + trigger_sensitivity_override: Optional[Union[str, "DdosCustomPolicyTriggerSensitivityOverride"]] = None, + **kwargs + ): + """ + :keyword protocol: The protocol for which the DDoS protection policy is being customized. + Possible values include: "Tcp", "Udp", "Syn". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicyProtocol + :keyword trigger_rate_override: The customized DDoS protection trigger rate. + :paramtype trigger_rate_override: str + :keyword source_rate_override: The customized DDoS protection source rate. + :paramtype source_rate_override: str + :keyword trigger_sensitivity_override: The customized DDoS protection trigger rate sensitivity + degrees. High: Trigger rate set with most sensitivity w.r.t. normal traffic. Default: Trigger + rate set with moderate sensitivity w.r.t. normal traffic. Low: Trigger rate set with less + sensitivity w.r.t. normal traffic. Relaxed: Trigger rate set with least sensitivity w.r.t. + normal traffic. Possible values include: "Relaxed", "Low", "Default", "High". + :paramtype trigger_sensitivity_override: str or + ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicyTriggerSensitivityOverride + """ + super(ProtocolCustomSettingsFormat, self).__init__(**kwargs) + self.protocol = protocol + self.trigger_rate_override = trigger_rate_override + self.source_rate_override = source_rate_override + self.trigger_sensitivity_override = trigger_sensitivity_override + + +class PublicIPAddress(Resource): + """Public IP address resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar extended_location: The extended location of the public ip address. + :vartype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :ivar sku: The public IP address SKU. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressSku + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar zones: A list of availability zones denoting the IP allocated for the resource needs to + come from. + :vartype zones: list[str] + :ivar public_ip_allocation_method: The public IP address allocation method. Possible values + include: "Static", "Dynamic". + :vartype public_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :ivar public_ip_address_version: The public IP address version. Possible values include: + "IPv4", "IPv6". + :vartype public_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :ivar ip_configuration: The IP configuration associated with the public IP address. + :vartype ip_configuration: ~azure.mgmt.network.v2021_08_01.models.IPConfiguration + :ivar dns_settings: The FQDN of the DNS record associated with the public IP address. + :vartype dns_settings: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressDnsSettings + :ivar ddos_settings: The DDoS protection custom policy associated with the public IP address. + :vartype ddos_settings: ~azure.mgmt.network.v2021_08_01.models.DdosSettings + :ivar ip_tags: The list of tags associated with the public IP address. + :vartype ip_tags: list[~azure.mgmt.network.v2021_08_01.models.IpTag] + :ivar ip_address: The IP address associated with the public IP address resource. + :vartype ip_address: str + :ivar public_ip_prefix: The Public IP Prefix this Public IP Address should be allocated from. + :vartype public_ip_prefix: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar idle_timeout_in_minutes: The idle timeout of the public IP address. + :vartype idle_timeout_in_minutes: int + :ivar resource_guid: The resource GUID property of the public IP address resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the public IP address resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar service_public_ip_address: The service public IP address of the public IP address + resource. + :vartype service_public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :ivar nat_gateway: The NatGateway for the Public IP address. + :vartype nat_gateway: ~azure.mgmt.network.v2021_08_01.models.NatGateway + :ivar migration_phase: Migration phase of Public IP Address. Possible values include: "None", + "Prepare", "Commit", "Abort", "Committed". + :vartype migration_phase: str or + ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressMigrationPhase + :ivar linked_public_ip_address: The linked public IP address of the public IP address resource. + :vartype linked_public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :ivar delete_option: Specify what happens to the public IP address when the VM using it is + deleted. Possible values include: "Delete", "Detach". + :vartype delete_option: str or ~azure.mgmt.network.v2021_08_01.models.DeleteOptions + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'ip_configuration': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'extended_location': {'key': 'extendedLocation', 'type': 'ExtendedLocation'}, + 'sku': {'key': 'sku', 'type': 'PublicIPAddressSku'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'zones': {'key': 'zones', 'type': '[str]'}, + 'public_ip_allocation_method': {'key': 'properties.publicIPAllocationMethod', 'type': 'str'}, + 'public_ip_address_version': {'key': 'properties.publicIPAddressVersion', 'type': 'str'}, + 'ip_configuration': {'key': 'properties.ipConfiguration', 'type': 'IPConfiguration'}, + 'dns_settings': {'key': 'properties.dnsSettings', 'type': 'PublicIPAddressDnsSettings'}, + 'ddos_settings': {'key': 'properties.ddosSettings', 'type': 'DdosSettings'}, + 'ip_tags': {'key': 'properties.ipTags', 'type': '[IpTag]'}, + 'ip_address': {'key': 'properties.ipAddress', 'type': 'str'}, + 'public_ip_prefix': {'key': 'properties.publicIPPrefix', 'type': 'SubResource'}, + 'idle_timeout_in_minutes': {'key': 'properties.idleTimeoutInMinutes', 'type': 'int'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'service_public_ip_address': {'key': 'properties.servicePublicIPAddress', 'type': 'PublicIPAddress'}, + 'nat_gateway': {'key': 'properties.natGateway', 'type': 'NatGateway'}, + 'migration_phase': {'key': 'properties.migrationPhase', 'type': 'str'}, + 'linked_public_ip_address': {'key': 'properties.linkedPublicIPAddress', 'type': 'PublicIPAddress'}, + 'delete_option': {'key': 'properties.deleteOption', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + extended_location: Optional["ExtendedLocation"] = None, + sku: Optional["PublicIPAddressSku"] = None, + zones: Optional[List[str]] = None, + public_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + public_ip_address_version: Optional[Union[str, "IPVersion"]] = None, + dns_settings: Optional["PublicIPAddressDnsSettings"] = None, + ddos_settings: Optional["DdosSettings"] = None, + ip_tags: Optional[List["IpTag"]] = None, + ip_address: Optional[str] = None, + public_ip_prefix: Optional["SubResource"] = None, + idle_timeout_in_minutes: Optional[int] = None, + service_public_ip_address: Optional["PublicIPAddress"] = None, + nat_gateway: Optional["NatGateway"] = None, + migration_phase: Optional[Union[str, "PublicIPAddressMigrationPhase"]] = None, + linked_public_ip_address: Optional["PublicIPAddress"] = None, + delete_option: Optional[Union[str, "DeleteOptions"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword extended_location: The extended location of the public ip address. + :paramtype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :keyword sku: The public IP address SKU. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressSku + :keyword zones: A list of availability zones denoting the IP allocated for the resource needs + to come from. + :paramtype zones: list[str] + :keyword public_ip_allocation_method: The public IP address allocation method. Possible values + include: "Static", "Dynamic". + :paramtype public_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :keyword public_ip_address_version: The public IP address version. Possible values include: + "IPv4", "IPv6". + :paramtype public_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :keyword dns_settings: The FQDN of the DNS record associated with the public IP address. + :paramtype dns_settings: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressDnsSettings + :keyword ddos_settings: The DDoS protection custom policy associated with the public IP + address. + :paramtype ddos_settings: ~azure.mgmt.network.v2021_08_01.models.DdosSettings + :keyword ip_tags: The list of tags associated with the public IP address. + :paramtype ip_tags: list[~azure.mgmt.network.v2021_08_01.models.IpTag] + :keyword ip_address: The IP address associated with the public IP address resource. + :paramtype ip_address: str + :keyword public_ip_prefix: The Public IP Prefix this Public IP Address should be allocated + from. + :paramtype public_ip_prefix: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword idle_timeout_in_minutes: The idle timeout of the public IP address. + :paramtype idle_timeout_in_minutes: int + :keyword service_public_ip_address: The service public IP address of the public IP address + resource. + :paramtype service_public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :keyword nat_gateway: The NatGateway for the Public IP address. + :paramtype nat_gateway: ~azure.mgmt.network.v2021_08_01.models.NatGateway + :keyword migration_phase: Migration phase of Public IP Address. Possible values include: + "None", "Prepare", "Commit", "Abort", "Committed". + :paramtype migration_phase: str or + ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressMigrationPhase + :keyword linked_public_ip_address: The linked public IP address of the public IP address + resource. + :paramtype linked_public_ip_address: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :keyword delete_option: Specify what happens to the public IP address when the VM using it is + deleted. Possible values include: "Delete", "Detach". + :paramtype delete_option: str or ~azure.mgmt.network.v2021_08_01.models.DeleteOptions + """ + super(PublicIPAddress, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.extended_location = extended_location + self.sku = sku + self.etag = None + self.zones = zones + self.public_ip_allocation_method = public_ip_allocation_method + self.public_ip_address_version = public_ip_address_version + self.ip_configuration = None + self.dns_settings = dns_settings + self.ddos_settings = ddos_settings + self.ip_tags = ip_tags + self.ip_address = ip_address + self.public_ip_prefix = public_ip_prefix + self.idle_timeout_in_minutes = idle_timeout_in_minutes + self.resource_guid = None + self.provisioning_state = None + self.service_public_ip_address = service_public_ip_address + self.nat_gateway = nat_gateway + self.migration_phase = migration_phase + self.linked_public_ip_address = linked_public_ip_address + self.delete_option = delete_option + + +class PublicIPAddressDnsSettings(msrest.serialization.Model): + """Contains FQDN of the DNS record associated with the public IP address. + + :ivar domain_name_label: The domain name label. The concatenation of the domain name label and + the regionalized DNS zone make up the fully qualified domain name associated with the public IP + address. If a domain name label is specified, an A DNS record is created for the public IP in + the Microsoft Azure DNS system. + :vartype domain_name_label: str + :ivar fqdn: The Fully Qualified Domain Name of the A DNS record associated with the public IP. + This is the concatenation of the domainNameLabel and the regionalized DNS zone. + :vartype fqdn: str + :ivar reverse_fqdn: The reverse FQDN. A user-visible, fully qualified domain name that resolves + to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created + pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. + :vartype reverse_fqdn: str + """ + + _attribute_map = { + 'domain_name_label': {'key': 'domainNameLabel', 'type': 'str'}, + 'fqdn': {'key': 'fqdn', 'type': 'str'}, + 'reverse_fqdn': {'key': 'reverseFqdn', 'type': 'str'}, + } + + def __init__( + self, + *, + domain_name_label: Optional[str] = None, + fqdn: Optional[str] = None, + reverse_fqdn: Optional[str] = None, + **kwargs + ): + """ + :keyword domain_name_label: The domain name label. The concatenation of the domain name label + and the regionalized DNS zone make up the fully qualified domain name associated with the + public IP address. If a domain name label is specified, an A DNS record is created for the + public IP in the Microsoft Azure DNS system. + :paramtype domain_name_label: str + :keyword fqdn: The Fully Qualified Domain Name of the A DNS record associated with the public + IP. This is the concatenation of the domainNameLabel and the regionalized DNS zone. + :paramtype fqdn: str + :keyword reverse_fqdn: The reverse FQDN. A user-visible, fully qualified domain name that + resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is + created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. + :paramtype reverse_fqdn: str + """ + super(PublicIPAddressDnsSettings, self).__init__(**kwargs) + self.domain_name_label = domain_name_label + self.fqdn = fqdn + self.reverse_fqdn = reverse_fqdn + + +class PublicIPAddressListResult(msrest.serialization.Model): + """Response for ListPublicIpAddresses API service call. + + :ivar value: A list of public IP addresses that exists in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.PublicIPAddress] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PublicIPAddress]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["PublicIPAddress"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of public IP addresses that exists in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.PublicIPAddress] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(PublicIPAddressListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class PublicIPAddressSku(msrest.serialization.Model): + """SKU of a public IP address. + + :ivar name: Name of a public IP address SKU. Possible values include: "Basic", "Standard". + :vartype name: str or ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressSkuName + :ivar tier: Tier of a public IP address SKU. Possible values include: "Regional", "Global". + :vartype tier: str or ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressSkuTier + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[Union[str, "PublicIPAddressSkuName"]] = None, + tier: Optional[Union[str, "PublicIPAddressSkuTier"]] = None, + **kwargs + ): + """ + :keyword name: Name of a public IP address SKU. Possible values include: "Basic", "Standard". + :paramtype name: str or ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressSkuName + :keyword tier: Tier of a public IP address SKU. Possible values include: "Regional", "Global". + :paramtype tier: str or ~azure.mgmt.network.v2021_08_01.models.PublicIPAddressSkuTier + """ + super(PublicIPAddressSku, self).__init__(**kwargs) + self.name = name + self.tier = tier + + +class PublicIPPrefix(Resource): + """Public IP prefix resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar extended_location: The extended location of the public ip address. + :vartype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :ivar sku: The public IP prefix SKU. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixSku + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar zones: A list of availability zones denoting the IP allocated for the resource needs to + come from. + :vartype zones: list[str] + :ivar public_ip_address_version: The public IP address version. Possible values include: + "IPv4", "IPv6". + :vartype public_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :ivar ip_tags: The list of tags associated with the public IP prefix. + :vartype ip_tags: list[~azure.mgmt.network.v2021_08_01.models.IpTag] + :ivar prefix_length: The Length of the Public IP Prefix. + :vartype prefix_length: int + :ivar ip_prefix: The allocated Prefix. + :vartype ip_prefix: str + :ivar public_ip_addresses: The list of all referenced PublicIPAddresses. + :vartype public_ip_addresses: + list[~azure.mgmt.network.v2021_08_01.models.ReferencedPublicIpAddress] + :ivar load_balancer_frontend_ip_configuration: The reference to load balancer frontend IP + configuration associated with the public IP prefix. + :vartype load_balancer_frontend_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar custom_ip_prefix: The customIpPrefix that this prefix is associated with. + :vartype custom_ip_prefix: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar resource_guid: The resource GUID property of the public IP prefix resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the public IP prefix resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar nat_gateway: NatGateway of Public IP Prefix. + :vartype nat_gateway: ~azure.mgmt.network.v2021_08_01.models.NatGateway + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'ip_prefix': {'readonly': True}, + 'public_ip_addresses': {'readonly': True}, + 'load_balancer_frontend_ip_configuration': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'extended_location': {'key': 'extendedLocation', 'type': 'ExtendedLocation'}, + 'sku': {'key': 'sku', 'type': 'PublicIPPrefixSku'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'zones': {'key': 'zones', 'type': '[str]'}, + 'public_ip_address_version': {'key': 'properties.publicIPAddressVersion', 'type': 'str'}, + 'ip_tags': {'key': 'properties.ipTags', 'type': '[IpTag]'}, + 'prefix_length': {'key': 'properties.prefixLength', 'type': 'int'}, + 'ip_prefix': {'key': 'properties.ipPrefix', 'type': 'str'}, + 'public_ip_addresses': {'key': 'properties.publicIPAddresses', 'type': '[ReferencedPublicIpAddress]'}, + 'load_balancer_frontend_ip_configuration': {'key': 'properties.loadBalancerFrontendIpConfiguration', 'type': 'SubResource'}, + 'custom_ip_prefix': {'key': 'properties.customIPPrefix', 'type': 'SubResource'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'nat_gateway': {'key': 'properties.natGateway', 'type': 'NatGateway'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + extended_location: Optional["ExtendedLocation"] = None, + sku: Optional["PublicIPPrefixSku"] = None, + zones: Optional[List[str]] = None, + public_ip_address_version: Optional[Union[str, "IPVersion"]] = None, + ip_tags: Optional[List["IpTag"]] = None, + prefix_length: Optional[int] = None, + custom_ip_prefix: Optional["SubResource"] = None, + nat_gateway: Optional["NatGateway"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword extended_location: The extended location of the public ip address. + :paramtype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :keyword sku: The public IP prefix SKU. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixSku + :keyword zones: A list of availability zones denoting the IP allocated for the resource needs + to come from. + :paramtype zones: list[str] + :keyword public_ip_address_version: The public IP address version. Possible values include: + "IPv4", "IPv6". + :paramtype public_ip_address_version: str or ~azure.mgmt.network.v2021_08_01.models.IPVersion + :keyword ip_tags: The list of tags associated with the public IP prefix. + :paramtype ip_tags: list[~azure.mgmt.network.v2021_08_01.models.IpTag] + :keyword prefix_length: The Length of the Public IP Prefix. + :paramtype prefix_length: int + :keyword custom_ip_prefix: The customIpPrefix that this prefix is associated with. + :paramtype custom_ip_prefix: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword nat_gateway: NatGateway of Public IP Prefix. + :paramtype nat_gateway: ~azure.mgmt.network.v2021_08_01.models.NatGateway + """ + super(PublicIPPrefix, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.extended_location = extended_location + self.sku = sku + self.etag = None + self.zones = zones + self.public_ip_address_version = public_ip_address_version + self.ip_tags = ip_tags + self.prefix_length = prefix_length + self.ip_prefix = None + self.public_ip_addresses = None + self.load_balancer_frontend_ip_configuration = None + self.custom_ip_prefix = custom_ip_prefix + self.resource_guid = None + self.provisioning_state = None + self.nat_gateway = nat_gateway + + +class PublicIPPrefixListResult(msrest.serialization.Model): + """Response for ListPublicIpPrefixes API service call. + + :ivar value: A list of public IP prefixes that exists in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[PublicIPPrefix]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["PublicIPPrefix"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of public IP prefixes that exists in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(PublicIPPrefixListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class PublicIPPrefixSku(msrest.serialization.Model): + """SKU of a public IP prefix. + + :ivar name: Name of a public IP prefix SKU. Possible values include: "Standard". + :vartype name: str or ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixSkuName + :ivar tier: Tier of a public IP prefix SKU. Possible values include: "Regional", "Global". + :vartype tier: str or ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixSkuTier + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[Union[str, "PublicIPPrefixSkuName"]] = None, + tier: Optional[Union[str, "PublicIPPrefixSkuTier"]] = None, + **kwargs + ): + """ + :keyword name: Name of a public IP prefix SKU. Possible values include: "Standard". + :paramtype name: str or ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixSkuName + :keyword tier: Tier of a public IP prefix SKU. Possible values include: "Regional", "Global". + :paramtype tier: str or ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixSkuTier + """ + super(PublicIPPrefixSku, self).__init__(**kwargs) + self.name = name + self.tier = tier + + +class QosDefinition(msrest.serialization.Model): + """Quality of Service defines the traffic configuration between endpoints. Mandatory to have one marking. + + :ivar markings: List of markings to be used in the configuration. + :vartype markings: list[int] + :ivar source_ip_ranges: Source IP ranges. + :vartype source_ip_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosIpRange] + :ivar destination_ip_ranges: Destination IP ranges. + :vartype destination_ip_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosIpRange] + :ivar source_port_ranges: Sources port ranges. + :vartype source_port_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosPortRange] + :ivar destination_port_ranges: Destination port ranges. + :vartype destination_port_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosPortRange] + :ivar protocol: RNM supported protocol types. Possible values include: "DoNotUse", "Icmp", + "Tcp", "Udp", "Gre", "Esp", "Ah", "Vxlan", "All". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ProtocolType + """ + + _attribute_map = { + 'markings': {'key': 'markings', 'type': '[int]'}, + 'source_ip_ranges': {'key': 'sourceIpRanges', 'type': '[QosIpRange]'}, + 'destination_ip_ranges': {'key': 'destinationIpRanges', 'type': '[QosIpRange]'}, + 'source_port_ranges': {'key': 'sourcePortRanges', 'type': '[QosPortRange]'}, + 'destination_port_ranges': {'key': 'destinationPortRanges', 'type': '[QosPortRange]'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + } + + def __init__( + self, + *, + markings: Optional[List[int]] = None, + source_ip_ranges: Optional[List["QosIpRange"]] = None, + destination_ip_ranges: Optional[List["QosIpRange"]] = None, + source_port_ranges: Optional[List["QosPortRange"]] = None, + destination_port_ranges: Optional[List["QosPortRange"]] = None, + protocol: Optional[Union[str, "ProtocolType"]] = None, + **kwargs + ): + """ + :keyword markings: List of markings to be used in the configuration. + :paramtype markings: list[int] + :keyword source_ip_ranges: Source IP ranges. + :paramtype source_ip_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosIpRange] + :keyword destination_ip_ranges: Destination IP ranges. + :paramtype destination_ip_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosIpRange] + :keyword source_port_ranges: Sources port ranges. + :paramtype source_port_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosPortRange] + :keyword destination_port_ranges: Destination port ranges. + :paramtype destination_port_ranges: list[~azure.mgmt.network.v2021_08_01.models.QosPortRange] + :keyword protocol: RNM supported protocol types. Possible values include: "DoNotUse", "Icmp", + "Tcp", "Udp", "Gre", "Esp", "Ah", "Vxlan", "All". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.ProtocolType + """ + super(QosDefinition, self).__init__(**kwargs) + self.markings = markings + self.source_ip_ranges = source_ip_ranges + self.destination_ip_ranges = destination_ip_ranges + self.source_port_ranges = source_port_ranges + self.destination_port_ranges = destination_port_ranges + self.protocol = protocol + + +class QosIpRange(msrest.serialization.Model): + """Qos Traffic Profiler IP Range properties. + + :ivar start_ip: Start IP Address. + :vartype start_ip: str + :ivar end_ip: End IP Address. + :vartype end_ip: str + """ + + _attribute_map = { + 'start_ip': {'key': 'startIP', 'type': 'str'}, + 'end_ip': {'key': 'endIP', 'type': 'str'}, + } + + def __init__( + self, + *, + start_ip: Optional[str] = None, + end_ip: Optional[str] = None, + **kwargs + ): + """ + :keyword start_ip: Start IP Address. + :paramtype start_ip: str + :keyword end_ip: End IP Address. + :paramtype end_ip: str + """ + super(QosIpRange, self).__init__(**kwargs) + self.start_ip = start_ip + self.end_ip = end_ip + + +class QosPortRange(msrest.serialization.Model): + """Qos Traffic Profiler Port range properties. + + :ivar start: Qos Port Range start. + :vartype start: int + :ivar end: Qos Port Range end. + :vartype end: int + """ + + _attribute_map = { + 'start': {'key': 'start', 'type': 'int'}, + 'end': {'key': 'end', 'type': 'int'}, + } + + def __init__( + self, + *, + start: Optional[int] = None, + end: Optional[int] = None, + **kwargs + ): + """ + :keyword start: Qos Port Range start. + :paramtype start: int + :keyword end: Qos Port Range end. + :paramtype end: int + """ + super(QosPortRange, self).__init__(**kwargs) + self.start = start + self.end = end + + +class QueryInboundNatRulePortMappingRequest(msrest.serialization.Model): + """The request for a QueryInboundNatRulePortMapping API. Either IpConfiguration or IpAddress should be set. + + :ivar ip_configuration: NetworkInterfaceIPConfiguration set in load balancer backend address. + :vartype ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar ip_address: IP address set in load balancer backend address. + :vartype ip_address: str + """ + + _attribute_map = { + 'ip_configuration': {'key': 'ipConfiguration', 'type': 'SubResource'}, + 'ip_address': {'key': 'ipAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + ip_configuration: Optional["SubResource"] = None, + ip_address: Optional[str] = None, + **kwargs + ): + """ + :keyword ip_configuration: NetworkInterfaceIPConfiguration set in load balancer backend + address. + :paramtype ip_configuration: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword ip_address: IP address set in load balancer backend address. + :paramtype ip_address: str + """ + super(QueryInboundNatRulePortMappingRequest, self).__init__(**kwargs) + self.ip_configuration = ip_configuration + self.ip_address = ip_address + + +class QueryResults(msrest.serialization.Model): + """Query result. + + :ivar matching_records_count: Number of total records matching the query. + :vartype matching_records_count: long + :ivar signatures: Array containing the results of the query. + :vartype signatures: list[~azure.mgmt.network.v2021_08_01.models.SingleQueryResult] + """ + + _attribute_map = { + 'matching_records_count': {'key': 'matchingRecordsCount', 'type': 'long'}, + 'signatures': {'key': 'signatures', 'type': '[SingleQueryResult]'}, + } + + def __init__( + self, + *, + matching_records_count: Optional[int] = None, + signatures: Optional[List["SingleQueryResult"]] = None, + **kwargs + ): + """ + :keyword matching_records_count: Number of total records matching the query. + :paramtype matching_records_count: long + :keyword signatures: Array containing the results of the query. + :paramtype signatures: list[~azure.mgmt.network.v2021_08_01.models.SingleQueryResult] + """ + super(QueryResults, self).__init__(**kwargs) + self.matching_records_count = matching_records_count + self.signatures = signatures + + +class QueryTroubleshootingParameters(msrest.serialization.Model): + """Parameters that define the resource to query the troubleshooting result. + + All required parameters must be populated in order to send to Azure. + + :ivar target_resource_id: Required. The target resource ID to query the troubleshooting result. + :vartype target_resource_id: str + """ + + _validation = { + 'target_resource_id': {'required': True}, + } + + _attribute_map = { + 'target_resource_id': {'key': 'targetResourceId', 'type': 'str'}, + } + + def __init__( + self, + *, + target_resource_id: str, + **kwargs + ): + """ + :keyword target_resource_id: Required. The target resource ID to query the troubleshooting + result. + :paramtype target_resource_id: str + """ + super(QueryTroubleshootingParameters, self).__init__(**kwargs) + self.target_resource_id = target_resource_id + + +class RadiusServer(msrest.serialization.Model): + """Radius Server Settings. + + All required parameters must be populated in order to send to Azure. + + :ivar radius_server_address: Required. The address of this radius server. + :vartype radius_server_address: str + :ivar radius_server_score: The initial score assigned to this radius server. + :vartype radius_server_score: long + :ivar radius_server_secret: The secret used for this radius server. + :vartype radius_server_secret: str + """ + + _validation = { + 'radius_server_address': {'required': True}, + } + + _attribute_map = { + 'radius_server_address': {'key': 'radiusServerAddress', 'type': 'str'}, + 'radius_server_score': {'key': 'radiusServerScore', 'type': 'long'}, + 'radius_server_secret': {'key': 'radiusServerSecret', 'type': 'str'}, + } + + def __init__( + self, + *, + radius_server_address: str, + radius_server_score: Optional[int] = None, + radius_server_secret: Optional[str] = None, + **kwargs + ): + """ + :keyword radius_server_address: Required. The address of this radius server. + :paramtype radius_server_address: str + :keyword radius_server_score: The initial score assigned to this radius server. + :paramtype radius_server_score: long + :keyword radius_server_secret: The secret used for this radius server. + :paramtype radius_server_secret: str + """ + super(RadiusServer, self).__init__(**kwargs) + self.radius_server_address = radius_server_address + self.radius_server_score = radius_server_score + self.radius_server_secret = radius_server_secret + + +class RecordSet(msrest.serialization.Model): + """A collective group of information about the record set information. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar record_type: Resource record type. + :vartype record_type: str + :ivar record_set_name: Recordset name. + :vartype record_set_name: str + :ivar fqdn: Fqdn that resolves to private endpoint ip address. + :vartype fqdn: str + :ivar provisioning_state: The provisioning state of the recordset. Possible values include: + "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar ttl: Recordset time to live. + :vartype ttl: int + :ivar ip_addresses: The private ip address of the private endpoint. + :vartype ip_addresses: list[str] + """ + + _validation = { + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'record_type': {'key': 'recordType', 'type': 'str'}, + 'record_set_name': {'key': 'recordSetName', 'type': 'str'}, + 'fqdn': {'key': 'fqdn', 'type': 'str'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'ttl': {'key': 'ttl', 'type': 'int'}, + 'ip_addresses': {'key': 'ipAddresses', 'type': '[str]'}, + } + + def __init__( + self, + *, + record_type: Optional[str] = None, + record_set_name: Optional[str] = None, + fqdn: Optional[str] = None, + ttl: Optional[int] = None, + ip_addresses: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword record_type: Resource record type. + :paramtype record_type: str + :keyword record_set_name: Recordset name. + :paramtype record_set_name: str + :keyword fqdn: Fqdn that resolves to private endpoint ip address. + :paramtype fqdn: str + :keyword ttl: Recordset time to live. + :paramtype ttl: int + :keyword ip_addresses: The private ip address of the private endpoint. + :paramtype ip_addresses: list[str] + """ + super(RecordSet, self).__init__(**kwargs) + self.record_type = record_type + self.record_set_name = record_set_name + self.fqdn = fqdn + self.provisioning_state = None + self.ttl = ttl + self.ip_addresses = ip_addresses + + +class ReferencedPublicIpAddress(msrest.serialization.Model): + """Reference to a public IP address. + + :ivar id: The PublicIPAddress Reference. + :vartype id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: The PublicIPAddress Reference. + :paramtype id: str + """ + super(ReferencedPublicIpAddress, self).__init__(**kwargs) + self.id = id + + +class ResourceNavigationLink(SubResource): + """ResourceNavigationLink resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the resource that is unique within a resource group. This name can be used + to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar linked_resource_type: Resource type of the linked resource. + :vartype linked_resource_type: str + :ivar link: Link to the external resource. + :vartype link: str + :ivar provisioning_state: The provisioning state of the resource navigation link resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'linked_resource_type': {'key': 'properties.linkedResourceType', 'type': 'str'}, + 'link': {'key': 'properties.link', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + linked_resource_type: Optional[str] = None, + link: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the resource that is unique within a resource group. This name can be + used to access the resource. + :paramtype name: str + :keyword linked_resource_type: Resource type of the linked resource. + :paramtype linked_resource_type: str + :keyword link: Link to the external resource. + :paramtype link: str + """ + super(ResourceNavigationLink, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.linked_resource_type = linked_resource_type + self.link = link + self.provisioning_state = None + + +class ResourceNavigationLinksListResult(msrest.serialization.Model): + """Response for ResourceNavigationLinks_List operation. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: The resource navigation links in a subnet. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ResourceNavigationLink] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ResourceNavigationLink]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ResourceNavigationLink"]] = None, + **kwargs + ): + """ + :keyword value: The resource navigation links in a subnet. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ResourceNavigationLink] + """ + super(ResourceNavigationLinksListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class RetentionPolicyParameters(msrest.serialization.Model): + """Parameters that define the retention policy for flow log. + + :ivar days: Number of days to retain flow log records. + :vartype days: int + :ivar enabled: Flag to enable/disable retention. + :vartype enabled: bool + """ + + _attribute_map = { + 'days': {'key': 'days', 'type': 'int'}, + 'enabled': {'key': 'enabled', 'type': 'bool'}, + } + + def __init__( + self, + *, + days: Optional[int] = 0, + enabled: Optional[bool] = False, + **kwargs + ): + """ + :keyword days: Number of days to retain flow log records. + :paramtype days: int + :keyword enabled: Flag to enable/disable retention. + :paramtype enabled: bool + """ + super(RetentionPolicyParameters, self).__init__(**kwargs) + self.days = days + self.enabled = enabled + + +class Route(SubResource): + """Route resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: The type of the resource. + :vartype type: str + :ivar address_prefix: The destination CIDR to which the route applies. + :vartype address_prefix: str + :ivar next_hop_type: The type of Azure hop the packet should be sent to. Possible values + include: "VirtualNetworkGateway", "VnetLocal", "Internet", "VirtualAppliance", "None". + :vartype next_hop_type: str or ~azure.mgmt.network.v2021_08_01.models.RouteNextHopType + :ivar next_hop_ip_address: The IP address packets should be forwarded to. Next hop values are + only allowed in routes where the next hop type is VirtualAppliance. + :vartype next_hop_ip_address: str + :ivar provisioning_state: The provisioning state of the route resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar has_bgp_override: A value indicating whether this route overrides overlapping BGP routes + regardless of LPM. + :vartype has_bgp_override: bool + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'address_prefix': {'key': 'properties.addressPrefix', 'type': 'str'}, + 'next_hop_type': {'key': 'properties.nextHopType', 'type': 'str'}, + 'next_hop_ip_address': {'key': 'properties.nextHopIpAddress', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'has_bgp_override': {'key': 'properties.hasBgpOverride', 'type': 'bool'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + type: Optional[str] = None, + address_prefix: Optional[str] = None, + next_hop_type: Optional[Union[str, "RouteNextHopType"]] = None, + next_hop_ip_address: Optional[str] = None, + has_bgp_override: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword type: The type of the resource. + :paramtype type: str + :keyword address_prefix: The destination CIDR to which the route applies. + :paramtype address_prefix: str + :keyword next_hop_type: The type of Azure hop the packet should be sent to. Possible values + include: "VirtualNetworkGateway", "VnetLocal", "Internet", "VirtualAppliance", "None". + :paramtype next_hop_type: str or ~azure.mgmt.network.v2021_08_01.models.RouteNextHopType + :keyword next_hop_ip_address: The IP address packets should be forwarded to. Next hop values + are only allowed in routes where the next hop type is VirtualAppliance. + :paramtype next_hop_ip_address: str + :keyword has_bgp_override: A value indicating whether this route overrides overlapping BGP + routes regardless of LPM. + :paramtype has_bgp_override: bool + """ + super(Route, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = type + self.address_prefix = address_prefix + self.next_hop_type = next_hop_type + self.next_hop_ip_address = next_hop_ip_address + self.provisioning_state = None + self.has_bgp_override = has_bgp_override + + +class RouteFilter(Resource): + """Route Filter Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar rules: Collection of RouteFilterRules contained within a route filter. + :vartype rules: list[~azure.mgmt.network.v2021_08_01.models.RouteFilterRule] + :ivar peerings: A collection of references to express route circuit peerings. + :vartype peerings: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :ivar ipv6_peerings: A collection of references to express route circuit ipv6 peerings. + :vartype ipv6_peerings: list[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :ivar provisioning_state: The provisioning state of the route filter resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'peerings': {'readonly': True}, + 'ipv6_peerings': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'rules': {'key': 'properties.rules', 'type': '[RouteFilterRule]'}, + 'peerings': {'key': 'properties.peerings', 'type': '[ExpressRouteCircuitPeering]'}, + 'ipv6_peerings': {'key': 'properties.ipv6Peerings', 'type': '[ExpressRouteCircuitPeering]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + rules: Optional[List["RouteFilterRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword rules: Collection of RouteFilterRules contained within a route filter. + :paramtype rules: list[~azure.mgmt.network.v2021_08_01.models.RouteFilterRule] + """ + super(RouteFilter, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.rules = rules + self.peerings = None + self.ipv6_peerings = None + self.provisioning_state = None + + +class RouteFilterListResult(msrest.serialization.Model): + """Response for the ListRouteFilters API service call. + + :ivar value: A list of route filters in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.RouteFilter] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[RouteFilter]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["RouteFilter"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of route filters in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.RouteFilter] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(RouteFilterListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class RouteFilterRule(SubResource): + """Route Filter Rule Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar location: Resource location. + :vartype location: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar access: The access type of the rule. Possible values include: "Allow", "Deny". + :vartype access: str or ~azure.mgmt.network.v2021_08_01.models.Access + :ivar route_filter_rule_type: The rule type of the rule. Possible values include: "Community". + :vartype route_filter_rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.RouteFilterRuleType + :ivar communities: The collection for bgp community values to filter on. e.g. + ['12076:5010','12076:5020']. + :vartype communities: list[str] + :ivar provisioning_state: The provisioning state of the route filter rule resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'access': {'key': 'properties.access', 'type': 'str'}, + 'route_filter_rule_type': {'key': 'properties.routeFilterRuleType', 'type': 'str'}, + 'communities': {'key': 'properties.communities', 'type': '[str]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + location: Optional[str] = None, + access: Optional[Union[str, "Access"]] = None, + route_filter_rule_type: Optional[Union[str, "RouteFilterRuleType"]] = None, + communities: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword location: Resource location. + :paramtype location: str + :keyword access: The access type of the rule. Possible values include: "Allow", "Deny". + :paramtype access: str or ~azure.mgmt.network.v2021_08_01.models.Access + :keyword route_filter_rule_type: The rule type of the rule. Possible values include: + "Community". + :paramtype route_filter_rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.RouteFilterRuleType + :keyword communities: The collection for bgp community values to filter on. e.g. + ['12076:5010','12076:5020']. + :paramtype communities: list[str] + """ + super(RouteFilterRule, self).__init__(id=id, **kwargs) + self.name = name + self.location = location + self.etag = None + self.access = access + self.route_filter_rule_type = route_filter_rule_type + self.communities = communities + self.provisioning_state = None + + +class RouteFilterRuleListResult(msrest.serialization.Model): + """Response for the ListRouteFilterRules API service call. + + :ivar value: A list of RouteFilterRules in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.RouteFilterRule] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[RouteFilterRule]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["RouteFilterRule"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of RouteFilterRules in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.RouteFilterRule] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(RouteFilterRuleListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class RouteListResult(msrest.serialization.Model): + """Response for the ListRoute API service call. + + :ivar value: A list of routes in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.Route] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Route]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["Route"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of routes in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.Route] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(RouteListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class RouteTable(Resource): + """Route table resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar routes: Collection of routes contained within a route table. + :vartype routes: list[~azure.mgmt.network.v2021_08_01.models.Route] + :ivar subnets: A collection of references to subnets. + :vartype subnets: list[~azure.mgmt.network.v2021_08_01.models.Subnet] + :ivar disable_bgp_route_propagation: Whether to disable the routes learned by BGP on that route + table. True means disable. + :vartype disable_bgp_route_propagation: bool + :ivar provisioning_state: The provisioning state of the route table resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar resource_guid: The resource GUID property of the route table. + :vartype resource_guid: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'subnets': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'resource_guid': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'routes': {'key': 'properties.routes', 'type': '[Route]'}, + 'subnets': {'key': 'properties.subnets', 'type': '[Subnet]'}, + 'disable_bgp_route_propagation': {'key': 'properties.disableBgpRoutePropagation', 'type': 'bool'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + routes: Optional[List["Route"]] = None, + disable_bgp_route_propagation: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword routes: Collection of routes contained within a route table. + :paramtype routes: list[~azure.mgmt.network.v2021_08_01.models.Route] + :keyword disable_bgp_route_propagation: Whether to disable the routes learned by BGP on that + route table. True means disable. + :paramtype disable_bgp_route_propagation: bool + """ + super(RouteTable, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.routes = routes + self.subnets = None + self.disable_bgp_route_propagation = disable_bgp_route_propagation + self.provisioning_state = None + self.resource_guid = None + + +class RouteTableListResult(msrest.serialization.Model): + """Response for the ListRouteTable API service call. + + :ivar value: A list of route tables in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.RouteTable] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[RouteTable]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["RouteTable"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of route tables in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.RouteTable] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(RouteTableListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class RoutingConfiguration(msrest.serialization.Model): + """Routing Configuration indicating the associated and propagated route tables for this connection. + + :ivar associated_route_table: The resource id RouteTable associated with this + RoutingConfiguration. + :vartype associated_route_table: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar propagated_route_tables: The list of RouteTables to advertise the routes to. + :vartype propagated_route_tables: ~azure.mgmt.network.v2021_08_01.models.PropagatedRouteTable + :ivar vnet_routes: List of routes that control routing from VirtualHub into a virtual network + connection. + :vartype vnet_routes: ~azure.mgmt.network.v2021_08_01.models.VnetRoute + """ + + _attribute_map = { + 'associated_route_table': {'key': 'associatedRouteTable', 'type': 'SubResource'}, + 'propagated_route_tables': {'key': 'propagatedRouteTables', 'type': 'PropagatedRouteTable'}, + 'vnet_routes': {'key': 'vnetRoutes', 'type': 'VnetRoute'}, + } + + def __init__( + self, + *, + associated_route_table: Optional["SubResource"] = None, + propagated_route_tables: Optional["PropagatedRouteTable"] = None, + vnet_routes: Optional["VnetRoute"] = None, + **kwargs + ): + """ + :keyword associated_route_table: The resource id RouteTable associated with this + RoutingConfiguration. + :paramtype associated_route_table: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword propagated_route_tables: The list of RouteTables to advertise the routes to. + :paramtype propagated_route_tables: ~azure.mgmt.network.v2021_08_01.models.PropagatedRouteTable + :keyword vnet_routes: List of routes that control routing from VirtualHub into a virtual + network connection. + :paramtype vnet_routes: ~azure.mgmt.network.v2021_08_01.models.VnetRoute + """ + super(RoutingConfiguration, self).__init__(**kwargs) + self.associated_route_table = associated_route_table + self.propagated_route_tables = propagated_route_tables + self.vnet_routes = vnet_routes + + +class RoutingIntent(SubResource): + """The routing intent child resource of a Virtual hub. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar routing_policies: List of routing policies. + :vartype routing_policies: list[~azure.mgmt.network.v2021_08_01.models.RoutingPolicy] + :ivar provisioning_state: The provisioning state of the RoutingIntent resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'routing_policies': {'key': 'properties.routingPolicies', 'type': '[RoutingPolicy]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + routing_policies: Optional[List["RoutingPolicy"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword routing_policies: List of routing policies. + :paramtype routing_policies: list[~azure.mgmt.network.v2021_08_01.models.RoutingPolicy] + """ + super(RoutingIntent, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.routing_policies = routing_policies + self.provisioning_state = None + + +class RoutingPolicy(msrest.serialization.Model): + """The routing policy object used in a RoutingIntent resource. + + All required parameters must be populated in order to send to Azure. + + :ivar name: Required. The unique name for the routing policy. + :vartype name: str + :ivar destinations: Required. List of all destinations which this routing policy is applicable + to (for example: Internet, PrivateTraffic). + :vartype destinations: list[str] + :ivar next_hop: Required. The next hop resource id on which this routing policy is applicable + to. + :vartype next_hop: str + """ + + _validation = { + 'name': {'required': True}, + 'destinations': {'required': True}, + 'next_hop': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'destinations': {'key': 'destinations', 'type': '[str]'}, + 'next_hop': {'key': 'nextHop', 'type': 'str'}, + } + + def __init__( + self, + *, + name: str, + destinations: List[str], + next_hop: str, + **kwargs + ): + """ + :keyword name: Required. The unique name for the routing policy. + :paramtype name: str + :keyword destinations: Required. List of all destinations which this routing policy is + applicable to (for example: Internet, PrivateTraffic). + :paramtype destinations: list[str] + :keyword next_hop: Required. The next hop resource id on which this routing policy is + applicable to. + :paramtype next_hop: str + """ + super(RoutingPolicy, self).__init__(**kwargs) + self.name = name + self.destinations = destinations + self.next_hop = next_hop + + +class SecurityGroupNetworkInterface(msrest.serialization.Model): + """Network interface and all its associated security rules. + + :ivar id: ID of the network interface. + :vartype id: str + :ivar security_rule_associations: All security rules associated with the network interface. + :vartype security_rule_associations: + ~azure.mgmt.network.v2021_08_01.models.SecurityRuleAssociations + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'security_rule_associations': {'key': 'securityRuleAssociations', 'type': 'SecurityRuleAssociations'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + security_rule_associations: Optional["SecurityRuleAssociations"] = None, + **kwargs + ): + """ + :keyword id: ID of the network interface. + :paramtype id: str + :keyword security_rule_associations: All security rules associated with the network interface. + :paramtype security_rule_associations: + ~azure.mgmt.network.v2021_08_01.models.SecurityRuleAssociations + """ + super(SecurityGroupNetworkInterface, self).__init__(**kwargs) + self.id = id + self.security_rule_associations = security_rule_associations + + +class SecurityGroupViewParameters(msrest.serialization.Model): + """Parameters that define the VM to check security groups for. + + All required parameters must be populated in order to send to Azure. + + :ivar target_resource_id: Required. ID of the target VM. + :vartype target_resource_id: str + """ + + _validation = { + 'target_resource_id': {'required': True}, + } + + _attribute_map = { + 'target_resource_id': {'key': 'targetResourceId', 'type': 'str'}, + } + + def __init__( + self, + *, + target_resource_id: str, + **kwargs + ): + """ + :keyword target_resource_id: Required. ID of the target VM. + :paramtype target_resource_id: str + """ + super(SecurityGroupViewParameters, self).__init__(**kwargs) + self.target_resource_id = target_resource_id + + +class SecurityGroupViewResult(msrest.serialization.Model): + """The information about security rules applied to the specified VM. + + :ivar network_interfaces: List of network interfaces on the specified VM. + :vartype network_interfaces: + list[~azure.mgmt.network.v2021_08_01.models.SecurityGroupNetworkInterface] + """ + + _attribute_map = { + 'network_interfaces': {'key': 'networkInterfaces', 'type': '[SecurityGroupNetworkInterface]'}, + } + + def __init__( + self, + *, + network_interfaces: Optional[List["SecurityGroupNetworkInterface"]] = None, + **kwargs + ): + """ + :keyword network_interfaces: List of network interfaces on the specified VM. + :paramtype network_interfaces: + list[~azure.mgmt.network.v2021_08_01.models.SecurityGroupNetworkInterface] + """ + super(SecurityGroupViewResult, self).__init__(**kwargs) + self.network_interfaces = network_interfaces + + +class SecurityPartnerProvider(Resource): + """Security Partner Provider resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar provisioning_state: The provisioning state of the Security Partner Provider resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar security_provider_name: The security provider name. Possible values include: "ZScaler", + "IBoss", "Checkpoint". + :vartype security_provider_name: str or + ~azure.mgmt.network.v2021_08_01.models.SecurityProviderName + :ivar connection_status: The connection status with the Security Partner Provider. Possible + values include: "Unknown", "PartiallyConnected", "Connected", "NotConnected". + :vartype connection_status: str or + ~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProviderConnectionStatus + :ivar virtual_hub: The virtualHub to which the Security Partner Provider belongs. + :vartype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'connection_status': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'security_provider_name': {'key': 'properties.securityProviderName', 'type': 'str'}, + 'connection_status': {'key': 'properties.connectionStatus', 'type': 'str'}, + 'virtual_hub': {'key': 'properties.virtualHub', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + security_provider_name: Optional[Union[str, "SecurityProviderName"]] = None, + virtual_hub: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword security_provider_name: The security provider name. Possible values include: + "ZScaler", "IBoss", "Checkpoint". + :paramtype security_provider_name: str or + ~azure.mgmt.network.v2021_08_01.models.SecurityProviderName + :keyword virtual_hub: The virtualHub to which the Security Partner Provider belongs. + :paramtype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(SecurityPartnerProvider, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.provisioning_state = None + self.security_provider_name = security_provider_name + self.connection_status = None + self.virtual_hub = virtual_hub + + +class SecurityPartnerProviderListResult(msrest.serialization.Model): + """Response for ListSecurityPartnerProviders API service call. + + :ivar value: List of Security Partner Providers in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[SecurityPartnerProvider]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["SecurityPartnerProvider"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Security Partner Providers in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(SecurityPartnerProviderListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class SecurityRule(SubResource): + """Network security rule. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: The type of the resource. + :vartype type: str + :ivar description: A description for this rule. Restricted to 140 chars. + :vartype description: str + :ivar protocol: Network protocol this rule applies to. Possible values include: "Tcp", "Udp", + "Icmp", "Esp", "*", "Ah". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleProtocol + :ivar source_port_range: The source port or range. Integer or range between 0 and 65535. + Asterisk '*' can also be used to match all ports. + :vartype source_port_range: str + :ivar destination_port_range: The destination port or range. Integer or range between 0 and + 65535. Asterisk '*' can also be used to match all ports. + :vartype destination_port_range: str + :ivar source_address_prefix: The CIDR or source IP range. Asterisk '*' can also be used to + match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' + can also be used. If this is an ingress rule, specifies where network traffic originates from. + :vartype source_address_prefix: str + :ivar source_address_prefixes: The CIDR or source IP ranges. + :vartype source_address_prefixes: list[str] + :ivar source_application_security_groups: The application security group specified as source. + :vartype source_application_security_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :ivar destination_address_prefix: The destination address prefix. CIDR or destination IP range. + Asterisk '*' can also be used to match all source IPs. Default tags such as 'VirtualNetwork', + 'AzureLoadBalancer' and 'Internet' can also be used. + :vartype destination_address_prefix: str + :ivar destination_address_prefixes: The destination address prefixes. CIDR or destination IP + ranges. + :vartype destination_address_prefixes: list[str] + :ivar destination_application_security_groups: The application security group specified as + destination. + :vartype destination_application_security_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :ivar source_port_ranges: The source port ranges. + :vartype source_port_ranges: list[str] + :ivar destination_port_ranges: The destination port ranges. + :vartype destination_port_ranges: list[str] + :ivar access: The network traffic is allowed or denied. Possible values include: "Allow", + "Deny". + :vartype access: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleAccess + :ivar priority: The priority of the rule. The value can be between 100 and 4096. The priority + number must be unique for each rule in the collection. The lower the priority number, the + higher the priority of the rule. + :vartype priority: int + :ivar direction: The direction of the rule. The direction specifies if rule will be evaluated + on incoming or outgoing traffic. Possible values include: "Inbound", "Outbound". + :vartype direction: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleDirection + :ivar provisioning_state: The provisioning state of the security rule resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'description': {'key': 'properties.description', 'type': 'str'}, + 'protocol': {'key': 'properties.protocol', 'type': 'str'}, + 'source_port_range': {'key': 'properties.sourcePortRange', 'type': 'str'}, + 'destination_port_range': {'key': 'properties.destinationPortRange', 'type': 'str'}, + 'source_address_prefix': {'key': 'properties.sourceAddressPrefix', 'type': 'str'}, + 'source_address_prefixes': {'key': 'properties.sourceAddressPrefixes', 'type': '[str]'}, + 'source_application_security_groups': {'key': 'properties.sourceApplicationSecurityGroups', 'type': '[ApplicationSecurityGroup]'}, + 'destination_address_prefix': {'key': 'properties.destinationAddressPrefix', 'type': 'str'}, + 'destination_address_prefixes': {'key': 'properties.destinationAddressPrefixes', 'type': '[str]'}, + 'destination_application_security_groups': {'key': 'properties.destinationApplicationSecurityGroups', 'type': '[ApplicationSecurityGroup]'}, + 'source_port_ranges': {'key': 'properties.sourcePortRanges', 'type': '[str]'}, + 'destination_port_ranges': {'key': 'properties.destinationPortRanges', 'type': '[str]'}, + 'access': {'key': 'properties.access', 'type': 'str'}, + 'priority': {'key': 'properties.priority', 'type': 'int'}, + 'direction': {'key': 'properties.direction', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + type: Optional[str] = None, + description: Optional[str] = None, + protocol: Optional[Union[str, "SecurityRuleProtocol"]] = None, + source_port_range: Optional[str] = None, + destination_port_range: Optional[str] = None, + source_address_prefix: Optional[str] = None, + source_address_prefixes: Optional[List[str]] = None, + source_application_security_groups: Optional[List["ApplicationSecurityGroup"]] = None, + destination_address_prefix: Optional[str] = None, + destination_address_prefixes: Optional[List[str]] = None, + destination_application_security_groups: Optional[List["ApplicationSecurityGroup"]] = None, + source_port_ranges: Optional[List[str]] = None, + destination_port_ranges: Optional[List[str]] = None, + access: Optional[Union[str, "SecurityRuleAccess"]] = None, + priority: Optional[int] = None, + direction: Optional[Union[str, "SecurityRuleDirection"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword type: The type of the resource. + :paramtype type: str + :keyword description: A description for this rule. Restricted to 140 chars. + :paramtype description: str + :keyword protocol: Network protocol this rule applies to. Possible values include: "Tcp", + "Udp", "Icmp", "Esp", "*", "Ah". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleProtocol + :keyword source_port_range: The source port or range. Integer or range between 0 and 65535. + Asterisk '*' can also be used to match all ports. + :paramtype source_port_range: str + :keyword destination_port_range: The destination port or range. Integer or range between 0 and + 65535. Asterisk '*' can also be used to match all ports. + :paramtype destination_port_range: str + :keyword source_address_prefix: The CIDR or source IP range. Asterisk '*' can also be used to + match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' + can also be used. If this is an ingress rule, specifies where network traffic originates from. + :paramtype source_address_prefix: str + :keyword source_address_prefixes: The CIDR or source IP ranges. + :paramtype source_address_prefixes: list[str] + :keyword source_application_security_groups: The application security group specified as + source. + :paramtype source_application_security_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :keyword destination_address_prefix: The destination address prefix. CIDR or destination IP + range. Asterisk '*' can also be used to match all source IPs. Default tags such as + 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' can also be used. + :paramtype destination_address_prefix: str + :keyword destination_address_prefixes: The destination address prefixes. CIDR or destination IP + ranges. + :paramtype destination_address_prefixes: list[str] + :keyword destination_application_security_groups: The application security group specified as + destination. + :paramtype destination_application_security_groups: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :keyword source_port_ranges: The source port ranges. + :paramtype source_port_ranges: list[str] + :keyword destination_port_ranges: The destination port ranges. + :paramtype destination_port_ranges: list[str] + :keyword access: The network traffic is allowed or denied. Possible values include: "Allow", + "Deny". + :paramtype access: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleAccess + :keyword priority: The priority of the rule. The value can be between 100 and 4096. The + priority number must be unique for each rule in the collection. The lower the priority number, + the higher the priority of the rule. + :paramtype priority: int + :keyword direction: The direction of the rule. The direction specifies if rule will be + evaluated on incoming or outgoing traffic. Possible values include: "Inbound", "Outbound". + :paramtype direction: str or ~azure.mgmt.network.v2021_08_01.models.SecurityRuleDirection + """ + super(SecurityRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = type + self.description = description + self.protocol = protocol + self.source_port_range = source_port_range + self.destination_port_range = destination_port_range + self.source_address_prefix = source_address_prefix + self.source_address_prefixes = source_address_prefixes + self.source_application_security_groups = source_application_security_groups + self.destination_address_prefix = destination_address_prefix + self.destination_address_prefixes = destination_address_prefixes + self.destination_application_security_groups = destination_application_security_groups + self.source_port_ranges = source_port_ranges + self.destination_port_ranges = destination_port_ranges + self.access = access + self.priority = priority + self.direction = direction + self.provisioning_state = None + + +class SecurityRuleAssociations(msrest.serialization.Model): + """All security rules associated with the network interface. + + :ivar network_interface_association: Network interface and it's custom security rules. + :vartype network_interface_association: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceAssociation + :ivar subnet_association: Subnet and it's custom security rules. + :vartype subnet_association: ~azure.mgmt.network.v2021_08_01.models.SubnetAssociation + :ivar default_security_rules: Collection of default security rules of the network security + group. + :vartype default_security_rules: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + :ivar effective_security_rules: Collection of effective security rules. + :vartype effective_security_rules: + list[~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityRule] + """ + + _attribute_map = { + 'network_interface_association': {'key': 'networkInterfaceAssociation', 'type': 'NetworkInterfaceAssociation'}, + 'subnet_association': {'key': 'subnetAssociation', 'type': 'SubnetAssociation'}, + 'default_security_rules': {'key': 'defaultSecurityRules', 'type': '[SecurityRule]'}, + 'effective_security_rules': {'key': 'effectiveSecurityRules', 'type': '[EffectiveNetworkSecurityRule]'}, + } + + def __init__( + self, + *, + network_interface_association: Optional["NetworkInterfaceAssociation"] = None, + subnet_association: Optional["SubnetAssociation"] = None, + default_security_rules: Optional[List["SecurityRule"]] = None, + effective_security_rules: Optional[List["EffectiveNetworkSecurityRule"]] = None, + **kwargs + ): + """ + :keyword network_interface_association: Network interface and it's custom security rules. + :paramtype network_interface_association: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceAssociation + :keyword subnet_association: Subnet and it's custom security rules. + :paramtype subnet_association: ~azure.mgmt.network.v2021_08_01.models.SubnetAssociation + :keyword default_security_rules: Collection of default security rules of the network security + group. + :paramtype default_security_rules: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + :keyword effective_security_rules: Collection of effective security rules. + :paramtype effective_security_rules: + list[~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityRule] + """ + super(SecurityRuleAssociations, self).__init__(**kwargs) + self.network_interface_association = network_interface_association + self.subnet_association = subnet_association + self.default_security_rules = default_security_rules + self.effective_security_rules = effective_security_rules + + +class SecurityRuleListResult(msrest.serialization.Model): + """Response for ListSecurityRule API service call. Retrieves all security rules that belongs to a network security group. + + :ivar value: The security rules in a network security group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[SecurityRule]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["SecurityRule"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The security rules in a network security group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(SecurityRuleListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ServiceAssociationLink(SubResource): + """ServiceAssociationLink resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the resource that is unique within a resource group. This name can be used + to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar linked_resource_type: Resource type of the linked resource. + :vartype linked_resource_type: str + :ivar link: Link to the external resource. + :vartype link: str + :ivar provisioning_state: The provisioning state of the service association link resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar allow_delete: If true, the resource can be deleted. + :vartype allow_delete: bool + :ivar locations: A list of locations. + :vartype locations: list[str] + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'linked_resource_type': {'key': 'properties.linkedResourceType', 'type': 'str'}, + 'link': {'key': 'properties.link', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'allow_delete': {'key': 'properties.allowDelete', 'type': 'bool'}, + 'locations': {'key': 'properties.locations', 'type': '[str]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + linked_resource_type: Optional[str] = None, + link: Optional[str] = None, + allow_delete: Optional[bool] = None, + locations: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the resource that is unique within a resource group. This name can be + used to access the resource. + :paramtype name: str + :keyword linked_resource_type: Resource type of the linked resource. + :paramtype linked_resource_type: str + :keyword link: Link to the external resource. + :paramtype link: str + :keyword allow_delete: If true, the resource can be deleted. + :paramtype allow_delete: bool + :keyword locations: A list of locations. + :paramtype locations: list[str] + """ + super(ServiceAssociationLink, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.linked_resource_type = linked_resource_type + self.link = link + self.provisioning_state = None + self.allow_delete = allow_delete + self.locations = locations + + +class ServiceAssociationLinksListResult(msrest.serialization.Model): + """Response for ServiceAssociationLinks_List operation. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: The service association links in a subnet. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ServiceAssociationLink] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ServiceAssociationLink]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ServiceAssociationLink"]] = None, + **kwargs + ): + """ + :keyword value: The service association links in a subnet. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ServiceAssociationLink] + """ + super(ServiceAssociationLinksListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class ServiceEndpointPolicy(Resource): + """Service End point policy resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar kind: Kind of service endpoint policy. This is metadata used for the Azure portal + experience. + :vartype kind: str + :ivar service_endpoint_policy_definitions: A collection of service endpoint policy definitions + of the service endpoint policy. + :vartype service_endpoint_policy_definitions: + list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition] + :ivar subnets: A collection of references to subnets. + :vartype subnets: list[~azure.mgmt.network.v2021_08_01.models.Subnet] + :ivar resource_guid: The resource GUID property of the service endpoint policy resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the service endpoint policy resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar service_alias: The alias indicating if the policy belongs to a service. + :vartype service_alias: str + :ivar contextual_service_endpoint_policies: A collection of contextual service endpoint policy. + :vartype contextual_service_endpoint_policies: list[str] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'kind': {'readonly': True}, + 'subnets': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'kind': {'key': 'kind', 'type': 'str'}, + 'service_endpoint_policy_definitions': {'key': 'properties.serviceEndpointPolicyDefinitions', 'type': '[ServiceEndpointPolicyDefinition]'}, + 'subnets': {'key': 'properties.subnets', 'type': '[Subnet]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'service_alias': {'key': 'properties.serviceAlias', 'type': 'str'}, + 'contextual_service_endpoint_policies': {'key': 'properties.contextualServiceEndpointPolicies', 'type': '[str]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + service_endpoint_policy_definitions: Optional[List["ServiceEndpointPolicyDefinition"]] = None, + service_alias: Optional[str] = None, + contextual_service_endpoint_policies: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword service_endpoint_policy_definitions: A collection of service endpoint policy + definitions of the service endpoint policy. + :paramtype service_endpoint_policy_definitions: + list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition] + :keyword service_alias: The alias indicating if the policy belongs to a service. + :paramtype service_alias: str + :keyword contextual_service_endpoint_policies: A collection of contextual service endpoint + policy. + :paramtype contextual_service_endpoint_policies: list[str] + """ + super(ServiceEndpointPolicy, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.kind = None + self.service_endpoint_policy_definitions = service_endpoint_policy_definitions + self.subnets = None + self.resource_guid = None + self.provisioning_state = None + self.service_alias = service_alias + self.contextual_service_endpoint_policies = contextual_service_endpoint_policies + + +class ServiceEndpointPolicyDefinition(SubResource): + """Service Endpoint policy definitions. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: The type of the resource. + :vartype type: str + :ivar description: A description for this rule. Restricted to 140 chars. + :vartype description: str + :ivar service: Service endpoint name. + :vartype service: str + :ivar service_resources: A list of service resources. + :vartype service_resources: list[str] + :ivar provisioning_state: The provisioning state of the service endpoint policy definition + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'description': {'key': 'properties.description', 'type': 'str'}, + 'service': {'key': 'properties.service', 'type': 'str'}, + 'service_resources': {'key': 'properties.serviceResources', 'type': '[str]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + type: Optional[str] = None, + description: Optional[str] = None, + service: Optional[str] = None, + service_resources: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword type: The type of the resource. + :paramtype type: str + :keyword description: A description for this rule. Restricted to 140 chars. + :paramtype description: str + :keyword service: Service endpoint name. + :paramtype service: str + :keyword service_resources: A list of service resources. + :paramtype service_resources: list[str] + """ + super(ServiceEndpointPolicyDefinition, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = type + self.description = description + self.service = service + self.service_resources = service_resources + self.provisioning_state = None + + +class ServiceEndpointPolicyDefinitionListResult(msrest.serialization.Model): + """Response for ListServiceEndpointPolicyDefinition API service call. Retrieves all service endpoint policy definition that belongs to a service endpoint policy. + + :ivar value: The service endpoint policy definition in a service endpoint policy. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ServiceEndpointPolicyDefinition]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ServiceEndpointPolicyDefinition"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The service endpoint policy definition in a service endpoint policy. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(ServiceEndpointPolicyDefinitionListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ServiceEndpointPolicyListResult(msrest.serialization.Model): + """Response for ListServiceEndpointPolicies API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of ServiceEndpointPolicy resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ServiceEndpointPolicy]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ServiceEndpointPolicy"]] = None, + **kwargs + ): + """ + :keyword value: A list of ServiceEndpointPolicy resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy] + """ + super(ServiceEndpointPolicyListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class ServiceEndpointPropertiesFormat(msrest.serialization.Model): + """The service endpoint properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar service: The type of the endpoint service. + :vartype service: str + :ivar locations: A list of locations. + :vartype locations: list[str] + :ivar provisioning_state: The provisioning state of the service endpoint resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'service': {'key': 'service', 'type': 'str'}, + 'locations': {'key': 'locations', 'type': '[str]'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + service: Optional[str] = None, + locations: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword service: The type of the endpoint service. + :paramtype service: str + :keyword locations: A list of locations. + :paramtype locations: list[str] + """ + super(ServiceEndpointPropertiesFormat, self).__init__(**kwargs) + self.service = service + self.locations = locations + self.provisioning_state = None + + +class ServiceTagInformation(msrest.serialization.Model): + """The service tag information. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar properties: Properties of the service tag information. + :vartype properties: + ~azure.mgmt.network.v2021_08_01.models.ServiceTagInformationPropertiesFormat + :ivar name: The name of service tag. + :vartype name: str + :ivar id: The ID of service tag. + :vartype id: str + :ivar service_tag_change_number: The iteration number of service tag object for region. + :vartype service_tag_change_number: str + """ + + _validation = { + 'properties': {'readonly': True}, + 'name': {'readonly': True}, + 'id': {'readonly': True}, + 'service_tag_change_number': {'readonly': True}, + } + + _attribute_map = { + 'properties': {'key': 'properties', 'type': 'ServiceTagInformationPropertiesFormat'}, + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'service_tag_change_number': {'key': 'serviceTagChangeNumber', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(ServiceTagInformation, self).__init__(**kwargs) + self.properties = None + self.name = None + self.id = None + self.service_tag_change_number = None + + +class ServiceTagInformationListResult(msrest.serialization.Model): + """Response for Get ServiceTagInformation API service call. Retrieves the list of service tag information resources. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: The list of service tag information resources. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.ServiceTagInformation] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ServiceTagInformation]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["ServiceTagInformation"]] = None, + **kwargs + ): + """ + :keyword value: The list of service tag information resources. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.ServiceTagInformation] + """ + super(ServiceTagInformationListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class ServiceTagInformationPropertiesFormat(msrest.serialization.Model): + """Properties of the service tag information. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar change_number: The iteration number of service tag. + :vartype change_number: str + :ivar region: The region of service tag. + :vartype region: str + :ivar system_service: The name of system service. + :vartype system_service: str + :ivar address_prefixes: The list of IP address prefixes. + :vartype address_prefixes: list[str] + :ivar state: The state of the service tag. + :vartype state: str + """ + + _validation = { + 'change_number': {'readonly': True}, + 'region': {'readonly': True}, + 'system_service': {'readonly': True}, + 'address_prefixes': {'readonly': True}, + 'state': {'readonly': True}, + } + + _attribute_map = { + 'change_number': {'key': 'changeNumber', 'type': 'str'}, + 'region': {'key': 'region', 'type': 'str'}, + 'system_service': {'key': 'systemService', 'type': 'str'}, + 'address_prefixes': {'key': 'addressPrefixes', 'type': '[str]'}, + 'state': {'key': 'state', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(ServiceTagInformationPropertiesFormat, self).__init__(**kwargs) + self.change_number = None + self.region = None + self.system_service = None + self.address_prefixes = None + self.state = None + + +class ServiceTagsListResult(msrest.serialization.Model): + """Response for the ListServiceTags API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: The name of the cloud. + :vartype name: str + :ivar id: The ID of the cloud. + :vartype id: str + :ivar type: The azure resource type. + :vartype type: str + :ivar change_number: The iteration number. + :vartype change_number: str + :ivar cloud: The name of the cloud. + :vartype cloud: str + :ivar values: The list of service tag information resources. + :vartype values: list[~azure.mgmt.network.v2021_08_01.models.ServiceTagInformation] + :ivar next_link: The URL to get next page of service tag information resources. + :vartype next_link: str + """ + + _validation = { + 'name': {'readonly': True}, + 'id': {'readonly': True}, + 'type': {'readonly': True}, + 'change_number': {'readonly': True}, + 'cloud': {'readonly': True}, + 'values': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'change_number': {'key': 'changeNumber', 'type': 'str'}, + 'cloud': {'key': 'cloud', 'type': 'str'}, + 'values': {'key': 'values', 'type': '[ServiceTagInformation]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(ServiceTagsListResult, self).__init__(**kwargs) + self.name = None + self.id = None + self.type = None + self.change_number = None + self.cloud = None + self.values = None + self.next_link = None + + +class SessionIds(msrest.serialization.Model): + """List of session IDs. + + :ivar session_ids: List of session IDs. + :vartype session_ids: list[str] + """ + + _attribute_map = { + 'session_ids': {'key': 'sessionIds', 'type': '[str]'}, + } + + def __init__( + self, + *, + session_ids: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword session_ids: List of session IDs. + :paramtype session_ids: list[str] + """ + super(SessionIds, self).__init__(**kwargs) + self.session_ids = session_ids + + +class SignatureOverridesFilterValuesQuery(msrest.serialization.Model): + """Describes the filter values possibles for a given column. + + :ivar filter_name: Describes the name of the column which values will be returned. + :vartype filter_name: str + """ + + _attribute_map = { + 'filter_name': {'key': 'filterName', 'type': 'str'}, + } + + def __init__( + self, + *, + filter_name: Optional[str] = None, + **kwargs + ): + """ + :keyword filter_name: Describes the name of the column which values will be returned. + :paramtype filter_name: str + """ + super(SignatureOverridesFilterValuesQuery, self).__init__(**kwargs) + self.filter_name = filter_name + + +class SignatureOverridesFilterValuesResponse(msrest.serialization.Model): + """Describes the list of all possible values for a specific filter value. + + :ivar filter_values: Describes the possible values. + :vartype filter_values: list[str] + """ + + _attribute_map = { + 'filter_values': {'key': 'filterValues', 'type': '[str]'}, + } + + def __init__( + self, + *, + filter_values: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword filter_values: Describes the possible values. + :paramtype filter_values: list[str] + """ + super(SignatureOverridesFilterValuesResponse, self).__init__(**kwargs) + self.filter_values = filter_values + + +class SignaturesOverrides(msrest.serialization.Model): + """Contains all specific policy signatures overrides for the IDPS. + + :ivar name: Contains the name of the resource (default). + :vartype name: str + :ivar id: Will contain the resource id of the signature override resource. + :vartype id: str + :ivar type: Will contain the type of the resource: + Microsoft.Network/firewallPolicies/intrusionDetectionSignaturesOverrides. + :vartype type: str + :ivar properties: Will contain the properties of the resource (the actual signature overrides). + :vartype properties: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverridesProperties + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'SignaturesOverridesProperties'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + id: Optional[str] = None, + type: Optional[str] = None, + properties: Optional["SignaturesOverridesProperties"] = None, + **kwargs + ): + """ + :keyword name: Contains the name of the resource (default). + :paramtype name: str + :keyword id: Will contain the resource id of the signature override resource. + :paramtype id: str + :keyword type: Will contain the type of the resource: + Microsoft.Network/firewallPolicies/intrusionDetectionSignaturesOverrides. + :paramtype type: str + :keyword properties: Will contain the properties of the resource (the actual signature + overrides). + :paramtype properties: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverridesProperties + """ + super(SignaturesOverrides, self).__init__(**kwargs) + self.name = name + self.id = id + self.type = type + self.properties = properties + + +class SignaturesOverridesList(msrest.serialization.Model): + """Describes an object containing an array with a single item. + + :ivar value: Describes a list consisting exactly one item describing the policy's signature + override status. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[SignaturesOverrides]'}, + } + + def __init__( + self, + *, + value: Optional[List["SignaturesOverrides"]] = None, + **kwargs + ): + """ + :keyword value: Describes a list consisting exactly one item describing the policy's signature + override status. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides] + """ + super(SignaturesOverridesList, self).__init__(**kwargs) + self.value = value + + +class SignaturesOverridesProperties(msrest.serialization.Model): + """Will contain the properties of the resource (the actual signature overrides). + + :ivar signatures: Dictionary of :code:``. + :vartype signatures: dict[str, str] + """ + + _attribute_map = { + 'signatures': {'key': 'signatures', 'type': '{str}'}, + } + + def __init__( + self, + *, + signatures: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword signatures: Dictionary of :code:``. + :paramtype signatures: dict[str, str] + """ + super(SignaturesOverridesProperties, self).__init__(**kwargs) + self.signatures = signatures + + +class SingleQueryResult(msrest.serialization.Model): + """SingleQueryResult. + + :ivar signature_id: The ID of the signature. + :vartype signature_id: int + :ivar mode: The current mode enforced, 0 - Disabled, 1 - Alert, 2 -Deny. Possible values + include: 0, 1, 2. + :vartype mode: int or ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIDPSSignatureMode + :ivar severity: Describes the severity of signature: 1 - Low, 2 - Medium, 3 - High. Possible + values include: 1, 2, 3. + :vartype severity: int or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIDPSSignatureSeverity + :ivar direction: Describes in which direction signature is being enforced: 0 - Inbound, 1 - + OutBound, 2 - Bidirectional. Possible values include: 0, 1, 2. + :vartype direction: int or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIDPSSignatureDirection + :ivar group: Describes the groups the signature belongs to. + :vartype group: str + :ivar description: Describes what is the signature enforces. + :vartype description: str + :ivar protocol: Describes the protocol the signatures is being enforced in. + :vartype protocol: str + :ivar source_ports: Describes the list of source ports related to this signature. + :vartype source_ports: list[str] + :ivar destination_ports: Describes the list of destination ports related to this signature. + :vartype destination_ports: list[str] + :ivar last_updated: Describes the last updated time of the signature (provided from 3rd party + vendor). + :vartype last_updated: str + :ivar inherited_from_parent_policy: Describes if this override is inherited from base policy or + not. + :vartype inherited_from_parent_policy: bool + """ + + _attribute_map = { + 'signature_id': {'key': 'signatureId', 'type': 'int'}, + 'mode': {'key': 'mode', 'type': 'int'}, + 'severity': {'key': 'severity', 'type': 'int'}, + 'direction': {'key': 'direction', 'type': 'int'}, + 'group': {'key': 'group', 'type': 'str'}, + 'description': {'key': 'description', 'type': 'str'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'source_ports': {'key': 'sourcePorts', 'type': '[str]'}, + 'destination_ports': {'key': 'destinationPorts', 'type': '[str]'}, + 'last_updated': {'key': 'lastUpdated', 'type': 'str'}, + 'inherited_from_parent_policy': {'key': 'inheritedFromParentPolicy', 'type': 'bool'}, + } + + def __init__( + self, + *, + signature_id: Optional[int] = None, + mode: Optional[Union[int, "FirewallPolicyIDPSSignatureMode"]] = None, + severity: Optional[Union[int, "FirewallPolicyIDPSSignatureSeverity"]] = None, + direction: Optional[Union[int, "FirewallPolicyIDPSSignatureDirection"]] = None, + group: Optional[str] = None, + description: Optional[str] = None, + protocol: Optional[str] = None, + source_ports: Optional[List[str]] = None, + destination_ports: Optional[List[str]] = None, + last_updated: Optional[str] = None, + inherited_from_parent_policy: Optional[bool] = None, + **kwargs + ): + """ + :keyword signature_id: The ID of the signature. + :paramtype signature_id: int + :keyword mode: The current mode enforced, 0 - Disabled, 1 - Alert, 2 -Deny. Possible values + include: 0, 1, 2. + :paramtype mode: int or ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIDPSSignatureMode + :keyword severity: Describes the severity of signature: 1 - Low, 2 - Medium, 3 - High. Possible + values include: 1, 2, 3. + :paramtype severity: int or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIDPSSignatureSeverity + :keyword direction: Describes in which direction signature is being enforced: 0 - Inbound, 1 - + OutBound, 2 - Bidirectional. Possible values include: 0, 1, 2. + :paramtype direction: int or + ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyIDPSSignatureDirection + :keyword group: Describes the groups the signature belongs to. + :paramtype group: str + :keyword description: Describes what is the signature enforces. + :paramtype description: str + :keyword protocol: Describes the protocol the signatures is being enforced in. + :paramtype protocol: str + :keyword source_ports: Describes the list of source ports related to this signature. + :paramtype source_ports: list[str] + :keyword destination_ports: Describes the list of destination ports related to this signature. + :paramtype destination_ports: list[str] + :keyword last_updated: Describes the last updated time of the signature (provided from 3rd + party vendor). + :paramtype last_updated: str + :keyword inherited_from_parent_policy: Describes if this override is inherited from base policy + or not. + :paramtype inherited_from_parent_policy: bool + """ + super(SingleQueryResult, self).__init__(**kwargs) + self.signature_id = signature_id + self.mode = mode + self.severity = severity + self.direction = direction + self.group = group + self.description = description + self.protocol = protocol + self.source_ports = source_ports + self.destination_ports = destination_ports + self.last_updated = last_updated + self.inherited_from_parent_policy = inherited_from_parent_policy + + +class Sku(msrest.serialization.Model): + """The sku of this Bastion Host. + + :ivar name: The name of this Bastion Host. Possible values include: "Basic", "Standard". + Default value: "Standard". + :vartype name: str or ~azure.mgmt.network.v2021_08_01.models.BastionHostSkuName + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[Union[str, "BastionHostSkuName"]] = "Standard", + **kwargs + ): + """ + :keyword name: The name of this Bastion Host. Possible values include: "Basic", "Standard". + Default value: "Standard". + :paramtype name: str or ~azure.mgmt.network.v2021_08_01.models.BastionHostSkuName + """ + super(Sku, self).__init__(**kwargs) + self.name = name + + +class StaticRoute(msrest.serialization.Model): + """List of all Static Routes. + + :ivar name: The name of the StaticRoute that is unique within a VnetRoute. + :vartype name: str + :ivar address_prefixes: List of all address prefixes. + :vartype address_prefixes: list[str] + :ivar next_hop_ip_address: The ip address of the next hop. + :vartype next_hop_ip_address: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'address_prefixes': {'key': 'addressPrefixes', 'type': '[str]'}, + 'next_hop_ip_address': {'key': 'nextHopIpAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + address_prefixes: Optional[List[str]] = None, + next_hop_ip_address: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name of the StaticRoute that is unique within a VnetRoute. + :paramtype name: str + :keyword address_prefixes: List of all address prefixes. + :paramtype address_prefixes: list[str] + :keyword next_hop_ip_address: The ip address of the next hop. + :paramtype next_hop_ip_address: str + """ + super(StaticRoute, self).__init__(**kwargs) + self.name = name + self.address_prefixes = address_prefixes + self.next_hop_ip_address = next_hop_ip_address + + +class Subnet(SubResource): + """Subnet in a virtual network resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar address_prefix: The address prefix for the subnet. + :vartype address_prefix: str + :ivar address_prefixes: List of address prefixes for the subnet. + :vartype address_prefixes: list[str] + :ivar network_security_group: The reference to the NetworkSecurityGroup resource. + :vartype network_security_group: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :ivar route_table: The reference to the RouteTable resource. + :vartype route_table: ~azure.mgmt.network.v2021_08_01.models.RouteTable + :ivar nat_gateway: Nat gateway associated with this subnet. + :vartype nat_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar service_endpoints: An array of service endpoints. + :vartype service_endpoints: + list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPropertiesFormat] + :ivar service_endpoint_policies: An array of service endpoint policies. + :vartype service_endpoint_policies: + list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy] + :ivar private_endpoints: An array of references to private endpoints. + :vartype private_endpoints: list[~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint] + :ivar ip_configurations: An array of references to the network interface IP configurations + using subnet. + :vartype ip_configurations: list[~azure.mgmt.network.v2021_08_01.models.IPConfiguration] + :ivar ip_configuration_profiles: Array of IP configuration profiles which reference this + subnet. + :vartype ip_configuration_profiles: + list[~azure.mgmt.network.v2021_08_01.models.IPConfigurationProfile] + :ivar ip_allocations: Array of IpAllocation which reference this subnet. + :vartype ip_allocations: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar resource_navigation_links: An array of references to the external resources using subnet. + :vartype resource_navigation_links: + list[~azure.mgmt.network.v2021_08_01.models.ResourceNavigationLink] + :ivar service_association_links: An array of references to services injecting into this subnet. + :vartype service_association_links: + list[~azure.mgmt.network.v2021_08_01.models.ServiceAssociationLink] + :ivar delegations: An array of references to the delegations on the subnet. + :vartype delegations: list[~azure.mgmt.network.v2021_08_01.models.Delegation] + :ivar purpose: A read-only string identifying the intention of use for this subnet based on + delegations and other user-defined properties. + :vartype purpose: str + :ivar provisioning_state: The provisioning state of the subnet resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar private_endpoint_network_policies: Enable or Disable apply network policies on private + end point in the subnet. Possible values include: "Enabled", "Disabled". Default value: + "Enabled". + :vartype private_endpoint_network_policies: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPrivateEndpointNetworkPolicies + :ivar private_link_service_network_policies: Enable or Disable apply network policies on + private link service in the subnet. Possible values include: "Enabled", "Disabled". Default + value: "Enabled". + :vartype private_link_service_network_policies: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPrivateLinkServiceNetworkPolicies + :ivar application_gateway_ip_configurations: Application gateway IP configurations of virtual + network resource. + :vartype application_gateway_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayIPConfiguration] + """ + + _validation = { + 'etag': {'readonly': True}, + 'private_endpoints': {'readonly': True}, + 'ip_configurations': {'readonly': True}, + 'ip_configuration_profiles': {'readonly': True}, + 'resource_navigation_links': {'readonly': True}, + 'service_association_links': {'readonly': True}, + 'purpose': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'address_prefix': {'key': 'properties.addressPrefix', 'type': 'str'}, + 'address_prefixes': {'key': 'properties.addressPrefixes', 'type': '[str]'}, + 'network_security_group': {'key': 'properties.networkSecurityGroup', 'type': 'NetworkSecurityGroup'}, + 'route_table': {'key': 'properties.routeTable', 'type': 'RouteTable'}, + 'nat_gateway': {'key': 'properties.natGateway', 'type': 'SubResource'}, + 'service_endpoints': {'key': 'properties.serviceEndpoints', 'type': '[ServiceEndpointPropertiesFormat]'}, + 'service_endpoint_policies': {'key': 'properties.serviceEndpointPolicies', 'type': '[ServiceEndpointPolicy]'}, + 'private_endpoints': {'key': 'properties.privateEndpoints', 'type': '[PrivateEndpoint]'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[IPConfiguration]'}, + 'ip_configuration_profiles': {'key': 'properties.ipConfigurationProfiles', 'type': '[IPConfigurationProfile]'}, + 'ip_allocations': {'key': 'properties.ipAllocations', 'type': '[SubResource]'}, + 'resource_navigation_links': {'key': 'properties.resourceNavigationLinks', 'type': '[ResourceNavigationLink]'}, + 'service_association_links': {'key': 'properties.serviceAssociationLinks', 'type': '[ServiceAssociationLink]'}, + 'delegations': {'key': 'properties.delegations', 'type': '[Delegation]'}, + 'purpose': {'key': 'properties.purpose', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'private_endpoint_network_policies': {'key': 'properties.privateEndpointNetworkPolicies', 'type': 'str'}, + 'private_link_service_network_policies': {'key': 'properties.privateLinkServiceNetworkPolicies', 'type': 'str'}, + 'application_gateway_ip_configurations': {'key': 'properties.applicationGatewayIpConfigurations', 'type': '[ApplicationGatewayIPConfiguration]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + type: Optional[str] = None, + address_prefix: Optional[str] = None, + address_prefixes: Optional[List[str]] = None, + network_security_group: Optional["NetworkSecurityGroup"] = None, + route_table: Optional["RouteTable"] = None, + nat_gateway: Optional["SubResource"] = None, + service_endpoints: Optional[List["ServiceEndpointPropertiesFormat"]] = None, + service_endpoint_policies: Optional[List["ServiceEndpointPolicy"]] = None, + ip_allocations: Optional[List["SubResource"]] = None, + delegations: Optional[List["Delegation"]] = None, + private_endpoint_network_policies: Optional[Union[str, "VirtualNetworkPrivateEndpointNetworkPolicies"]] = "Enabled", + private_link_service_network_policies: Optional[Union[str, "VirtualNetworkPrivateLinkServiceNetworkPolicies"]] = "Enabled", + application_gateway_ip_configurations: Optional[List["ApplicationGatewayIPConfiguration"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword type: Resource type. + :paramtype type: str + :keyword address_prefix: The address prefix for the subnet. + :paramtype address_prefix: str + :keyword address_prefixes: List of address prefixes for the subnet. + :paramtype address_prefixes: list[str] + :keyword network_security_group: The reference to the NetworkSecurityGroup resource. + :paramtype network_security_group: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :keyword route_table: The reference to the RouteTable resource. + :paramtype route_table: ~azure.mgmt.network.v2021_08_01.models.RouteTable + :keyword nat_gateway: Nat gateway associated with this subnet. + :paramtype nat_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword service_endpoints: An array of service endpoints. + :paramtype service_endpoints: + list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPropertiesFormat] + :keyword service_endpoint_policies: An array of service endpoint policies. + :paramtype service_endpoint_policies: + list[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy] + :keyword ip_allocations: Array of IpAllocation which reference this subnet. + :paramtype ip_allocations: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword delegations: An array of references to the delegations on the subnet. + :paramtype delegations: list[~azure.mgmt.network.v2021_08_01.models.Delegation] + :keyword private_endpoint_network_policies: Enable or Disable apply network policies on private + end point in the subnet. Possible values include: "Enabled", "Disabled". Default value: + "Enabled". + :paramtype private_endpoint_network_policies: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPrivateEndpointNetworkPolicies + :keyword private_link_service_network_policies: Enable or Disable apply network policies on + private link service in the subnet. Possible values include: "Enabled", "Disabled". Default + value: "Enabled". + :paramtype private_link_service_network_policies: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPrivateLinkServiceNetworkPolicies + :keyword application_gateway_ip_configurations: Application gateway IP configurations of + virtual network resource. + :paramtype application_gateway_ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayIPConfiguration] + """ + super(Subnet, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = type + self.address_prefix = address_prefix + self.address_prefixes = address_prefixes + self.network_security_group = network_security_group + self.route_table = route_table + self.nat_gateway = nat_gateway + self.service_endpoints = service_endpoints + self.service_endpoint_policies = service_endpoint_policies + self.private_endpoints = None + self.ip_configurations = None + self.ip_configuration_profiles = None + self.ip_allocations = ip_allocations + self.resource_navigation_links = None + self.service_association_links = None + self.delegations = delegations + self.purpose = None + self.provisioning_state = None + self.private_endpoint_network_policies = private_endpoint_network_policies + self.private_link_service_network_policies = private_link_service_network_policies + self.application_gateway_ip_configurations = application_gateway_ip_configurations + + +class SubnetAssociation(msrest.serialization.Model): + """Subnet and it's custom security rules. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Subnet ID. + :vartype id: str + :ivar security_rules: Collection of custom security rules. + :vartype security_rules: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + """ + + _validation = { + 'id': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'security_rules': {'key': 'securityRules', 'type': '[SecurityRule]'}, + } + + def __init__( + self, + *, + security_rules: Optional[List["SecurityRule"]] = None, + **kwargs + ): + """ + :keyword security_rules: Collection of custom security rules. + :paramtype security_rules: list[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + """ + super(SubnetAssociation, self).__init__(**kwargs) + self.id = None + self.security_rules = security_rules + + +class SubnetListResult(msrest.serialization.Model): + """Response for ListSubnets API service callRetrieves all subnet that belongs to a virtual network. + + :ivar value: The subnets in a virtual network. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.Subnet] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Subnet]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["Subnet"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The subnets in a virtual network. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.Subnet] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(SubnetListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class TagsObject(msrest.serialization.Model): + """Tags object for patch operations. + + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + """ + + _attribute_map = { + 'tags': {'key': 'tags', 'type': '{str}'}, + } + + def __init__( + self, + *, + tags: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + """ + super(TagsObject, self).__init__(**kwargs) + self.tags = tags + + +class Topology(msrest.serialization.Model): + """Topology of the specified resource group. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: GUID representing the operation id. + :vartype id: str + :ivar created_date_time: The datetime when the topology was initially created for the resource + group. + :vartype created_date_time: ~datetime.datetime + :ivar last_modified: The datetime when the topology was last modified. + :vartype last_modified: ~datetime.datetime + :ivar resources: A list of topology resources. + :vartype resources: list[~azure.mgmt.network.v2021_08_01.models.TopologyResource] + """ + + _validation = { + 'id': {'readonly': True}, + 'created_date_time': {'readonly': True}, + 'last_modified': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'created_date_time': {'key': 'createdDateTime', 'type': 'iso-8601'}, + 'last_modified': {'key': 'lastModified', 'type': 'iso-8601'}, + 'resources': {'key': 'resources', 'type': '[TopologyResource]'}, + } + + def __init__( + self, + *, + resources: Optional[List["TopologyResource"]] = None, + **kwargs + ): + """ + :keyword resources: A list of topology resources. + :paramtype resources: list[~azure.mgmt.network.v2021_08_01.models.TopologyResource] + """ + super(Topology, self).__init__(**kwargs) + self.id = None + self.created_date_time = None + self.last_modified = None + self.resources = resources + + +class TopologyAssociation(msrest.serialization.Model): + """Resources that have an association with the parent resource. + + :ivar name: The name of the resource that is associated with the parent resource. + :vartype name: str + :ivar resource_id: The ID of the resource that is associated with the parent resource. + :vartype resource_id: str + :ivar association_type: The association type of the child resource to the parent resource. + Possible values include: "Associated", "Contains". + :vartype association_type: str or ~azure.mgmt.network.v2021_08_01.models.AssociationType + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'resource_id': {'key': 'resourceId', 'type': 'str'}, + 'association_type': {'key': 'associationType', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + resource_id: Optional[str] = None, + association_type: Optional[Union[str, "AssociationType"]] = None, + **kwargs + ): + """ + :keyword name: The name of the resource that is associated with the parent resource. + :paramtype name: str + :keyword resource_id: The ID of the resource that is associated with the parent resource. + :paramtype resource_id: str + :keyword association_type: The association type of the child resource to the parent resource. + Possible values include: "Associated", "Contains". + :paramtype association_type: str or ~azure.mgmt.network.v2021_08_01.models.AssociationType + """ + super(TopologyAssociation, self).__init__(**kwargs) + self.name = name + self.resource_id = resource_id + self.association_type = association_type + + +class TopologyParameters(msrest.serialization.Model): + """Parameters that define the representation of topology. + + :ivar target_resource_group_name: The name of the target resource group to perform topology on. + :vartype target_resource_group_name: str + :ivar target_virtual_network: The reference to the Virtual Network resource. + :vartype target_virtual_network: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar target_subnet: The reference to the Subnet resource. + :vartype target_subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + + _attribute_map = { + 'target_resource_group_name': {'key': 'targetResourceGroupName', 'type': 'str'}, + 'target_virtual_network': {'key': 'targetVirtualNetwork', 'type': 'SubResource'}, + 'target_subnet': {'key': 'targetSubnet', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + target_resource_group_name: Optional[str] = None, + target_virtual_network: Optional["SubResource"] = None, + target_subnet: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword target_resource_group_name: The name of the target resource group to perform topology + on. + :paramtype target_resource_group_name: str + :keyword target_virtual_network: The reference to the Virtual Network resource. + :paramtype target_virtual_network: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword target_subnet: The reference to the Subnet resource. + :paramtype target_subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(TopologyParameters, self).__init__(**kwargs) + self.target_resource_group_name = target_resource_group_name + self.target_virtual_network = target_virtual_network + self.target_subnet = target_subnet + + +class TopologyResource(msrest.serialization.Model): + """The network resource topology information for the given resource group. + + :ivar name: Name of the resource. + :vartype name: str + :ivar id: ID of the resource. + :vartype id: str + :ivar location: Resource location. + :vartype location: str + :ivar associations: Holds the associations the resource has with other resources in the + resource group. + :vartype associations: list[~azure.mgmt.network.v2021_08_01.models.TopologyAssociation] + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'associations': {'key': 'associations', 'type': '[TopologyAssociation]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + id: Optional[str] = None, + location: Optional[str] = None, + associations: Optional[List["TopologyAssociation"]] = None, + **kwargs + ): + """ + :keyword name: Name of the resource. + :paramtype name: str + :keyword id: ID of the resource. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword associations: Holds the associations the resource has with other resources in the + resource group. + :paramtype associations: list[~azure.mgmt.network.v2021_08_01.models.TopologyAssociation] + """ + super(TopologyResource, self).__init__(**kwargs) + self.name = name + self.id = id + self.location = location + self.associations = associations + + +class TrafficAnalyticsConfigurationProperties(msrest.serialization.Model): + """Parameters that define the configuration of traffic analytics. + + :ivar enabled: Flag to enable/disable traffic analytics. + :vartype enabled: bool + :ivar workspace_id: The resource guid of the attached workspace. + :vartype workspace_id: str + :ivar workspace_region: The location of the attached workspace. + :vartype workspace_region: str + :ivar workspace_resource_id: Resource Id of the attached workspace. + :vartype workspace_resource_id: str + :ivar traffic_analytics_interval: The interval in minutes which would decide how frequently TA + service should do flow analytics. + :vartype traffic_analytics_interval: int + """ + + _attribute_map = { + 'enabled': {'key': 'enabled', 'type': 'bool'}, + 'workspace_id': {'key': 'workspaceId', 'type': 'str'}, + 'workspace_region': {'key': 'workspaceRegion', 'type': 'str'}, + 'workspace_resource_id': {'key': 'workspaceResourceId', 'type': 'str'}, + 'traffic_analytics_interval': {'key': 'trafficAnalyticsInterval', 'type': 'int'}, + } + + def __init__( + self, + *, + enabled: Optional[bool] = None, + workspace_id: Optional[str] = None, + workspace_region: Optional[str] = None, + workspace_resource_id: Optional[str] = None, + traffic_analytics_interval: Optional[int] = None, + **kwargs + ): + """ + :keyword enabled: Flag to enable/disable traffic analytics. + :paramtype enabled: bool + :keyword workspace_id: The resource guid of the attached workspace. + :paramtype workspace_id: str + :keyword workspace_region: The location of the attached workspace. + :paramtype workspace_region: str + :keyword workspace_resource_id: Resource Id of the attached workspace. + :paramtype workspace_resource_id: str + :keyword traffic_analytics_interval: The interval in minutes which would decide how frequently + TA service should do flow analytics. + :paramtype traffic_analytics_interval: int + """ + super(TrafficAnalyticsConfigurationProperties, self).__init__(**kwargs) + self.enabled = enabled + self.workspace_id = workspace_id + self.workspace_region = workspace_region + self.workspace_resource_id = workspace_resource_id + self.traffic_analytics_interval = traffic_analytics_interval + + +class TrafficAnalyticsProperties(msrest.serialization.Model): + """Parameters that define the configuration of traffic analytics. + + :ivar network_watcher_flow_analytics_configuration: Parameters that define the configuration of + traffic analytics. + :vartype network_watcher_flow_analytics_configuration: + ~azure.mgmt.network.v2021_08_01.models.TrafficAnalyticsConfigurationProperties + """ + + _attribute_map = { + 'network_watcher_flow_analytics_configuration': {'key': 'networkWatcherFlowAnalyticsConfiguration', 'type': 'TrafficAnalyticsConfigurationProperties'}, + } + + def __init__( + self, + *, + network_watcher_flow_analytics_configuration: Optional["TrafficAnalyticsConfigurationProperties"] = None, + **kwargs + ): + """ + :keyword network_watcher_flow_analytics_configuration: Parameters that define the configuration + of traffic analytics. + :paramtype network_watcher_flow_analytics_configuration: + ~azure.mgmt.network.v2021_08_01.models.TrafficAnalyticsConfigurationProperties + """ + super(TrafficAnalyticsProperties, self).__init__(**kwargs) + self.network_watcher_flow_analytics_configuration = network_watcher_flow_analytics_configuration + + +class TrafficSelectorPolicy(msrest.serialization.Model): + """An traffic selector policy for a virtual network gateway connection. + + All required parameters must be populated in order to send to Azure. + + :ivar local_address_ranges: Required. A collection of local address spaces in CIDR format. + :vartype local_address_ranges: list[str] + :ivar remote_address_ranges: Required. A collection of remote address spaces in CIDR format. + :vartype remote_address_ranges: list[str] + """ + + _validation = { + 'local_address_ranges': {'required': True}, + 'remote_address_ranges': {'required': True}, + } + + _attribute_map = { + 'local_address_ranges': {'key': 'localAddressRanges', 'type': '[str]'}, + 'remote_address_ranges': {'key': 'remoteAddressRanges', 'type': '[str]'}, + } + + def __init__( + self, + *, + local_address_ranges: List[str], + remote_address_ranges: List[str], + **kwargs + ): + """ + :keyword local_address_ranges: Required. A collection of local address spaces in CIDR format. + :paramtype local_address_ranges: list[str] + :keyword remote_address_ranges: Required. A collection of remote address spaces in CIDR format. + :paramtype remote_address_ranges: list[str] + """ + super(TrafficSelectorPolicy, self).__init__(**kwargs) + self.local_address_ranges = local_address_ranges + self.remote_address_ranges = remote_address_ranges + + +class TroubleshootingDetails(msrest.serialization.Model): + """Information gained from troubleshooting of specified resource. + + :ivar id: The id of the get troubleshoot operation. + :vartype id: str + :ivar reason_type: Reason type of failure. + :vartype reason_type: str + :ivar summary: A summary of troubleshooting. + :vartype summary: str + :ivar detail: Details on troubleshooting results. + :vartype detail: str + :ivar recommended_actions: List of recommended actions. + :vartype recommended_actions: + list[~azure.mgmt.network.v2021_08_01.models.TroubleshootingRecommendedActions] + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'reason_type': {'key': 'reasonType', 'type': 'str'}, + 'summary': {'key': 'summary', 'type': 'str'}, + 'detail': {'key': 'detail', 'type': 'str'}, + 'recommended_actions': {'key': 'recommendedActions', 'type': '[TroubleshootingRecommendedActions]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + reason_type: Optional[str] = None, + summary: Optional[str] = None, + detail: Optional[str] = None, + recommended_actions: Optional[List["TroubleshootingRecommendedActions"]] = None, + **kwargs + ): + """ + :keyword id: The id of the get troubleshoot operation. + :paramtype id: str + :keyword reason_type: Reason type of failure. + :paramtype reason_type: str + :keyword summary: A summary of troubleshooting. + :paramtype summary: str + :keyword detail: Details on troubleshooting results. + :paramtype detail: str + :keyword recommended_actions: List of recommended actions. + :paramtype recommended_actions: + list[~azure.mgmt.network.v2021_08_01.models.TroubleshootingRecommendedActions] + """ + super(TroubleshootingDetails, self).__init__(**kwargs) + self.id = id + self.reason_type = reason_type + self.summary = summary + self.detail = detail + self.recommended_actions = recommended_actions + + +class TroubleshootingParameters(msrest.serialization.Model): + """Parameters that define the resource to troubleshoot. + + All required parameters must be populated in order to send to Azure. + + :ivar target_resource_id: Required. The target resource to troubleshoot. + :vartype target_resource_id: str + :ivar storage_id: Required. The ID for the storage account to save the troubleshoot result. + :vartype storage_id: str + :ivar storage_path: Required. The path to the blob to save the troubleshoot result in. + :vartype storage_path: str + """ + + _validation = { + 'target_resource_id': {'required': True}, + 'storage_id': {'required': True}, + 'storage_path': {'required': True}, + } + + _attribute_map = { + 'target_resource_id': {'key': 'targetResourceId', 'type': 'str'}, + 'storage_id': {'key': 'properties.storageId', 'type': 'str'}, + 'storage_path': {'key': 'properties.storagePath', 'type': 'str'}, + } + + def __init__( + self, + *, + target_resource_id: str, + storage_id: str, + storage_path: str, + **kwargs + ): + """ + :keyword target_resource_id: Required. The target resource to troubleshoot. + :paramtype target_resource_id: str + :keyword storage_id: Required. The ID for the storage account to save the troubleshoot result. + :paramtype storage_id: str + :keyword storage_path: Required. The path to the blob to save the troubleshoot result in. + :paramtype storage_path: str + """ + super(TroubleshootingParameters, self).__init__(**kwargs) + self.target_resource_id = target_resource_id + self.storage_id = storage_id + self.storage_path = storage_path + + +class TroubleshootingRecommendedActions(msrest.serialization.Model): + """Recommended actions based on discovered issues. + + :ivar action_id: ID of the recommended action. + :vartype action_id: str + :ivar action_text: Description of recommended actions. + :vartype action_text: str + :ivar action_uri: The uri linking to a documentation for the recommended troubleshooting + actions. + :vartype action_uri: str + :ivar action_uri_text: The information from the URI for the recommended troubleshooting + actions. + :vartype action_uri_text: str + """ + + _attribute_map = { + 'action_id': {'key': 'actionId', 'type': 'str'}, + 'action_text': {'key': 'actionText', 'type': 'str'}, + 'action_uri': {'key': 'actionUri', 'type': 'str'}, + 'action_uri_text': {'key': 'actionUriText', 'type': 'str'}, + } + + def __init__( + self, + *, + action_id: Optional[str] = None, + action_text: Optional[str] = None, + action_uri: Optional[str] = None, + action_uri_text: Optional[str] = None, + **kwargs + ): + """ + :keyword action_id: ID of the recommended action. + :paramtype action_id: str + :keyword action_text: Description of recommended actions. + :paramtype action_text: str + :keyword action_uri: The uri linking to a documentation for the recommended troubleshooting + actions. + :paramtype action_uri: str + :keyword action_uri_text: The information from the URI for the recommended troubleshooting + actions. + :paramtype action_uri_text: str + """ + super(TroubleshootingRecommendedActions, self).__init__(**kwargs) + self.action_id = action_id + self.action_text = action_text + self.action_uri = action_uri + self.action_uri_text = action_uri_text + + +class TroubleshootingResult(msrest.serialization.Model): + """Troubleshooting information gained from specified resource. + + :ivar start_time: The start time of the troubleshooting. + :vartype start_time: ~datetime.datetime + :ivar end_time: The end time of the troubleshooting. + :vartype end_time: ~datetime.datetime + :ivar code: The result code of the troubleshooting. + :vartype code: str + :ivar results: Information from troubleshooting. + :vartype results: list[~azure.mgmt.network.v2021_08_01.models.TroubleshootingDetails] + """ + + _attribute_map = { + 'start_time': {'key': 'startTime', 'type': 'iso-8601'}, + 'end_time': {'key': 'endTime', 'type': 'iso-8601'}, + 'code': {'key': 'code', 'type': 'str'}, + 'results': {'key': 'results', 'type': '[TroubleshootingDetails]'}, + } + + def __init__( + self, + *, + start_time: Optional[datetime.datetime] = None, + end_time: Optional[datetime.datetime] = None, + code: Optional[str] = None, + results: Optional[List["TroubleshootingDetails"]] = None, + **kwargs + ): + """ + :keyword start_time: The start time of the troubleshooting. + :paramtype start_time: ~datetime.datetime + :keyword end_time: The end time of the troubleshooting. + :paramtype end_time: ~datetime.datetime + :keyword code: The result code of the troubleshooting. + :paramtype code: str + :keyword results: Information from troubleshooting. + :paramtype results: list[~azure.mgmt.network.v2021_08_01.models.TroubleshootingDetails] + """ + super(TroubleshootingResult, self).__init__(**kwargs) + self.start_time = start_time + self.end_time = end_time + self.code = code + self.results = results + + +class TunnelConnectionHealth(msrest.serialization.Model): + """VirtualNetworkGatewayConnection properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar tunnel: Tunnel name. + :vartype tunnel: str + :ivar connection_status: Virtual Network Gateway connection status. Possible values include: + "Unknown", "Connecting", "Connected", "NotConnected". + :vartype connection_status: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionStatus + :ivar ingress_bytes_transferred: The Ingress Bytes Transferred in this connection. + :vartype ingress_bytes_transferred: long + :ivar egress_bytes_transferred: The Egress Bytes Transferred in this connection. + :vartype egress_bytes_transferred: long + :ivar last_connection_established_utc_time: The time at which connection was established in Utc + format. + :vartype last_connection_established_utc_time: str + """ + + _validation = { + 'tunnel': {'readonly': True}, + 'connection_status': {'readonly': True}, + 'ingress_bytes_transferred': {'readonly': True}, + 'egress_bytes_transferred': {'readonly': True}, + 'last_connection_established_utc_time': {'readonly': True}, + } + + _attribute_map = { + 'tunnel': {'key': 'tunnel', 'type': 'str'}, + 'connection_status': {'key': 'connectionStatus', 'type': 'str'}, + 'ingress_bytes_transferred': {'key': 'ingressBytesTransferred', 'type': 'long'}, + 'egress_bytes_transferred': {'key': 'egressBytesTransferred', 'type': 'long'}, + 'last_connection_established_utc_time': {'key': 'lastConnectionEstablishedUtcTime', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(TunnelConnectionHealth, self).__init__(**kwargs) + self.tunnel = None + self.connection_status = None + self.ingress_bytes_transferred = None + self.egress_bytes_transferred = None + self.last_connection_established_utc_time = None + + +class UnprepareNetworkPoliciesRequest(msrest.serialization.Model): + """Details of UnprepareNetworkPolicies for Subnet. + + :ivar service_name: The name of the service for which subnet is being unprepared for. + :vartype service_name: str + """ + + _attribute_map = { + 'service_name': {'key': 'serviceName', 'type': 'str'}, + } + + def __init__( + self, + *, + service_name: Optional[str] = None, + **kwargs + ): + """ + :keyword service_name: The name of the service for which subnet is being unprepared for. + :paramtype service_name: str + """ + super(UnprepareNetworkPoliciesRequest, self).__init__(**kwargs) + self.service_name = service_name + + +class Usage(msrest.serialization.Model): + """The network resource usage. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource identifier. + :vartype id: str + :ivar unit: Required. An enum describing the unit of measurement. Possible values include: + "Count". + :vartype unit: str or ~azure.mgmt.network.v2021_08_01.models.UsageUnit + :ivar current_value: Required. The current value of the usage. + :vartype current_value: long + :ivar limit: Required. The limit of usage. + :vartype limit: long + :ivar name: Required. The name of the type of usage. + :vartype name: ~azure.mgmt.network.v2021_08_01.models.UsageName + """ + + _validation = { + 'id': {'readonly': True}, + 'unit': {'required': True}, + 'current_value': {'required': True}, + 'limit': {'required': True}, + 'name': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'unit': {'key': 'unit', 'type': 'str'}, + 'current_value': {'key': 'currentValue', 'type': 'long'}, + 'limit': {'key': 'limit', 'type': 'long'}, + 'name': {'key': 'name', 'type': 'UsageName'}, + } + + def __init__( + self, + *, + unit: Union[str, "UsageUnit"], + current_value: int, + limit: int, + name: "UsageName", + **kwargs + ): + """ + :keyword unit: Required. An enum describing the unit of measurement. Possible values include: + "Count". + :paramtype unit: str or ~azure.mgmt.network.v2021_08_01.models.UsageUnit + :keyword current_value: Required. The current value of the usage. + :paramtype current_value: long + :keyword limit: Required. The limit of usage. + :paramtype limit: long + :keyword name: Required. The name of the type of usage. + :paramtype name: ~azure.mgmt.network.v2021_08_01.models.UsageName + """ + super(Usage, self).__init__(**kwargs) + self.id = None + self.unit = unit + self.current_value = current_value + self.limit = limit + self.name = name + + +class UsageName(msrest.serialization.Model): + """The usage names. + + :ivar value: A string describing the resource name. + :vartype value: str + :ivar localized_value: A localized string describing the resource name. + :vartype localized_value: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': 'str'}, + 'localized_value': {'key': 'localizedValue', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[str] = None, + localized_value: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A string describing the resource name. + :paramtype value: str + :keyword localized_value: A localized string describing the resource name. + :paramtype localized_value: str + """ + super(UsageName, self).__init__(**kwargs) + self.value = value + self.localized_value = localized_value + + +class UsagesListResult(msrest.serialization.Model): + """The list usages operation response. + + :ivar value: The list network resource usages. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.Usage] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Usage]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["Usage"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The list network resource usages. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.Usage] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(UsagesListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class VerificationIPFlowParameters(msrest.serialization.Model): + """Parameters that define the IP flow to be verified. + + All required parameters must be populated in order to send to Azure. + + :ivar target_resource_id: Required. The ID of the target resource to perform next-hop on. + :vartype target_resource_id: str + :ivar direction: Required. The direction of the packet represented as a 5-tuple. Possible + values include: "Inbound", "Outbound". + :vartype direction: str or ~azure.mgmt.network.v2021_08_01.models.Direction + :ivar protocol: Required. Protocol to be verified on. Possible values include: "TCP", "UDP". + :vartype protocol: str or ~azure.mgmt.network.v2021_08_01.models.IpFlowProtocol + :ivar local_port: Required. The local port. Acceptable values are a single integer in the range + (0-65535). Support for * for the source port, which depends on the direction. + :vartype local_port: str + :ivar remote_port: Required. The remote port. Acceptable values are a single integer in the + range (0-65535). Support for * for the source port, which depends on the direction. + :vartype remote_port: str + :ivar local_ip_address: Required. The local IP address. Acceptable values are valid IPv4 + addresses. + :vartype local_ip_address: str + :ivar remote_ip_address: Required. The remote IP address. Acceptable values are valid IPv4 + addresses. + :vartype remote_ip_address: str + :ivar target_nic_resource_id: The NIC ID. (If VM has multiple NICs and IP forwarding is enabled + on any of them, then this parameter must be specified. Otherwise optional). + :vartype target_nic_resource_id: str + """ + + _validation = { + 'target_resource_id': {'required': True}, + 'direction': {'required': True}, + 'protocol': {'required': True}, + 'local_port': {'required': True}, + 'remote_port': {'required': True}, + 'local_ip_address': {'required': True}, + 'remote_ip_address': {'required': True}, + } + + _attribute_map = { + 'target_resource_id': {'key': 'targetResourceId', 'type': 'str'}, + 'direction': {'key': 'direction', 'type': 'str'}, + 'protocol': {'key': 'protocol', 'type': 'str'}, + 'local_port': {'key': 'localPort', 'type': 'str'}, + 'remote_port': {'key': 'remotePort', 'type': 'str'}, + 'local_ip_address': {'key': 'localIPAddress', 'type': 'str'}, + 'remote_ip_address': {'key': 'remoteIPAddress', 'type': 'str'}, + 'target_nic_resource_id': {'key': 'targetNicResourceId', 'type': 'str'}, + } + + def __init__( + self, + *, + target_resource_id: str, + direction: Union[str, "Direction"], + protocol: Union[str, "IpFlowProtocol"], + local_port: str, + remote_port: str, + local_ip_address: str, + remote_ip_address: str, + target_nic_resource_id: Optional[str] = None, + **kwargs + ): + """ + :keyword target_resource_id: Required. The ID of the target resource to perform next-hop on. + :paramtype target_resource_id: str + :keyword direction: Required. The direction of the packet represented as a 5-tuple. Possible + values include: "Inbound", "Outbound". + :paramtype direction: str or ~azure.mgmt.network.v2021_08_01.models.Direction + :keyword protocol: Required. Protocol to be verified on. Possible values include: "TCP", "UDP". + :paramtype protocol: str or ~azure.mgmt.network.v2021_08_01.models.IpFlowProtocol + :keyword local_port: Required. The local port. Acceptable values are a single integer in the + range (0-65535). Support for * for the source port, which depends on the direction. + :paramtype local_port: str + :keyword remote_port: Required. The remote port. Acceptable values are a single integer in the + range (0-65535). Support for * for the source port, which depends on the direction. + :paramtype remote_port: str + :keyword local_ip_address: Required. The local IP address. Acceptable values are valid IPv4 + addresses. + :paramtype local_ip_address: str + :keyword remote_ip_address: Required. The remote IP address. Acceptable values are valid IPv4 + addresses. + :paramtype remote_ip_address: str + :keyword target_nic_resource_id: The NIC ID. (If VM has multiple NICs and IP forwarding is + enabled on any of them, then this parameter must be specified. Otherwise optional). + :paramtype target_nic_resource_id: str + """ + super(VerificationIPFlowParameters, self).__init__(**kwargs) + self.target_resource_id = target_resource_id + self.direction = direction + self.protocol = protocol + self.local_port = local_port + self.remote_port = remote_port + self.local_ip_address = local_ip_address + self.remote_ip_address = remote_ip_address + self.target_nic_resource_id = target_nic_resource_id + + +class VerificationIPFlowResult(msrest.serialization.Model): + """Results of IP flow verification on the target resource. + + :ivar access: Indicates whether the traffic is allowed or denied. Possible values include: + "Allow", "Deny". + :vartype access: str or ~azure.mgmt.network.v2021_08_01.models.Access + :ivar rule_name: Name of the rule. If input is not matched against any security rule, it is not + displayed. + :vartype rule_name: str + """ + + _attribute_map = { + 'access': {'key': 'access', 'type': 'str'}, + 'rule_name': {'key': 'ruleName', 'type': 'str'}, + } + + def __init__( + self, + *, + access: Optional[Union[str, "Access"]] = None, + rule_name: Optional[str] = None, + **kwargs + ): + """ + :keyword access: Indicates whether the traffic is allowed or denied. Possible values include: + "Allow", "Deny". + :paramtype access: str or ~azure.mgmt.network.v2021_08_01.models.Access + :keyword rule_name: Name of the rule. If input is not matched against any security rule, it is + not displayed. + :paramtype rule_name: str + """ + super(VerificationIPFlowResult, self).__init__(**kwargs) + self.access = access + self.rule_name = rule_name + + +class VirtualApplianceNicProperties(msrest.serialization.Model): + """Network Virtual Appliance NIC properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: NIC name. + :vartype name: str + :ivar public_ip_address: Public IP address. + :vartype public_ip_address: str + :ivar private_ip_address: Private IP address. + :vartype private_ip_address: str + """ + + _validation = { + 'name': {'readonly': True}, + 'public_ip_address': {'readonly': True}, + 'private_ip_address': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'public_ip_address': {'key': 'publicIpAddress', 'type': 'str'}, + 'private_ip_address': {'key': 'privateIpAddress', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(VirtualApplianceNicProperties, self).__init__(**kwargs) + self.name = None + self.public_ip_address = None + self.private_ip_address = None + + +class VirtualApplianceSite(SubResource): + """Virtual Appliance Site resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the virtual appliance site. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Site type. + :vartype type: str + :ivar address_prefix: Address Prefix. + :vartype address_prefix: str + :ivar o365_policy: Office 365 Policy. + :vartype o365_policy: ~azure.mgmt.network.v2021_08_01.models.Office365PolicyProperties + :ivar provisioning_state: The provisioning state of the resource. Possible values include: + "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'address_prefix': {'key': 'properties.addressPrefix', 'type': 'str'}, + 'o365_policy': {'key': 'properties.o365Policy', 'type': 'Office365PolicyProperties'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + address_prefix: Optional[str] = None, + o365_policy: Optional["Office365PolicyProperties"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the virtual appliance site. + :paramtype name: str + :keyword address_prefix: Address Prefix. + :paramtype address_prefix: str + :keyword o365_policy: Office 365 Policy. + :paramtype o365_policy: ~azure.mgmt.network.v2021_08_01.models.Office365PolicyProperties + """ + super(VirtualApplianceSite, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.address_prefix = address_prefix + self.o365_policy = o365_policy + self.provisioning_state = None + + +class VirtualApplianceSkuProperties(msrest.serialization.Model): + """Network Virtual Appliance Sku Properties. + + :ivar vendor: Virtual Appliance Vendor. + :vartype vendor: str + :ivar bundled_scale_unit: Virtual Appliance Scale Unit. + :vartype bundled_scale_unit: str + :ivar market_place_version: Virtual Appliance Version. + :vartype market_place_version: str + """ + + _attribute_map = { + 'vendor': {'key': 'vendor', 'type': 'str'}, + 'bundled_scale_unit': {'key': 'bundledScaleUnit', 'type': 'str'}, + 'market_place_version': {'key': 'marketPlaceVersion', 'type': 'str'}, + } + + def __init__( + self, + *, + vendor: Optional[str] = None, + bundled_scale_unit: Optional[str] = None, + market_place_version: Optional[str] = None, + **kwargs + ): + """ + :keyword vendor: Virtual Appliance Vendor. + :paramtype vendor: str + :keyword bundled_scale_unit: Virtual Appliance Scale Unit. + :paramtype bundled_scale_unit: str + :keyword market_place_version: Virtual Appliance Version. + :paramtype market_place_version: str + """ + super(VirtualApplianceSkuProperties, self).__init__(**kwargs) + self.vendor = vendor + self.bundled_scale_unit = bundled_scale_unit + self.market_place_version = market_place_version + + +class VirtualHub(Resource): + """VirtualHub Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar kind: Kind of service virtual hub. This is metadata used for the Azure portal experience + for Route Server. + :vartype kind: str + :ivar virtual_wan: The VirtualWAN to which the VirtualHub belongs. + :vartype virtual_wan: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar vpn_gateway: The VpnGateway associated with this VirtualHub. + :vartype vpn_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar p2_s_vpn_gateway: The P2SVpnGateway associated with this VirtualHub. + :vartype p2_s_vpn_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar express_route_gateway: The expressRouteGateway associated with this VirtualHub. + :vartype express_route_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar azure_firewall: The azureFirewall associated with this VirtualHub. + :vartype azure_firewall: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar security_partner_provider: The securityPartnerProvider associated with this VirtualHub. + :vartype security_partner_provider: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar address_prefix: Address-prefix for this VirtualHub. + :vartype address_prefix: str + :ivar route_table: The routeTable associated with this virtual hub. + :vartype route_table: ~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTable + :ivar provisioning_state: The provisioning state of the virtual hub resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar security_provider_name: The Security Provider name. + :vartype security_provider_name: str + :ivar virtual_hub_route_table_v2_s: List of all virtual hub route table v2s associated with + this VirtualHub. + :vartype virtual_hub_route_table_v2_s: + list[~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2] + :ivar sku: The sku of this VirtualHub. + :vartype sku: str + :ivar routing_state: The routing state. Possible values include: "None", "Provisioned", + "Provisioning", "Failed". + :vartype routing_state: str or ~azure.mgmt.network.v2021_08_01.models.RoutingState + :ivar bgp_connections: List of references to Bgp Connections. + :vartype bgp_connections: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar ip_configurations: List of references to IpConfigurations. + :vartype ip_configurations: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar virtual_router_asn: VirtualRouter ASN. + :vartype virtual_router_asn: long + :ivar virtual_router_ips: VirtualRouter IPs. + :vartype virtual_router_ips: list[str] + :ivar allow_branch_to_branch_traffic: Flag to control transit for VirtualRouter hub. + :vartype allow_branch_to_branch_traffic: bool + :ivar preferred_routing_gateway: The preferred gateway to route on-prem traffic. Possible + values include: "ExpressRoute", "VpnGateway", "None". + :vartype preferred_routing_gateway: str or + ~azure.mgmt.network.v2021_08_01.models.PreferredRoutingGateway + :ivar hub_routing_preference: The hubRoutingPreference of this VirtualHub. Possible values + include: "ExpressRoute", "VpnGateway", "ASPath". + :vartype hub_routing_preference: str or + ~azure.mgmt.network.v2021_08_01.models.HubRoutingPreference + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'kind': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'routing_state': {'readonly': True}, + 'bgp_connections': {'readonly': True}, + 'ip_configurations': {'readonly': True}, + 'virtual_router_asn': {'maximum': 4294967295, 'minimum': 0}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'kind': {'key': 'kind', 'type': 'str'}, + 'virtual_wan': {'key': 'properties.virtualWan', 'type': 'SubResource'}, + 'vpn_gateway': {'key': 'properties.vpnGateway', 'type': 'SubResource'}, + 'p2_s_vpn_gateway': {'key': 'properties.p2SVpnGateway', 'type': 'SubResource'}, + 'express_route_gateway': {'key': 'properties.expressRouteGateway', 'type': 'SubResource'}, + 'azure_firewall': {'key': 'properties.azureFirewall', 'type': 'SubResource'}, + 'security_partner_provider': {'key': 'properties.securityPartnerProvider', 'type': 'SubResource'}, + 'address_prefix': {'key': 'properties.addressPrefix', 'type': 'str'}, + 'route_table': {'key': 'properties.routeTable', 'type': 'VirtualHubRouteTable'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'security_provider_name': {'key': 'properties.securityProviderName', 'type': 'str'}, + 'virtual_hub_route_table_v2_s': {'key': 'properties.virtualHubRouteTableV2s', 'type': '[VirtualHubRouteTableV2]'}, + 'sku': {'key': 'properties.sku', 'type': 'str'}, + 'routing_state': {'key': 'properties.routingState', 'type': 'str'}, + 'bgp_connections': {'key': 'properties.bgpConnections', 'type': '[SubResource]'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[SubResource]'}, + 'virtual_router_asn': {'key': 'properties.virtualRouterAsn', 'type': 'long'}, + 'virtual_router_ips': {'key': 'properties.virtualRouterIps', 'type': '[str]'}, + 'allow_branch_to_branch_traffic': {'key': 'properties.allowBranchToBranchTraffic', 'type': 'bool'}, + 'preferred_routing_gateway': {'key': 'properties.preferredRoutingGateway', 'type': 'str'}, + 'hub_routing_preference': {'key': 'properties.hubRoutingPreference', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + virtual_wan: Optional["SubResource"] = None, + vpn_gateway: Optional["SubResource"] = None, + p2_s_vpn_gateway: Optional["SubResource"] = None, + express_route_gateway: Optional["SubResource"] = None, + azure_firewall: Optional["SubResource"] = None, + security_partner_provider: Optional["SubResource"] = None, + address_prefix: Optional[str] = None, + route_table: Optional["VirtualHubRouteTable"] = None, + security_provider_name: Optional[str] = None, + virtual_hub_route_table_v2_s: Optional[List["VirtualHubRouteTableV2"]] = None, + sku: Optional[str] = None, + virtual_router_asn: Optional[int] = None, + virtual_router_ips: Optional[List[str]] = None, + allow_branch_to_branch_traffic: Optional[bool] = None, + preferred_routing_gateway: Optional[Union[str, "PreferredRoutingGateway"]] = None, + hub_routing_preference: Optional[Union[str, "HubRoutingPreference"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword virtual_wan: The VirtualWAN to which the VirtualHub belongs. + :paramtype virtual_wan: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword vpn_gateway: The VpnGateway associated with this VirtualHub. + :paramtype vpn_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword p2_s_vpn_gateway: The P2SVpnGateway associated with this VirtualHub. + :paramtype p2_s_vpn_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword express_route_gateway: The expressRouteGateway associated with this VirtualHub. + :paramtype express_route_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword azure_firewall: The azureFirewall associated with this VirtualHub. + :paramtype azure_firewall: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword security_partner_provider: The securityPartnerProvider associated with this + VirtualHub. + :paramtype security_partner_provider: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword address_prefix: Address-prefix for this VirtualHub. + :paramtype address_prefix: str + :keyword route_table: The routeTable associated with this virtual hub. + :paramtype route_table: ~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTable + :keyword security_provider_name: The Security Provider name. + :paramtype security_provider_name: str + :keyword virtual_hub_route_table_v2_s: List of all virtual hub route table v2s associated with + this VirtualHub. + :paramtype virtual_hub_route_table_v2_s: + list[~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2] + :keyword sku: The sku of this VirtualHub. + :paramtype sku: str + :keyword virtual_router_asn: VirtualRouter ASN. + :paramtype virtual_router_asn: long + :keyword virtual_router_ips: VirtualRouter IPs. + :paramtype virtual_router_ips: list[str] + :keyword allow_branch_to_branch_traffic: Flag to control transit for VirtualRouter hub. + :paramtype allow_branch_to_branch_traffic: bool + :keyword preferred_routing_gateway: The preferred gateway to route on-prem traffic. Possible + values include: "ExpressRoute", "VpnGateway", "None". + :paramtype preferred_routing_gateway: str or + ~azure.mgmt.network.v2021_08_01.models.PreferredRoutingGateway + :keyword hub_routing_preference: The hubRoutingPreference of this VirtualHub. Possible values + include: "ExpressRoute", "VpnGateway", "ASPath". + :paramtype hub_routing_preference: str or + ~azure.mgmt.network.v2021_08_01.models.HubRoutingPreference + """ + super(VirtualHub, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.kind = None + self.virtual_wan = virtual_wan + self.vpn_gateway = vpn_gateway + self.p2_s_vpn_gateway = p2_s_vpn_gateway + self.express_route_gateway = express_route_gateway + self.azure_firewall = azure_firewall + self.security_partner_provider = security_partner_provider + self.address_prefix = address_prefix + self.route_table = route_table + self.provisioning_state = None + self.security_provider_name = security_provider_name + self.virtual_hub_route_table_v2_s = virtual_hub_route_table_v2_s + self.sku = sku + self.routing_state = None + self.bgp_connections = None + self.ip_configurations = None + self.virtual_router_asn = virtual_router_asn + self.virtual_router_ips = virtual_router_ips + self.allow_branch_to_branch_traffic = allow_branch_to_branch_traffic + self.preferred_routing_gateway = preferred_routing_gateway + self.hub_routing_preference = hub_routing_preference + + +class VirtualHubEffectiveRoute(msrest.serialization.Model): + """The effective route configured on the virtual hub or specified resource. + + :ivar address_prefixes: The list of address prefixes. + :vartype address_prefixes: list[str] + :ivar next_hops: The list of next hops. + :vartype next_hops: list[str] + :ivar next_hop_type: The type of the next hop. + :vartype next_hop_type: str + :ivar as_path: The ASPath of this route. + :vartype as_path: str + :ivar route_origin: The origin of this route. + :vartype route_origin: str + """ + + _attribute_map = { + 'address_prefixes': {'key': 'addressPrefixes', 'type': '[str]'}, + 'next_hops': {'key': 'nextHops', 'type': '[str]'}, + 'next_hop_type': {'key': 'nextHopType', 'type': 'str'}, + 'as_path': {'key': 'asPath', 'type': 'str'}, + 'route_origin': {'key': 'routeOrigin', 'type': 'str'}, + } + + def __init__( + self, + *, + address_prefixes: Optional[List[str]] = None, + next_hops: Optional[List[str]] = None, + next_hop_type: Optional[str] = None, + as_path: Optional[str] = None, + route_origin: Optional[str] = None, + **kwargs + ): + """ + :keyword address_prefixes: The list of address prefixes. + :paramtype address_prefixes: list[str] + :keyword next_hops: The list of next hops. + :paramtype next_hops: list[str] + :keyword next_hop_type: The type of the next hop. + :paramtype next_hop_type: str + :keyword as_path: The ASPath of this route. + :paramtype as_path: str + :keyword route_origin: The origin of this route. + :paramtype route_origin: str + """ + super(VirtualHubEffectiveRoute, self).__init__(**kwargs) + self.address_prefixes = address_prefixes + self.next_hops = next_hops + self.next_hop_type = next_hop_type + self.as_path = as_path + self.route_origin = route_origin + + +class VirtualHubEffectiveRouteList(msrest.serialization.Model): + """EffectiveRoutes List. + + :ivar value: The list of effective routes configured on the virtual hub or the specified + resource. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualHubEffectiveRoute] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualHubEffectiveRoute]'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualHubEffectiveRoute"]] = None, + **kwargs + ): + """ + :keyword value: The list of effective routes configured on the virtual hub or the specified + resource. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualHubEffectiveRoute] + """ + super(VirtualHubEffectiveRouteList, self).__init__(**kwargs) + self.value = value + + +class VirtualHubId(msrest.serialization.Model): + """Virtual Hub identifier. + + :ivar id: The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be + deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same + subscription. + :vartype id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: The resource URI for the Virtual Hub where the ExpressRoute gateway is or will be + deployed. The Virtual Hub resource and the ExpressRoute gateway resource reside in the same + subscription. + :paramtype id: str + """ + super(VirtualHubId, self).__init__(**kwargs) + self.id = id + + +class VirtualHubRoute(msrest.serialization.Model): + """VirtualHub route. + + :ivar address_prefixes: List of all addressPrefixes. + :vartype address_prefixes: list[str] + :ivar next_hop_ip_address: NextHop ip address. + :vartype next_hop_ip_address: str + """ + + _attribute_map = { + 'address_prefixes': {'key': 'addressPrefixes', 'type': '[str]'}, + 'next_hop_ip_address': {'key': 'nextHopIpAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + address_prefixes: Optional[List[str]] = None, + next_hop_ip_address: Optional[str] = None, + **kwargs + ): + """ + :keyword address_prefixes: List of all addressPrefixes. + :paramtype address_prefixes: list[str] + :keyword next_hop_ip_address: NextHop ip address. + :paramtype next_hop_ip_address: str + """ + super(VirtualHubRoute, self).__init__(**kwargs) + self.address_prefixes = address_prefixes + self.next_hop_ip_address = next_hop_ip_address + + +class VirtualHubRouteTable(msrest.serialization.Model): + """VirtualHub route table. + + :ivar routes: List of all routes. + :vartype routes: list[~azure.mgmt.network.v2021_08_01.models.VirtualHubRoute] + """ + + _attribute_map = { + 'routes': {'key': 'routes', 'type': '[VirtualHubRoute]'}, + } + + def __init__( + self, + *, + routes: Optional[List["VirtualHubRoute"]] = None, + **kwargs + ): + """ + :keyword routes: List of all routes. + :paramtype routes: list[~azure.mgmt.network.v2021_08_01.models.VirtualHubRoute] + """ + super(VirtualHubRouteTable, self).__init__(**kwargs) + self.routes = routes + + +class VirtualHubRouteTableV2(SubResource): + """VirtualHubRouteTableV2 Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar routes: List of all routes. + :vartype routes: list[~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteV2] + :ivar attached_connections: List of all connections attached to this route table v2. + :vartype attached_connections: list[str] + :ivar provisioning_state: The provisioning state of the virtual hub route table v2 resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'routes': {'key': 'properties.routes', 'type': '[VirtualHubRouteV2]'}, + 'attached_connections': {'key': 'properties.attachedConnections', 'type': '[str]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + routes: Optional[List["VirtualHubRouteV2"]] = None, + attached_connections: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword routes: List of all routes. + :paramtype routes: list[~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteV2] + :keyword attached_connections: List of all connections attached to this route table v2. + :paramtype attached_connections: list[str] + """ + super(VirtualHubRouteTableV2, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.routes = routes + self.attached_connections = attached_connections + self.provisioning_state = None + + +class VirtualHubRouteV2(msrest.serialization.Model): + """VirtualHubRouteTableV2 route. + + :ivar destination_type: The type of destinations. + :vartype destination_type: str + :ivar destinations: List of all destinations. + :vartype destinations: list[str] + :ivar next_hop_type: The type of next hops. + :vartype next_hop_type: str + :ivar next_hops: NextHops ip address. + :vartype next_hops: list[str] + """ + + _attribute_map = { + 'destination_type': {'key': 'destinationType', 'type': 'str'}, + 'destinations': {'key': 'destinations', 'type': '[str]'}, + 'next_hop_type': {'key': 'nextHopType', 'type': 'str'}, + 'next_hops': {'key': 'nextHops', 'type': '[str]'}, + } + + def __init__( + self, + *, + destination_type: Optional[str] = None, + destinations: Optional[List[str]] = None, + next_hop_type: Optional[str] = None, + next_hops: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword destination_type: The type of destinations. + :paramtype destination_type: str + :keyword destinations: List of all destinations. + :paramtype destinations: list[str] + :keyword next_hop_type: The type of next hops. + :paramtype next_hop_type: str + :keyword next_hops: NextHops ip address. + :paramtype next_hops: list[str] + """ + super(VirtualHubRouteV2, self).__init__(**kwargs) + self.destination_type = destination_type + self.destinations = destinations + self.next_hop_type = next_hop_type + self.next_hops = next_hops + + +class VirtualNetwork(Resource): + """Virtual Network resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar extended_location: The extended location of the virtual network. + :vartype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar address_space: The AddressSpace that contains an array of IP address ranges that can be + used by subnets. + :vartype address_space: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :ivar dhcp_options: The dhcpOptions that contains an array of DNS servers available to VMs + deployed in the virtual network. + :vartype dhcp_options: ~azure.mgmt.network.v2021_08_01.models.DhcpOptions + :ivar flow_timeout_in_minutes: The FlowTimeout value (in minutes) for the Virtual Network. + :vartype flow_timeout_in_minutes: int + :ivar subnets: A list of subnets in a Virtual Network. + :vartype subnets: list[~azure.mgmt.network.v2021_08_01.models.Subnet] + :ivar virtual_network_peerings: A list of peerings in a Virtual Network. + :vartype virtual_network_peerings: + list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering] + :ivar resource_guid: The resourceGuid property of the Virtual Network resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the virtual network resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar enable_ddos_protection: Indicates if DDoS protection is enabled for all the protected + resources in the virtual network. It requires a DDoS protection plan associated with the + resource. + :vartype enable_ddos_protection: bool + :ivar enable_vm_protection: Indicates if VM protection is enabled for all the subnets in the + virtual network. + :vartype enable_vm_protection: bool + :ivar ddos_protection_plan: The DDoS protection plan associated with the virtual network. + :vartype ddos_protection_plan: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar bgp_communities: Bgp Communities sent over ExpressRoute with each route corresponding to + a prefix in this VNET. + :vartype bgp_communities: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkBgpCommunities + :ivar encryption: Indicates if encryption is enabled on virtual network and if VM without + encryption is allowed in encrypted VNet. + :vartype encryption: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkEncryption + :ivar ip_allocations: Array of IpAllocation which reference this VNET. + :vartype ip_allocations: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'extended_location': {'key': 'extendedLocation', 'type': 'ExtendedLocation'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'address_space': {'key': 'properties.addressSpace', 'type': 'AddressSpace'}, + 'dhcp_options': {'key': 'properties.dhcpOptions', 'type': 'DhcpOptions'}, + 'flow_timeout_in_minutes': {'key': 'properties.flowTimeoutInMinutes', 'type': 'int'}, + 'subnets': {'key': 'properties.subnets', 'type': '[Subnet]'}, + 'virtual_network_peerings': {'key': 'properties.virtualNetworkPeerings', 'type': '[VirtualNetworkPeering]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'enable_ddos_protection': {'key': 'properties.enableDdosProtection', 'type': 'bool'}, + 'enable_vm_protection': {'key': 'properties.enableVmProtection', 'type': 'bool'}, + 'ddos_protection_plan': {'key': 'properties.ddosProtectionPlan', 'type': 'SubResource'}, + 'bgp_communities': {'key': 'properties.bgpCommunities', 'type': 'VirtualNetworkBgpCommunities'}, + 'encryption': {'key': 'properties.encryption', 'type': 'VirtualNetworkEncryption'}, + 'ip_allocations': {'key': 'properties.ipAllocations', 'type': '[SubResource]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + extended_location: Optional["ExtendedLocation"] = None, + address_space: Optional["AddressSpace"] = None, + dhcp_options: Optional["DhcpOptions"] = None, + flow_timeout_in_minutes: Optional[int] = None, + subnets: Optional[List["Subnet"]] = None, + virtual_network_peerings: Optional[List["VirtualNetworkPeering"]] = None, + enable_ddos_protection: Optional[bool] = False, + enable_vm_protection: Optional[bool] = False, + ddos_protection_plan: Optional["SubResource"] = None, + bgp_communities: Optional["VirtualNetworkBgpCommunities"] = None, + encryption: Optional["VirtualNetworkEncryption"] = None, + ip_allocations: Optional[List["SubResource"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword extended_location: The extended location of the virtual network. + :paramtype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :keyword address_space: The AddressSpace that contains an array of IP address ranges that can + be used by subnets. + :paramtype address_space: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :keyword dhcp_options: The dhcpOptions that contains an array of DNS servers available to VMs + deployed in the virtual network. + :paramtype dhcp_options: ~azure.mgmt.network.v2021_08_01.models.DhcpOptions + :keyword flow_timeout_in_minutes: The FlowTimeout value (in minutes) for the Virtual Network. + :paramtype flow_timeout_in_minutes: int + :keyword subnets: A list of subnets in a Virtual Network. + :paramtype subnets: list[~azure.mgmt.network.v2021_08_01.models.Subnet] + :keyword virtual_network_peerings: A list of peerings in a Virtual Network. + :paramtype virtual_network_peerings: + list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering] + :keyword enable_ddos_protection: Indicates if DDoS protection is enabled for all the protected + resources in the virtual network. It requires a DDoS protection plan associated with the + resource. + :paramtype enable_ddos_protection: bool + :keyword enable_vm_protection: Indicates if VM protection is enabled for all the subnets in the + virtual network. + :paramtype enable_vm_protection: bool + :keyword ddos_protection_plan: The DDoS protection plan associated with the virtual network. + :paramtype ddos_protection_plan: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword bgp_communities: Bgp Communities sent over ExpressRoute with each route corresponding + to a prefix in this VNET. + :paramtype bgp_communities: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkBgpCommunities + :keyword encryption: Indicates if encryption is enabled on virtual network and if VM without + encryption is allowed in encrypted VNet. + :paramtype encryption: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkEncryption + :keyword ip_allocations: Array of IpAllocation which reference this VNET. + :paramtype ip_allocations: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + super(VirtualNetwork, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.extended_location = extended_location + self.etag = None + self.address_space = address_space + self.dhcp_options = dhcp_options + self.flow_timeout_in_minutes = flow_timeout_in_minutes + self.subnets = subnets + self.virtual_network_peerings = virtual_network_peerings + self.resource_guid = None + self.provisioning_state = None + self.enable_ddos_protection = enable_ddos_protection + self.enable_vm_protection = enable_vm_protection + self.ddos_protection_plan = ddos_protection_plan + self.bgp_communities = bgp_communities + self.encryption = encryption + self.ip_allocations = ip_allocations + + +class VirtualNetworkBgpCommunities(msrest.serialization.Model): + """Bgp Communities sent over ExpressRoute with each route corresponding to a prefix in this VNET. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar virtual_network_community: Required. The BGP community associated with the virtual + network. + :vartype virtual_network_community: str + :ivar regional_community: The BGP community associated with the region of the virtual network. + :vartype regional_community: str + """ + + _validation = { + 'virtual_network_community': {'required': True}, + 'regional_community': {'readonly': True}, + } + + _attribute_map = { + 'virtual_network_community': {'key': 'virtualNetworkCommunity', 'type': 'str'}, + 'regional_community': {'key': 'regionalCommunity', 'type': 'str'}, + } + + def __init__( + self, + *, + virtual_network_community: str, + **kwargs + ): + """ + :keyword virtual_network_community: Required. The BGP community associated with the virtual + network. + :paramtype virtual_network_community: str + """ + super(VirtualNetworkBgpCommunities, self).__init__(**kwargs) + self.virtual_network_community = virtual_network_community + self.regional_community = None + + +class VirtualNetworkConnectionGatewayReference(msrest.serialization.Model): + """A reference to VirtualNetworkGateway or LocalNetworkGateway resource. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Required. The ID of VirtualNetworkGateway or LocalNetworkGateway resource. + :vartype id: str + """ + + _validation = { + 'id': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + *, + id: str, + **kwargs + ): + """ + :keyword id: Required. The ID of VirtualNetworkGateway or LocalNetworkGateway resource. + :paramtype id: str + """ + super(VirtualNetworkConnectionGatewayReference, self).__init__(**kwargs) + self.id = id + + +class VirtualNetworkEncryption(msrest.serialization.Model): + """Indicates if encryption is enabled on virtual network and if VM without encryption is allowed in encrypted VNet. + + All required parameters must be populated in order to send to Azure. + + :ivar enabled: Required. Indicates if encryption is enabled on the virtual network. + :vartype enabled: bool + :ivar enforcement: If the encrypted VNet allows VM that does not support encryption. Possible + values include: "DropUnencrypted", "AllowUnencrypted". + :vartype enforcement: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkEncryptionEnforcement + """ + + _validation = { + 'enabled': {'required': True}, + } + + _attribute_map = { + 'enabled': {'key': 'enabled', 'type': 'bool'}, + 'enforcement': {'key': 'enforcement', 'type': 'str'}, + } + + def __init__( + self, + *, + enabled: bool, + enforcement: Optional[Union[str, "VirtualNetworkEncryptionEnforcement"]] = None, + **kwargs + ): + """ + :keyword enabled: Required. Indicates if encryption is enabled on the virtual network. + :paramtype enabled: bool + :keyword enforcement: If the encrypted VNet allows VM that does not support encryption. + Possible values include: "DropUnencrypted", "AllowUnencrypted". + :paramtype enforcement: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkEncryptionEnforcement + """ + super(VirtualNetworkEncryption, self).__init__(**kwargs) + self.enabled = enabled + self.enforcement = enforcement + + +class VirtualNetworkGateway(Resource): + """A common class for general resource information. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar extended_location: The extended location of type local virtual network gateway. + :vartype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar ip_configurations: IP configurations for virtual network gateway. + :vartype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayIPConfiguration] + :ivar gateway_type: The type of this virtual network gateway. Possible values include: "Vpn", + "ExpressRoute", "LocalGateway". + :vartype gateway_type: str or ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayType + :ivar vpn_type: The type of this virtual network gateway. Possible values include: + "PolicyBased", "RouteBased". + :vartype vpn_type: str or ~azure.mgmt.network.v2021_08_01.models.VpnType + :ivar vpn_gateway_generation: The generation for this VirtualNetworkGateway. Must be None if + gatewayType is not VPN. Possible values include: "None", "Generation1", "Generation2". + :vartype vpn_gateway_generation: str or + ~azure.mgmt.network.v2021_08_01.models.VpnGatewayGeneration + :ivar enable_bgp: Whether BGP is enabled for this virtual network gateway or not. + :vartype enable_bgp: bool + :ivar enable_private_ip_address: Whether private IP needs to be enabled on this gateway for + connections or not. + :vartype enable_private_ip_address: bool + :ivar active: ActiveActive flag. + :vartype active: bool + :ivar disable_ip_sec_replay_protection: disableIPSecReplayProtection flag. + :vartype disable_ip_sec_replay_protection: bool + :ivar gateway_default_site: The reference to the LocalNetworkGateway resource which represents + local network site having default routes. Assign Null value in case of removing existing + default site setting. + :vartype gateway_default_site: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar sku: The reference to the VirtualNetworkGatewaySku resource which represents the SKU + selected for Virtual network gateway. + :vartype sku: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewaySku + :ivar vpn_client_configuration: The reference to the VpnClientConfiguration resource which + represents the P2S VpnClient configurations. + :vartype vpn_client_configuration: + ~azure.mgmt.network.v2021_08_01.models.VpnClientConfiguration + :ivar bgp_settings: Virtual network gateway's BGP speaker settings. + :vartype bgp_settings: ~azure.mgmt.network.v2021_08_01.models.BgpSettings + :ivar custom_routes: The reference to the address space resource which represents the custom + routes address space specified by the customer for virtual network gateway and VpnClient. + :vartype custom_routes: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :ivar resource_guid: The resource GUID property of the virtual network gateway resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the virtual network gateway resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar enable_dns_forwarding: Whether dns forwarding is enabled or not. + :vartype enable_dns_forwarding: bool + :ivar inbound_dns_forwarding_endpoint: The IP address allocated by the gateway to which dns + requests can be sent. + :vartype inbound_dns_forwarding_endpoint: str + :ivar v_net_extended_location_resource_id: Customer vnet resource id. VirtualNetworkGateway of + type local gateway is associated with the customer vnet. + :vartype v_net_extended_location_resource_id: str + :ivar nat_rules: NatRules for virtual network gateway. + :vartype nat_rules: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule] + :ivar enable_bgp_route_translation_for_nat: EnableBgpRouteTranslationForNat flag. + :vartype enable_bgp_route_translation_for_nat: bool + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'inbound_dns_forwarding_endpoint': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'extended_location': {'key': 'extendedLocation', 'type': 'ExtendedLocation'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[VirtualNetworkGatewayIPConfiguration]'}, + 'gateway_type': {'key': 'properties.gatewayType', 'type': 'str'}, + 'vpn_type': {'key': 'properties.vpnType', 'type': 'str'}, + 'vpn_gateway_generation': {'key': 'properties.vpnGatewayGeneration', 'type': 'str'}, + 'enable_bgp': {'key': 'properties.enableBgp', 'type': 'bool'}, + 'enable_private_ip_address': {'key': 'properties.enablePrivateIpAddress', 'type': 'bool'}, + 'active': {'key': 'properties.activeActive', 'type': 'bool'}, + 'disable_ip_sec_replay_protection': {'key': 'properties.disableIPSecReplayProtection', 'type': 'bool'}, + 'gateway_default_site': {'key': 'properties.gatewayDefaultSite', 'type': 'SubResource'}, + 'sku': {'key': 'properties.sku', 'type': 'VirtualNetworkGatewaySku'}, + 'vpn_client_configuration': {'key': 'properties.vpnClientConfiguration', 'type': 'VpnClientConfiguration'}, + 'bgp_settings': {'key': 'properties.bgpSettings', 'type': 'BgpSettings'}, + 'custom_routes': {'key': 'properties.customRoutes', 'type': 'AddressSpace'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'enable_dns_forwarding': {'key': 'properties.enableDnsForwarding', 'type': 'bool'}, + 'inbound_dns_forwarding_endpoint': {'key': 'properties.inboundDnsForwardingEndpoint', 'type': 'str'}, + 'v_net_extended_location_resource_id': {'key': 'properties.vNetExtendedLocationResourceId', 'type': 'str'}, + 'nat_rules': {'key': 'properties.natRules', 'type': '[VirtualNetworkGatewayNatRule]'}, + 'enable_bgp_route_translation_for_nat': {'key': 'properties.enableBgpRouteTranslationForNat', 'type': 'bool'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + extended_location: Optional["ExtendedLocation"] = None, + ip_configurations: Optional[List["VirtualNetworkGatewayIPConfiguration"]] = None, + gateway_type: Optional[Union[str, "VirtualNetworkGatewayType"]] = None, + vpn_type: Optional[Union[str, "VpnType"]] = None, + vpn_gateway_generation: Optional[Union[str, "VpnGatewayGeneration"]] = None, + enable_bgp: Optional[bool] = None, + enable_private_ip_address: Optional[bool] = None, + active: Optional[bool] = None, + disable_ip_sec_replay_protection: Optional[bool] = None, + gateway_default_site: Optional["SubResource"] = None, + sku: Optional["VirtualNetworkGatewaySku"] = None, + vpn_client_configuration: Optional["VpnClientConfiguration"] = None, + bgp_settings: Optional["BgpSettings"] = None, + custom_routes: Optional["AddressSpace"] = None, + enable_dns_forwarding: Optional[bool] = None, + v_net_extended_location_resource_id: Optional[str] = None, + nat_rules: Optional[List["VirtualNetworkGatewayNatRule"]] = None, + enable_bgp_route_translation_for_nat: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword extended_location: The extended location of type local virtual network gateway. + :paramtype extended_location: ~azure.mgmt.network.v2021_08_01.models.ExtendedLocation + :keyword ip_configurations: IP configurations for virtual network gateway. + :paramtype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayIPConfiguration] + :keyword gateway_type: The type of this virtual network gateway. Possible values include: + "Vpn", "ExpressRoute", "LocalGateway". + :paramtype gateway_type: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayType + :keyword vpn_type: The type of this virtual network gateway. Possible values include: + "PolicyBased", "RouteBased". + :paramtype vpn_type: str or ~azure.mgmt.network.v2021_08_01.models.VpnType + :keyword vpn_gateway_generation: The generation for this VirtualNetworkGateway. Must be None if + gatewayType is not VPN. Possible values include: "None", "Generation1", "Generation2". + :paramtype vpn_gateway_generation: str or + ~azure.mgmt.network.v2021_08_01.models.VpnGatewayGeneration + :keyword enable_bgp: Whether BGP is enabled for this virtual network gateway or not. + :paramtype enable_bgp: bool + :keyword enable_private_ip_address: Whether private IP needs to be enabled on this gateway for + connections or not. + :paramtype enable_private_ip_address: bool + :keyword active: ActiveActive flag. + :paramtype active: bool + :keyword disable_ip_sec_replay_protection: disableIPSecReplayProtection flag. + :paramtype disable_ip_sec_replay_protection: bool + :keyword gateway_default_site: The reference to the LocalNetworkGateway resource which + represents local network site having default routes. Assign Null value in case of removing + existing default site setting. + :paramtype gateway_default_site: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword sku: The reference to the VirtualNetworkGatewaySku resource which represents the SKU + selected for Virtual network gateway. + :paramtype sku: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewaySku + :keyword vpn_client_configuration: The reference to the VpnClientConfiguration resource which + represents the P2S VpnClient configurations. + :paramtype vpn_client_configuration: + ~azure.mgmt.network.v2021_08_01.models.VpnClientConfiguration + :keyword bgp_settings: Virtual network gateway's BGP speaker settings. + :paramtype bgp_settings: ~azure.mgmt.network.v2021_08_01.models.BgpSettings + :keyword custom_routes: The reference to the address space resource which represents the custom + routes address space specified by the customer for virtual network gateway and VpnClient. + :paramtype custom_routes: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :keyword enable_dns_forwarding: Whether dns forwarding is enabled or not. + :paramtype enable_dns_forwarding: bool + :keyword v_net_extended_location_resource_id: Customer vnet resource id. VirtualNetworkGateway + of type local gateway is associated with the customer vnet. + :paramtype v_net_extended_location_resource_id: str + :keyword nat_rules: NatRules for virtual network gateway. + :paramtype nat_rules: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule] + :keyword enable_bgp_route_translation_for_nat: EnableBgpRouteTranslationForNat flag. + :paramtype enable_bgp_route_translation_for_nat: bool + """ + super(VirtualNetworkGateway, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.extended_location = extended_location + self.etag = None + self.ip_configurations = ip_configurations + self.gateway_type = gateway_type + self.vpn_type = vpn_type + self.vpn_gateway_generation = vpn_gateway_generation + self.enable_bgp = enable_bgp + self.enable_private_ip_address = enable_private_ip_address + self.active = active + self.disable_ip_sec_replay_protection = disable_ip_sec_replay_protection + self.gateway_default_site = gateway_default_site + self.sku = sku + self.vpn_client_configuration = vpn_client_configuration + self.bgp_settings = bgp_settings + self.custom_routes = custom_routes + self.resource_guid = None + self.provisioning_state = None + self.enable_dns_forwarding = enable_dns_forwarding + self.inbound_dns_forwarding_endpoint = None + self.v_net_extended_location_resource_id = v_net_extended_location_resource_id + self.nat_rules = nat_rules + self.enable_bgp_route_translation_for_nat = enable_bgp_route_translation_for_nat + + +class VirtualNetworkGatewayConnection(Resource): + """A common class for general resource information. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar authorization_key: The authorizationKey. + :vartype authorization_key: str + :ivar virtual_network_gateway1: Required. The reference to virtual network gateway resource. + :vartype virtual_network_gateway1: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway + :ivar virtual_network_gateway2: The reference to virtual network gateway resource. + :vartype virtual_network_gateway2: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway + :ivar local_network_gateway2: The reference to local network gateway resource. + :vartype local_network_gateway2: ~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway + :ivar ingress_nat_rules: List of ingress NatRules. + :vartype ingress_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar egress_nat_rules: List of egress NatRules. + :vartype egress_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar connection_type: Required. Gateway connection type. Possible values include: "IPsec", + "Vnet2Vnet", "ExpressRoute", "VPNClient". + :vartype connection_type: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionType + :ivar connection_protocol: Connection protocol used for this connection. Possible values + include: "IKEv2", "IKEv1". + :vartype connection_protocol: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionProtocol + :ivar routing_weight: The routing weight. + :vartype routing_weight: int + :ivar dpd_timeout_seconds: The dead peer detection timeout of this connection in seconds. + :vartype dpd_timeout_seconds: int + :ivar connection_mode: The connection mode for this connection. Possible values include: + "Default", "ResponderOnly", "InitiatorOnly". + :vartype connection_mode: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionMode + :ivar shared_key: The IPSec shared key. + :vartype shared_key: str + :ivar connection_status: Virtual Network Gateway connection status. Possible values include: + "Unknown", "Connecting", "Connected", "NotConnected". + :vartype connection_status: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionStatus + :ivar tunnel_connection_status: Collection of all tunnels' connection health status. + :vartype tunnel_connection_status: + list[~azure.mgmt.network.v2021_08_01.models.TunnelConnectionHealth] + :ivar egress_bytes_transferred: The egress bytes transferred in this connection. + :vartype egress_bytes_transferred: long + :ivar ingress_bytes_transferred: The ingress bytes transferred in this connection. + :vartype ingress_bytes_transferred: long + :ivar peer: The reference to peerings resource. + :vartype peer: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar enable_bgp: EnableBgp flag. + :vartype enable_bgp: bool + :ivar gateway_custom_bgp_ip_addresses: GatewayCustomBgpIpAddresses to be used for virtual + network gateway Connection. + :vartype gateway_custom_bgp_ip_addresses: + list[~azure.mgmt.network.v2021_08_01.models.GatewayCustomBgpIpAddressIpConfiguration] + :ivar use_local_azure_ip_address: Use private local Azure IP for the connection. + :vartype use_local_azure_ip_address: bool + :ivar use_policy_based_traffic_selectors: Enable policy-based traffic selectors. + :vartype use_policy_based_traffic_selectors: bool + :ivar ipsec_policies: The IPSec Policies to be considered by this connection. + :vartype ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :ivar traffic_selector_policies: The Traffic Selector Policies to be considered by this + connection. + :vartype traffic_selector_policies: + list[~azure.mgmt.network.v2021_08_01.models.TrafficSelectorPolicy] + :ivar resource_guid: The resource GUID property of the virtual network gateway connection + resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the virtual network gateway connection + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar express_route_gateway_bypass: Bypass ExpressRoute Gateway for data forwarding. + :vartype express_route_gateway_bypass: bool + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'virtual_network_gateway1': {'required': True}, + 'connection_type': {'required': True}, + 'connection_status': {'readonly': True}, + 'tunnel_connection_status': {'readonly': True}, + 'egress_bytes_transferred': {'readonly': True}, + 'ingress_bytes_transferred': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'}, + 'virtual_network_gateway1': {'key': 'properties.virtualNetworkGateway1', 'type': 'VirtualNetworkGateway'}, + 'virtual_network_gateway2': {'key': 'properties.virtualNetworkGateway2', 'type': 'VirtualNetworkGateway'}, + 'local_network_gateway2': {'key': 'properties.localNetworkGateway2', 'type': 'LocalNetworkGateway'}, + 'ingress_nat_rules': {'key': 'properties.ingressNatRules', 'type': '[SubResource]'}, + 'egress_nat_rules': {'key': 'properties.egressNatRules', 'type': '[SubResource]'}, + 'connection_type': {'key': 'properties.connectionType', 'type': 'str'}, + 'connection_protocol': {'key': 'properties.connectionProtocol', 'type': 'str'}, + 'routing_weight': {'key': 'properties.routingWeight', 'type': 'int'}, + 'dpd_timeout_seconds': {'key': 'properties.dpdTimeoutSeconds', 'type': 'int'}, + 'connection_mode': {'key': 'properties.connectionMode', 'type': 'str'}, + 'shared_key': {'key': 'properties.sharedKey', 'type': 'str'}, + 'connection_status': {'key': 'properties.connectionStatus', 'type': 'str'}, + 'tunnel_connection_status': {'key': 'properties.tunnelConnectionStatus', 'type': '[TunnelConnectionHealth]'}, + 'egress_bytes_transferred': {'key': 'properties.egressBytesTransferred', 'type': 'long'}, + 'ingress_bytes_transferred': {'key': 'properties.ingressBytesTransferred', 'type': 'long'}, + 'peer': {'key': 'properties.peer', 'type': 'SubResource'}, + 'enable_bgp': {'key': 'properties.enableBgp', 'type': 'bool'}, + 'gateway_custom_bgp_ip_addresses': {'key': 'properties.gatewayCustomBgpIpAddresses', 'type': '[GatewayCustomBgpIpAddressIpConfiguration]'}, + 'use_local_azure_ip_address': {'key': 'properties.useLocalAzureIpAddress', 'type': 'bool'}, + 'use_policy_based_traffic_selectors': {'key': 'properties.usePolicyBasedTrafficSelectors', 'type': 'bool'}, + 'ipsec_policies': {'key': 'properties.ipsecPolicies', 'type': '[IpsecPolicy]'}, + 'traffic_selector_policies': {'key': 'properties.trafficSelectorPolicies', 'type': '[TrafficSelectorPolicy]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'express_route_gateway_bypass': {'key': 'properties.expressRouteGatewayBypass', 'type': 'bool'}, + } + + def __init__( + self, + *, + virtual_network_gateway1: "VirtualNetworkGateway", + connection_type: Union[str, "VirtualNetworkGatewayConnectionType"], + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + authorization_key: Optional[str] = None, + virtual_network_gateway2: Optional["VirtualNetworkGateway"] = None, + local_network_gateway2: Optional["LocalNetworkGateway"] = None, + ingress_nat_rules: Optional[List["SubResource"]] = None, + egress_nat_rules: Optional[List["SubResource"]] = None, + connection_protocol: Optional[Union[str, "VirtualNetworkGatewayConnectionProtocol"]] = None, + routing_weight: Optional[int] = None, + dpd_timeout_seconds: Optional[int] = None, + connection_mode: Optional[Union[str, "VirtualNetworkGatewayConnectionMode"]] = None, + shared_key: Optional[str] = None, + peer: Optional["SubResource"] = None, + enable_bgp: Optional[bool] = None, + gateway_custom_bgp_ip_addresses: Optional[List["GatewayCustomBgpIpAddressIpConfiguration"]] = None, + use_local_azure_ip_address: Optional[bool] = None, + use_policy_based_traffic_selectors: Optional[bool] = None, + ipsec_policies: Optional[List["IpsecPolicy"]] = None, + traffic_selector_policies: Optional[List["TrafficSelectorPolicy"]] = None, + express_route_gateway_bypass: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword authorization_key: The authorizationKey. + :paramtype authorization_key: str + :keyword virtual_network_gateway1: Required. The reference to virtual network gateway resource. + :paramtype virtual_network_gateway1: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway + :keyword virtual_network_gateway2: The reference to virtual network gateway resource. + :paramtype virtual_network_gateway2: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway + :keyword local_network_gateway2: The reference to local network gateway resource. + :paramtype local_network_gateway2: ~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway + :keyword ingress_nat_rules: List of ingress NatRules. + :paramtype ingress_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword egress_nat_rules: List of egress NatRules. + :paramtype egress_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword connection_type: Required. Gateway connection type. Possible values include: "IPsec", + "Vnet2Vnet", "ExpressRoute", "VPNClient". + :paramtype connection_type: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionType + :keyword connection_protocol: Connection protocol used for this connection. Possible values + include: "IKEv2", "IKEv1". + :paramtype connection_protocol: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionProtocol + :keyword routing_weight: The routing weight. + :paramtype routing_weight: int + :keyword dpd_timeout_seconds: The dead peer detection timeout of this connection in seconds. + :paramtype dpd_timeout_seconds: int + :keyword connection_mode: The connection mode for this connection. Possible values include: + "Default", "ResponderOnly", "InitiatorOnly". + :paramtype connection_mode: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionMode + :keyword shared_key: The IPSec shared key. + :paramtype shared_key: str + :keyword peer: The reference to peerings resource. + :paramtype peer: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword enable_bgp: EnableBgp flag. + :paramtype enable_bgp: bool + :keyword gateway_custom_bgp_ip_addresses: GatewayCustomBgpIpAddresses to be used for virtual + network gateway Connection. + :paramtype gateway_custom_bgp_ip_addresses: + list[~azure.mgmt.network.v2021_08_01.models.GatewayCustomBgpIpAddressIpConfiguration] + :keyword use_local_azure_ip_address: Use private local Azure IP for the connection. + :paramtype use_local_azure_ip_address: bool + :keyword use_policy_based_traffic_selectors: Enable policy-based traffic selectors. + :paramtype use_policy_based_traffic_selectors: bool + :keyword ipsec_policies: The IPSec Policies to be considered by this connection. + :paramtype ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :keyword traffic_selector_policies: The Traffic Selector Policies to be considered by this + connection. + :paramtype traffic_selector_policies: + list[~azure.mgmt.network.v2021_08_01.models.TrafficSelectorPolicy] + :keyword express_route_gateway_bypass: Bypass ExpressRoute Gateway for data forwarding. + :paramtype express_route_gateway_bypass: bool + """ + super(VirtualNetworkGatewayConnection, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.authorization_key = authorization_key + self.virtual_network_gateway1 = virtual_network_gateway1 + self.virtual_network_gateway2 = virtual_network_gateway2 + self.local_network_gateway2 = local_network_gateway2 + self.ingress_nat_rules = ingress_nat_rules + self.egress_nat_rules = egress_nat_rules + self.connection_type = connection_type + self.connection_protocol = connection_protocol + self.routing_weight = routing_weight + self.dpd_timeout_seconds = dpd_timeout_seconds + self.connection_mode = connection_mode + self.shared_key = shared_key + self.connection_status = None + self.tunnel_connection_status = None + self.egress_bytes_transferred = None + self.ingress_bytes_transferred = None + self.peer = peer + self.enable_bgp = enable_bgp + self.gateway_custom_bgp_ip_addresses = gateway_custom_bgp_ip_addresses + self.use_local_azure_ip_address = use_local_azure_ip_address + self.use_policy_based_traffic_selectors = use_policy_based_traffic_selectors + self.ipsec_policies = ipsec_policies + self.traffic_selector_policies = traffic_selector_policies + self.resource_guid = None + self.provisioning_state = None + self.express_route_gateway_bypass = express_route_gateway_bypass + + +class VirtualNetworkGatewayConnectionListEntity(Resource): + """A common class for general resource information. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar authorization_key: The authorizationKey. + :vartype authorization_key: str + :ivar virtual_network_gateway1: Required. The reference to virtual network gateway resource. + :vartype virtual_network_gateway1: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkConnectionGatewayReference + :ivar virtual_network_gateway2: The reference to virtual network gateway resource. + :vartype virtual_network_gateway2: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkConnectionGatewayReference + :ivar local_network_gateway2: The reference to local network gateway resource. + :vartype local_network_gateway2: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkConnectionGatewayReference + :ivar connection_type: Required. Gateway connection type. Possible values include: "IPsec", + "Vnet2Vnet", "ExpressRoute", "VPNClient". + :vartype connection_type: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionType + :ivar connection_protocol: Connection protocol used for this connection. Possible values + include: "IKEv2", "IKEv1". + :vartype connection_protocol: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionProtocol + :ivar routing_weight: The routing weight. + :vartype routing_weight: int + :ivar connection_mode: The connection mode for this connection. Possible values include: + "Default", "ResponderOnly", "InitiatorOnly". + :vartype connection_mode: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionMode + :ivar shared_key: The IPSec shared key. + :vartype shared_key: str + :ivar connection_status: Virtual Network Gateway connection status. Possible values include: + "Unknown", "Connecting", "Connected", "NotConnected". + :vartype connection_status: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionStatus + :ivar tunnel_connection_status: Collection of all tunnels' connection health status. + :vartype tunnel_connection_status: + list[~azure.mgmt.network.v2021_08_01.models.TunnelConnectionHealth] + :ivar egress_bytes_transferred: The egress bytes transferred in this connection. + :vartype egress_bytes_transferred: long + :ivar ingress_bytes_transferred: The ingress bytes transferred in this connection. + :vartype ingress_bytes_transferred: long + :ivar peer: The reference to peerings resource. + :vartype peer: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar enable_bgp: EnableBgp flag. + :vartype enable_bgp: bool + :ivar gateway_custom_bgp_ip_addresses: GatewayCustomBgpIpAddresses to be used for virtual + network gateway Connection. + :vartype gateway_custom_bgp_ip_addresses: + list[~azure.mgmt.network.v2021_08_01.models.GatewayCustomBgpIpAddressIpConfiguration] + :ivar use_policy_based_traffic_selectors: Enable policy-based traffic selectors. + :vartype use_policy_based_traffic_selectors: bool + :ivar ipsec_policies: The IPSec Policies to be considered by this connection. + :vartype ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :ivar traffic_selector_policies: The Traffic Selector Policies to be considered by this + connection. + :vartype traffic_selector_policies: + list[~azure.mgmt.network.v2021_08_01.models.TrafficSelectorPolicy] + :ivar resource_guid: The resource GUID property of the virtual network gateway connection + resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the virtual network gateway connection + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar express_route_gateway_bypass: Bypass ExpressRoute Gateway for data forwarding. + :vartype express_route_gateway_bypass: bool + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'virtual_network_gateway1': {'required': True}, + 'connection_type': {'required': True}, + 'connection_status': {'readonly': True}, + 'tunnel_connection_status': {'readonly': True}, + 'egress_bytes_transferred': {'readonly': True}, + 'ingress_bytes_transferred': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'}, + 'virtual_network_gateway1': {'key': 'properties.virtualNetworkGateway1', 'type': 'VirtualNetworkConnectionGatewayReference'}, + 'virtual_network_gateway2': {'key': 'properties.virtualNetworkGateway2', 'type': 'VirtualNetworkConnectionGatewayReference'}, + 'local_network_gateway2': {'key': 'properties.localNetworkGateway2', 'type': 'VirtualNetworkConnectionGatewayReference'}, + 'connection_type': {'key': 'properties.connectionType', 'type': 'str'}, + 'connection_protocol': {'key': 'properties.connectionProtocol', 'type': 'str'}, + 'routing_weight': {'key': 'properties.routingWeight', 'type': 'int'}, + 'connection_mode': {'key': 'properties.connectionMode', 'type': 'str'}, + 'shared_key': {'key': 'properties.sharedKey', 'type': 'str'}, + 'connection_status': {'key': 'properties.connectionStatus', 'type': 'str'}, + 'tunnel_connection_status': {'key': 'properties.tunnelConnectionStatus', 'type': '[TunnelConnectionHealth]'}, + 'egress_bytes_transferred': {'key': 'properties.egressBytesTransferred', 'type': 'long'}, + 'ingress_bytes_transferred': {'key': 'properties.ingressBytesTransferred', 'type': 'long'}, + 'peer': {'key': 'properties.peer', 'type': 'SubResource'}, + 'enable_bgp': {'key': 'properties.enableBgp', 'type': 'bool'}, + 'gateway_custom_bgp_ip_addresses': {'key': 'properties.gatewayCustomBgpIpAddresses', 'type': '[GatewayCustomBgpIpAddressIpConfiguration]'}, + 'use_policy_based_traffic_selectors': {'key': 'properties.usePolicyBasedTrafficSelectors', 'type': 'bool'}, + 'ipsec_policies': {'key': 'properties.ipsecPolicies', 'type': '[IpsecPolicy]'}, + 'traffic_selector_policies': {'key': 'properties.trafficSelectorPolicies', 'type': '[TrafficSelectorPolicy]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'express_route_gateway_bypass': {'key': 'properties.expressRouteGatewayBypass', 'type': 'bool'}, + } + + def __init__( + self, + *, + virtual_network_gateway1: "VirtualNetworkConnectionGatewayReference", + connection_type: Union[str, "VirtualNetworkGatewayConnectionType"], + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + authorization_key: Optional[str] = None, + virtual_network_gateway2: Optional["VirtualNetworkConnectionGatewayReference"] = None, + local_network_gateway2: Optional["VirtualNetworkConnectionGatewayReference"] = None, + connection_protocol: Optional[Union[str, "VirtualNetworkGatewayConnectionProtocol"]] = None, + routing_weight: Optional[int] = None, + connection_mode: Optional[Union[str, "VirtualNetworkGatewayConnectionMode"]] = None, + shared_key: Optional[str] = None, + peer: Optional["SubResource"] = None, + enable_bgp: Optional[bool] = None, + gateway_custom_bgp_ip_addresses: Optional[List["GatewayCustomBgpIpAddressIpConfiguration"]] = None, + use_policy_based_traffic_selectors: Optional[bool] = None, + ipsec_policies: Optional[List["IpsecPolicy"]] = None, + traffic_selector_policies: Optional[List["TrafficSelectorPolicy"]] = None, + express_route_gateway_bypass: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword authorization_key: The authorizationKey. + :paramtype authorization_key: str + :keyword virtual_network_gateway1: Required. The reference to virtual network gateway resource. + :paramtype virtual_network_gateway1: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkConnectionGatewayReference + :keyword virtual_network_gateway2: The reference to virtual network gateway resource. + :paramtype virtual_network_gateway2: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkConnectionGatewayReference + :keyword local_network_gateway2: The reference to local network gateway resource. + :paramtype local_network_gateway2: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkConnectionGatewayReference + :keyword connection_type: Required. Gateway connection type. Possible values include: "IPsec", + "Vnet2Vnet", "ExpressRoute", "VPNClient". + :paramtype connection_type: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionType + :keyword connection_protocol: Connection protocol used for this connection. Possible values + include: "IKEv2", "IKEv1". + :paramtype connection_protocol: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionProtocol + :keyword routing_weight: The routing weight. + :paramtype routing_weight: int + :keyword connection_mode: The connection mode for this connection. Possible values include: + "Default", "ResponderOnly", "InitiatorOnly". + :paramtype connection_mode: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionMode + :keyword shared_key: The IPSec shared key. + :paramtype shared_key: str + :keyword peer: The reference to peerings resource. + :paramtype peer: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword enable_bgp: EnableBgp flag. + :paramtype enable_bgp: bool + :keyword gateway_custom_bgp_ip_addresses: GatewayCustomBgpIpAddresses to be used for virtual + network gateway Connection. + :paramtype gateway_custom_bgp_ip_addresses: + list[~azure.mgmt.network.v2021_08_01.models.GatewayCustomBgpIpAddressIpConfiguration] + :keyword use_policy_based_traffic_selectors: Enable policy-based traffic selectors. + :paramtype use_policy_based_traffic_selectors: bool + :keyword ipsec_policies: The IPSec Policies to be considered by this connection. + :paramtype ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :keyword traffic_selector_policies: The Traffic Selector Policies to be considered by this + connection. + :paramtype traffic_selector_policies: + list[~azure.mgmt.network.v2021_08_01.models.TrafficSelectorPolicy] + :keyword express_route_gateway_bypass: Bypass ExpressRoute Gateway for data forwarding. + :paramtype express_route_gateway_bypass: bool + """ + super(VirtualNetworkGatewayConnectionListEntity, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.authorization_key = authorization_key + self.virtual_network_gateway1 = virtual_network_gateway1 + self.virtual_network_gateway2 = virtual_network_gateway2 + self.local_network_gateway2 = local_network_gateway2 + self.connection_type = connection_type + self.connection_protocol = connection_protocol + self.routing_weight = routing_weight + self.connection_mode = connection_mode + self.shared_key = shared_key + self.connection_status = None + self.tunnel_connection_status = None + self.egress_bytes_transferred = None + self.ingress_bytes_transferred = None + self.peer = peer + self.enable_bgp = enable_bgp + self.gateway_custom_bgp_ip_addresses = gateway_custom_bgp_ip_addresses + self.use_policy_based_traffic_selectors = use_policy_based_traffic_selectors + self.ipsec_policies = ipsec_policies + self.traffic_selector_policies = traffic_selector_policies + self.resource_guid = None + self.provisioning_state = None + self.express_route_gateway_bypass = express_route_gateway_bypass + + +class VirtualNetworkGatewayConnectionListResult(msrest.serialization.Model): + """Response for the ListVirtualNetworkGatewayConnections API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of VirtualNetworkGatewayConnection resources that exists in a resource + group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualNetworkGatewayConnection]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualNetworkGatewayConnection"]] = None, + **kwargs + ): + """ + :keyword value: A list of VirtualNetworkGatewayConnection resources that exists in a resource + group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection] + """ + super(VirtualNetworkGatewayConnectionListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class VirtualNetworkGatewayIPConfiguration(SubResource): + """IP configuration for virtual network gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar private_ip_allocation_method: The private IP address allocation method. Possible values + include: "Static", "Dynamic". + :vartype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :ivar subnet: The reference to the subnet resource. + :vartype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar public_ip_address: The reference to the public IP resource. + :vartype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar private_ip_address: Private IP Address for this gateway. + :vartype private_ip_address: str + :ivar provisioning_state: The provisioning state of the virtual network gateway IP + configuration resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'private_ip_address': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'private_ip_allocation_method': {'key': 'properties.privateIPAllocationMethod', 'type': 'str'}, + 'subnet': {'key': 'properties.subnet', 'type': 'SubResource'}, + 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'SubResource'}, + 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + private_ip_allocation_method: Optional[Union[str, "IPAllocationMethod"]] = None, + subnet: Optional["SubResource"] = None, + public_ip_address: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword private_ip_allocation_method: The private IP address allocation method. Possible + values include: "Static", "Dynamic". + :paramtype private_ip_allocation_method: str or + ~azure.mgmt.network.v2021_08_01.models.IPAllocationMethod + :keyword subnet: The reference to the subnet resource. + :paramtype subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword public_ip_address: The reference to the public IP resource. + :paramtype public_ip_address: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(VirtualNetworkGatewayIPConfiguration, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.private_ip_allocation_method = private_ip_allocation_method + self.subnet = subnet + self.public_ip_address = public_ip_address + self.private_ip_address = None + self.provisioning_state = None + + +class VirtualNetworkGatewayListConnectionsResult(msrest.serialization.Model): + """Response for the VirtualNetworkGatewayListConnections API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of VirtualNetworkGatewayConnection resources that exists in a resource + group. + :vartype value: + list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionListEntity] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualNetworkGatewayConnectionListEntity]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualNetworkGatewayConnectionListEntity"]] = None, + **kwargs + ): + """ + :keyword value: A list of VirtualNetworkGatewayConnection resources that exists in a resource + group. + :paramtype value: + list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionListEntity] + """ + super(VirtualNetworkGatewayListConnectionsResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class VirtualNetworkGatewayListResult(msrest.serialization.Model): + """Response for the ListVirtualNetworkGateways API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of VirtualNetworkGateway resources that exists in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualNetworkGateway]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualNetworkGateway"]] = None, + **kwargs + ): + """ + :keyword value: A list of VirtualNetworkGateway resources that exists in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway] + """ + super(VirtualNetworkGatewayListResult, self).__init__(**kwargs) + self.value = value + self.next_link = None + + +class VirtualNetworkGatewayNatRule(SubResource): + """VirtualNetworkGatewayNatRule Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar provisioning_state: The provisioning state of the NAT Rule resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar type_properties_type: The type of NAT rule for VPN NAT. Possible values include: + "Static", "Dynamic". + :vartype type_properties_type: str or ~azure.mgmt.network.v2021_08_01.models.VpnNatRuleType + :ivar mode: The Source NAT direction of a VPN NAT. Possible values include: "EgressSnat", + "IngressSnat". + :vartype mode: str or ~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMode + :ivar internal_mappings: The private IP address internal mapping for NAT. + :vartype internal_mappings: list[~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMapping] + :ivar external_mappings: The private IP address external mapping for NAT. + :vartype external_mappings: list[~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMapping] + :ivar ip_configuration_id: The IP Configuration ID this NAT rule applies to. + :vartype ip_configuration_id: str + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'type_properties_type': {'key': 'properties.type', 'type': 'str'}, + 'mode': {'key': 'properties.mode', 'type': 'str'}, + 'internal_mappings': {'key': 'properties.internalMappings', 'type': '[VpnNatRuleMapping]'}, + 'external_mappings': {'key': 'properties.externalMappings', 'type': '[VpnNatRuleMapping]'}, + 'ip_configuration_id': {'key': 'properties.ipConfigurationId', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + type_properties_type: Optional[Union[str, "VpnNatRuleType"]] = None, + mode: Optional[Union[str, "VpnNatRuleMode"]] = None, + internal_mappings: Optional[List["VpnNatRuleMapping"]] = None, + external_mappings: Optional[List["VpnNatRuleMapping"]] = None, + ip_configuration_id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword type_properties_type: The type of NAT rule for VPN NAT. Possible values include: + "Static", "Dynamic". + :paramtype type_properties_type: str or ~azure.mgmt.network.v2021_08_01.models.VpnNatRuleType + :keyword mode: The Source NAT direction of a VPN NAT. Possible values include: "EgressSnat", + "IngressSnat". + :paramtype mode: str or ~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMode + :keyword internal_mappings: The private IP address internal mapping for NAT. + :paramtype internal_mappings: list[~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMapping] + :keyword external_mappings: The private IP address external mapping for NAT. + :paramtype external_mappings: list[~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMapping] + :keyword ip_configuration_id: The IP Configuration ID this NAT rule applies to. + :paramtype ip_configuration_id: str + """ + super(VirtualNetworkGatewayNatRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.provisioning_state = None + self.type_properties_type = type_properties_type + self.mode = mode + self.internal_mappings = internal_mappings + self.external_mappings = external_mappings + self.ip_configuration_id = ip_configuration_id + + +class VirtualNetworkGatewaySku(msrest.serialization.Model): + """VirtualNetworkGatewaySku details. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: Gateway SKU name. Possible values include: "Basic", "HighPerformance", "Standard", + "UltraPerformance", "VpnGw1", "VpnGw2", "VpnGw3", "VpnGw4", "VpnGw5", "VpnGw1AZ", "VpnGw2AZ", + "VpnGw3AZ", "VpnGw4AZ", "VpnGw5AZ", "ErGw1AZ", "ErGw2AZ", "ErGw3AZ". + :vartype name: str or ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewaySkuName + :ivar tier: Gateway SKU tier. Possible values include: "Basic", "HighPerformance", "Standard", + "UltraPerformance", "VpnGw1", "VpnGw2", "VpnGw3", "VpnGw4", "VpnGw5", "VpnGw1AZ", "VpnGw2AZ", + "VpnGw3AZ", "VpnGw4AZ", "VpnGw5AZ", "ErGw1AZ", "ErGw2AZ", "ErGw3AZ". + :vartype tier: str or ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewaySkuTier + :ivar capacity: The capacity. + :vartype capacity: int + """ + + _validation = { + 'capacity': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + 'capacity': {'key': 'capacity', 'type': 'int'}, + } + + def __init__( + self, + *, + name: Optional[Union[str, "VirtualNetworkGatewaySkuName"]] = None, + tier: Optional[Union[str, "VirtualNetworkGatewaySkuTier"]] = None, + **kwargs + ): + """ + :keyword name: Gateway SKU name. Possible values include: "Basic", "HighPerformance", + "Standard", "UltraPerformance", "VpnGw1", "VpnGw2", "VpnGw3", "VpnGw4", "VpnGw5", "VpnGw1AZ", + "VpnGw2AZ", "VpnGw3AZ", "VpnGw4AZ", "VpnGw5AZ", "ErGw1AZ", "ErGw2AZ", "ErGw3AZ". + :paramtype name: str or ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewaySkuName + :keyword tier: Gateway SKU tier. Possible values include: "Basic", "HighPerformance", + "Standard", "UltraPerformance", "VpnGw1", "VpnGw2", "VpnGw3", "VpnGw4", "VpnGw5", "VpnGw1AZ", + "VpnGw2AZ", "VpnGw3AZ", "VpnGw4AZ", "VpnGw5AZ", "ErGw1AZ", "ErGw2AZ", "ErGw3AZ". + :paramtype tier: str or ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewaySkuTier + """ + super(VirtualNetworkGatewaySku, self).__init__(**kwargs) + self.name = name + self.tier = tier + self.capacity = None + + +class VirtualNetworkListResult(msrest.serialization.Model): + """Response for the ListVirtualNetworks API service call. + + :ivar value: A list of VirtualNetwork resources in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetwork] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualNetwork]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualNetwork"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of VirtualNetwork resources in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetwork] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(VirtualNetworkListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class VirtualNetworkListUsageResult(msrest.serialization.Model): + """Response for the virtual networks GetUsage API service call. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: VirtualNetwork usage stats. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkUsage] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualNetworkUsage]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(VirtualNetworkListUsageResult, self).__init__(**kwargs) + self.value = None + self.next_link = next_link + + +class VirtualNetworkPeering(SubResource): + """Peerings in a virtual network resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar allow_virtual_network_access: Whether the VMs in the local virtual network space would be + able to access the VMs in remote virtual network space. + :vartype allow_virtual_network_access: bool + :ivar allow_forwarded_traffic: Whether the forwarded traffic from the VMs in the local virtual + network will be allowed/disallowed in remote virtual network. + :vartype allow_forwarded_traffic: bool + :ivar allow_gateway_transit: If gateway links can be used in remote virtual networking to link + to this virtual network. + :vartype allow_gateway_transit: bool + :ivar use_remote_gateways: If remote gateways can be used on this virtual network. If the flag + is set to true, and allowGatewayTransit on remote peering is also true, virtual network will + use gateways of remote virtual network for transit. Only one peering can have this flag set to + true. This flag cannot be set if virtual network already has a gateway. + :vartype use_remote_gateways: bool + :ivar remote_virtual_network: The reference to the remote virtual network. The remote virtual + network can be in the same or different region (preview). See here to register for the preview + and learn more + (https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-create-peering). + :vartype remote_virtual_network: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar remote_address_space: The reference to the address space peered with the remote virtual + network. + :vartype remote_address_space: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :ivar remote_virtual_network_address_space: The reference to the current address space of the + remote virtual network. + :vartype remote_virtual_network_address_space: + ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :ivar remote_bgp_communities: The reference to the remote virtual network's Bgp Communities. + :vartype remote_bgp_communities: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkBgpCommunities + :ivar remote_virtual_network_encryption: The reference to the remote virtual network's + encryption. + :vartype remote_virtual_network_encryption: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkEncryption + :ivar peering_state: The status of the virtual network peering. Possible values include: + "Initiated", "Connected", "Disconnected". + :vartype peering_state: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeeringState + :ivar peering_sync_level: The peering sync status of the virtual network peering. Possible + values include: "FullyInSync", "RemoteNotInSync", "LocalNotInSync", "LocalAndRemoteNotInSync". + :vartype peering_sync_level: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeeringLevel + :ivar provisioning_state: The provisioning state of the virtual network peering resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar do_not_verify_remote_gateways: If we need to verify the provisioning state of the remote + gateway. + :vartype do_not_verify_remote_gateways: bool + :ivar resource_guid: The resourceGuid property of the Virtual Network peering resource. + :vartype resource_guid: str + """ + + _validation = { + 'etag': {'readonly': True}, + 'remote_virtual_network_encryption': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'resource_guid': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'allow_virtual_network_access': {'key': 'properties.allowVirtualNetworkAccess', 'type': 'bool'}, + 'allow_forwarded_traffic': {'key': 'properties.allowForwardedTraffic', 'type': 'bool'}, + 'allow_gateway_transit': {'key': 'properties.allowGatewayTransit', 'type': 'bool'}, + 'use_remote_gateways': {'key': 'properties.useRemoteGateways', 'type': 'bool'}, + 'remote_virtual_network': {'key': 'properties.remoteVirtualNetwork', 'type': 'SubResource'}, + 'remote_address_space': {'key': 'properties.remoteAddressSpace', 'type': 'AddressSpace'}, + 'remote_virtual_network_address_space': {'key': 'properties.remoteVirtualNetworkAddressSpace', 'type': 'AddressSpace'}, + 'remote_bgp_communities': {'key': 'properties.remoteBgpCommunities', 'type': 'VirtualNetworkBgpCommunities'}, + 'remote_virtual_network_encryption': {'key': 'properties.remoteVirtualNetworkEncryption', 'type': 'VirtualNetworkEncryption'}, + 'peering_state': {'key': 'properties.peeringState', 'type': 'str'}, + 'peering_sync_level': {'key': 'properties.peeringSyncLevel', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'do_not_verify_remote_gateways': {'key': 'properties.doNotVerifyRemoteGateways', 'type': 'bool'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + type: Optional[str] = None, + allow_virtual_network_access: Optional[bool] = None, + allow_forwarded_traffic: Optional[bool] = None, + allow_gateway_transit: Optional[bool] = None, + use_remote_gateways: Optional[bool] = None, + remote_virtual_network: Optional["SubResource"] = None, + remote_address_space: Optional["AddressSpace"] = None, + remote_virtual_network_address_space: Optional["AddressSpace"] = None, + remote_bgp_communities: Optional["VirtualNetworkBgpCommunities"] = None, + peering_state: Optional[Union[str, "VirtualNetworkPeeringState"]] = None, + peering_sync_level: Optional[Union[str, "VirtualNetworkPeeringLevel"]] = None, + do_not_verify_remote_gateways: Optional[bool] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword type: Resource type. + :paramtype type: str + :keyword allow_virtual_network_access: Whether the VMs in the local virtual network space would + be able to access the VMs in remote virtual network space. + :paramtype allow_virtual_network_access: bool + :keyword allow_forwarded_traffic: Whether the forwarded traffic from the VMs in the local + virtual network will be allowed/disallowed in remote virtual network. + :paramtype allow_forwarded_traffic: bool + :keyword allow_gateway_transit: If gateway links can be used in remote virtual networking to + link to this virtual network. + :paramtype allow_gateway_transit: bool + :keyword use_remote_gateways: If remote gateways can be used on this virtual network. If the + flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network + will use gateways of remote virtual network for transit. Only one peering can have this flag + set to true. This flag cannot be set if virtual network already has a gateway. + :paramtype use_remote_gateways: bool + :keyword remote_virtual_network: The reference to the remote virtual network. The remote + virtual network can be in the same or different region (preview). See here to register for the + preview and learn more + (https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-create-peering). + :paramtype remote_virtual_network: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword remote_address_space: The reference to the address space peered with the remote + virtual network. + :paramtype remote_address_space: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :keyword remote_virtual_network_address_space: The reference to the current address space of + the remote virtual network. + :paramtype remote_virtual_network_address_space: + ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :keyword remote_bgp_communities: The reference to the remote virtual network's Bgp Communities. + :paramtype remote_bgp_communities: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkBgpCommunities + :keyword peering_state: The status of the virtual network peering. Possible values include: + "Initiated", "Connected", "Disconnected". + :paramtype peering_state: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeeringState + :keyword peering_sync_level: The peering sync status of the virtual network peering. Possible + values include: "FullyInSync", "RemoteNotInSync", "LocalNotInSync", "LocalAndRemoteNotInSync". + :paramtype peering_sync_level: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeeringLevel + :keyword do_not_verify_remote_gateways: If we need to verify the provisioning state of the + remote gateway. + :paramtype do_not_verify_remote_gateways: bool + """ + super(VirtualNetworkPeering, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = type + self.allow_virtual_network_access = allow_virtual_network_access + self.allow_forwarded_traffic = allow_forwarded_traffic + self.allow_gateway_transit = allow_gateway_transit + self.use_remote_gateways = use_remote_gateways + self.remote_virtual_network = remote_virtual_network + self.remote_address_space = remote_address_space + self.remote_virtual_network_address_space = remote_virtual_network_address_space + self.remote_bgp_communities = remote_bgp_communities + self.remote_virtual_network_encryption = None + self.peering_state = peering_state + self.peering_sync_level = peering_sync_level + self.provisioning_state = None + self.do_not_verify_remote_gateways = do_not_verify_remote_gateways + self.resource_guid = None + + +class VirtualNetworkPeeringListResult(msrest.serialization.Model): + """Response for ListSubnets API service call. Retrieves all subnets that belong to a virtual network. + + :ivar value: The peerings in a virtual network. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualNetworkPeering]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualNetworkPeering"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: The peerings in a virtual network. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(VirtualNetworkPeeringListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class VirtualNetworkTap(Resource): + """Virtual Network Tap resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar network_interface_tap_configurations: Specifies the list of resource IDs for the network + interface IP configuration that needs to be tapped. + :vartype network_interface_tap_configurations: + list[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration] + :ivar resource_guid: The resource GUID property of the virtual network tap resource. + :vartype resource_guid: str + :ivar provisioning_state: The provisioning state of the virtual network tap resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar destination_network_interface_ip_configuration: The reference to the private IP Address + of the collector nic that will receive the tap. + :vartype destination_network_interface_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration + :ivar destination_load_balancer_front_end_ip_configuration: The reference to the private IP + address on the internal Load Balancer that will receive the tap. + :vartype destination_load_balancer_front_end_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration + :ivar destination_port: The VXLAN destination port that will receive the tapped traffic. + :vartype destination_port: int + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'network_interface_tap_configurations': {'readonly': True}, + 'resource_guid': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'network_interface_tap_configurations': {'key': 'properties.networkInterfaceTapConfigurations', 'type': '[NetworkInterfaceTapConfiguration]'}, + 'resource_guid': {'key': 'properties.resourceGuid', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'destination_network_interface_ip_configuration': {'key': 'properties.destinationNetworkInterfaceIPConfiguration', 'type': 'NetworkInterfaceIPConfiguration'}, + 'destination_load_balancer_front_end_ip_configuration': {'key': 'properties.destinationLoadBalancerFrontEndIPConfiguration', 'type': 'FrontendIPConfiguration'}, + 'destination_port': {'key': 'properties.destinationPort', 'type': 'int'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + destination_network_interface_ip_configuration: Optional["NetworkInterfaceIPConfiguration"] = None, + destination_load_balancer_front_end_ip_configuration: Optional["FrontendIPConfiguration"] = None, + destination_port: Optional[int] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword destination_network_interface_ip_configuration: The reference to the private IP + Address of the collector nic that will receive the tap. + :paramtype destination_network_interface_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration + :keyword destination_load_balancer_front_end_ip_configuration: The reference to the private IP + address on the internal Load Balancer that will receive the tap. + :paramtype destination_load_balancer_front_end_ip_configuration: + ~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration + :keyword destination_port: The VXLAN destination port that will receive the tapped traffic. + :paramtype destination_port: int + """ + super(VirtualNetworkTap, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.network_interface_tap_configurations = None + self.resource_guid = None + self.provisioning_state = None + self.destination_network_interface_ip_configuration = destination_network_interface_ip_configuration + self.destination_load_balancer_front_end_ip_configuration = destination_load_balancer_front_end_ip_configuration + self.destination_port = destination_port + + +class VirtualNetworkTapListResult(msrest.serialization.Model): + """Response for ListVirtualNetworkTap API service call. + + :ivar value: A list of VirtualNetworkTaps in a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap] + :ivar next_link: The URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualNetworkTap]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualNetworkTap"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: A list of VirtualNetworkTaps in a resource group. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap] + :keyword next_link: The URL to get the next set of results. + :paramtype next_link: str + """ + super(VirtualNetworkTapListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class VirtualNetworkUsage(msrest.serialization.Model): + """Usage details for subnet. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar current_value: Indicates number of IPs used from the Subnet. + :vartype current_value: float + :ivar id: Subnet identifier. + :vartype id: str + :ivar limit: Indicates the size of the subnet. + :vartype limit: float + :ivar name: The name containing common and localized value for usage. + :vartype name: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkUsageName + :ivar unit: Usage units. Returns 'Count'. + :vartype unit: str + """ + + _validation = { + 'current_value': {'readonly': True}, + 'id': {'readonly': True}, + 'limit': {'readonly': True}, + 'name': {'readonly': True}, + 'unit': {'readonly': True}, + } + + _attribute_map = { + 'current_value': {'key': 'currentValue', 'type': 'float'}, + 'id': {'key': 'id', 'type': 'str'}, + 'limit': {'key': 'limit', 'type': 'float'}, + 'name': {'key': 'name', 'type': 'VirtualNetworkUsageName'}, + 'unit': {'key': 'unit', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(VirtualNetworkUsage, self).__init__(**kwargs) + self.current_value = None + self.id = None + self.limit = None + self.name = None + self.unit = None + + +class VirtualNetworkUsageName(msrest.serialization.Model): + """Usage strings container. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar localized_value: Localized subnet size and usage string. + :vartype localized_value: str + :ivar value: Subnet size and usage string. + :vartype value: str + """ + + _validation = { + 'localized_value': {'readonly': True}, + 'value': {'readonly': True}, + } + + _attribute_map = { + 'localized_value': {'key': 'localizedValue', 'type': 'str'}, + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(VirtualNetworkUsageName, self).__init__(**kwargs) + self.localized_value = None + self.value = None + + +class VirtualRouter(Resource): + """VirtualRouter Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar virtual_router_asn: VirtualRouter ASN. + :vartype virtual_router_asn: long + :ivar virtual_router_ips: VirtualRouter IPs. + :vartype virtual_router_ips: list[str] + :ivar hosted_subnet: The Subnet on which VirtualRouter is hosted. + :vartype hosted_subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar hosted_gateway: The Gateway on which VirtualRouter is hosted. + :vartype hosted_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar peerings: List of references to VirtualRouterPeerings. + :vartype peerings: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar provisioning_state: The provisioning state of the resource. Possible values include: + "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'virtual_router_asn': {'maximum': 4294967295, 'minimum': 0}, + 'peerings': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'virtual_router_asn': {'key': 'properties.virtualRouterAsn', 'type': 'long'}, + 'virtual_router_ips': {'key': 'properties.virtualRouterIps', 'type': '[str]'}, + 'hosted_subnet': {'key': 'properties.hostedSubnet', 'type': 'SubResource'}, + 'hosted_gateway': {'key': 'properties.hostedGateway', 'type': 'SubResource'}, + 'peerings': {'key': 'properties.peerings', 'type': '[SubResource]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + virtual_router_asn: Optional[int] = None, + virtual_router_ips: Optional[List[str]] = None, + hosted_subnet: Optional["SubResource"] = None, + hosted_gateway: Optional["SubResource"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword virtual_router_asn: VirtualRouter ASN. + :paramtype virtual_router_asn: long + :keyword virtual_router_ips: VirtualRouter IPs. + :paramtype virtual_router_ips: list[str] + :keyword hosted_subnet: The Subnet on which VirtualRouter is hosted. + :paramtype hosted_subnet: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword hosted_gateway: The Gateway on which VirtualRouter is hosted. + :paramtype hosted_gateway: ~azure.mgmt.network.v2021_08_01.models.SubResource + """ + super(VirtualRouter, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.virtual_router_asn = virtual_router_asn + self.virtual_router_ips = virtual_router_ips + self.hosted_subnet = hosted_subnet + self.hosted_gateway = hosted_gateway + self.peerings = None + self.provisioning_state = None + + +class VirtualRouterListResult(msrest.serialization.Model): + """Response for ListVirtualRouters API service call. + + :ivar value: List of Virtual Routers. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualRouter] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualRouter]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualRouter"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of Virtual Routers. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualRouter] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(VirtualRouterListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class VirtualRouterPeering(SubResource): + """Virtual Router Peering resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Name of the virtual router peering that is unique within a virtual router. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Peering type. + :vartype type: str + :ivar peer_asn: Peer ASN. + :vartype peer_asn: long + :ivar peer_ip: Peer IP. + :vartype peer_ip: str + :ivar provisioning_state: The provisioning state of the resource. Possible values include: + "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'peer_asn': {'maximum': 4294967295, 'minimum': 0}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'peer_asn': {'key': 'properties.peerAsn', 'type': 'long'}, + 'peer_ip': {'key': 'properties.peerIp', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + peer_asn: Optional[int] = None, + peer_ip: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: Name of the virtual router peering that is unique within a virtual router. + :paramtype name: str + :keyword peer_asn: Peer ASN. + :paramtype peer_asn: long + :keyword peer_ip: Peer IP. + :paramtype peer_ip: str + """ + super(VirtualRouterPeering, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.peer_asn = peer_asn + self.peer_ip = peer_ip + self.provisioning_state = None + + +class VirtualRouterPeeringListResult(msrest.serialization.Model): + """Response for ListVirtualRouterPeerings API service call. + + :ivar value: List of VirtualRouterPeerings in a VirtualRouter. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeering] + :ivar next_link: URL to get the next set of results. + :vartype next_link: str + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VirtualRouterPeering]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: Optional[List["VirtualRouterPeering"]] = None, + next_link: Optional[str] = None, + **kwargs + ): + """ + :keyword value: List of VirtualRouterPeerings in a VirtualRouter. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeering] + :keyword next_link: URL to get the next set of results. + :paramtype next_link: str + """ + super(VirtualRouterPeeringListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class VirtualWAN(Resource): + """VirtualWAN Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar disable_vpn_encryption: Vpn encryption to be disabled or not. + :vartype disable_vpn_encryption: bool + :ivar virtual_hubs: List of VirtualHubs in the VirtualWAN. + :vartype virtual_hubs: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar vpn_sites: List of VpnSites in the VirtualWAN. + :vartype vpn_sites: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar allow_branch_to_branch_traffic: True if branch to branch traffic is allowed. + :vartype allow_branch_to_branch_traffic: bool + :ivar allow_vnet_to_vnet_traffic: True if Vnet to Vnet traffic is allowed. + :vartype allow_vnet_to_vnet_traffic: bool + :ivar office365_local_breakout_category: The office local breakout category. Possible values + include: "Optimize", "OptimizeAndAllow", "All", "None". + :vartype office365_local_breakout_category: str or + ~azure.mgmt.network.v2021_08_01.models.OfficeTrafficCategory + :ivar provisioning_state: The provisioning state of the virtual WAN resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar type_properties_type: The type of the VirtualWAN. + :vartype type_properties_type: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'virtual_hubs': {'readonly': True}, + 'vpn_sites': {'readonly': True}, + 'office365_local_breakout_category': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'disable_vpn_encryption': {'key': 'properties.disableVpnEncryption', 'type': 'bool'}, + 'virtual_hubs': {'key': 'properties.virtualHubs', 'type': '[SubResource]'}, + 'vpn_sites': {'key': 'properties.vpnSites', 'type': '[SubResource]'}, + 'allow_branch_to_branch_traffic': {'key': 'properties.allowBranchToBranchTraffic', 'type': 'bool'}, + 'allow_vnet_to_vnet_traffic': {'key': 'properties.allowVnetToVnetTraffic', 'type': 'bool'}, + 'office365_local_breakout_category': {'key': 'properties.office365LocalBreakoutCategory', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'type_properties_type': {'key': 'properties.type', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + disable_vpn_encryption: Optional[bool] = None, + allow_branch_to_branch_traffic: Optional[bool] = None, + allow_vnet_to_vnet_traffic: Optional[bool] = None, + type_properties_type: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword disable_vpn_encryption: Vpn encryption to be disabled or not. + :paramtype disable_vpn_encryption: bool + :keyword allow_branch_to_branch_traffic: True if branch to branch traffic is allowed. + :paramtype allow_branch_to_branch_traffic: bool + :keyword allow_vnet_to_vnet_traffic: True if Vnet to Vnet traffic is allowed. + :paramtype allow_vnet_to_vnet_traffic: bool + :keyword type_properties_type: The type of the VirtualWAN. + :paramtype type_properties_type: str + """ + super(VirtualWAN, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.disable_vpn_encryption = disable_vpn_encryption + self.virtual_hubs = None + self.vpn_sites = None + self.allow_branch_to_branch_traffic = allow_branch_to_branch_traffic + self.allow_vnet_to_vnet_traffic = allow_vnet_to_vnet_traffic + self.office365_local_breakout_category = None + self.provisioning_state = None + self.type_properties_type = type_properties_type + + +class VirtualWanSecurityProvider(msrest.serialization.Model): + """Collection of SecurityProviders. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: Name of the security provider. + :vartype name: str + :ivar url: Url of the security provider. + :vartype url: str + :ivar type: Name of the security provider. Possible values include: "External", "Native". + :vartype type: str or ~azure.mgmt.network.v2021_08_01.models.VirtualWanSecurityProviderType + """ + + _validation = { + 'type': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'url': {'key': 'url', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + url: Optional[str] = None, + **kwargs + ): + """ + :keyword name: Name of the security provider. + :paramtype name: str + :keyword url: Url of the security provider. + :paramtype url: str + """ + super(VirtualWanSecurityProvider, self).__init__(**kwargs) + self.name = name + self.url = url + self.type = None + + +class VirtualWanSecurityProviders(msrest.serialization.Model): + """Collection of SecurityProviders. + + :ivar supported_providers: List of VirtualWAN security providers. + :vartype supported_providers: + list[~azure.mgmt.network.v2021_08_01.models.VirtualWanSecurityProvider] + """ + + _attribute_map = { + 'supported_providers': {'key': 'supportedProviders', 'type': '[VirtualWanSecurityProvider]'}, + } + + def __init__( + self, + *, + supported_providers: Optional[List["VirtualWanSecurityProvider"]] = None, + **kwargs + ): + """ + :keyword supported_providers: List of VirtualWAN security providers. + :paramtype supported_providers: + list[~azure.mgmt.network.v2021_08_01.models.VirtualWanSecurityProvider] + """ + super(VirtualWanSecurityProviders, self).__init__(**kwargs) + self.supported_providers = supported_providers + + +class VirtualWanVpnProfileParameters(msrest.serialization.Model): + """Virtual Wan Vpn profile parameters Vpn profile generation. + + :ivar vpn_server_configuration_resource_id: VpnServerConfiguration partial resource uri with + which VirtualWan is associated to. + :vartype vpn_server_configuration_resource_id: str + :ivar authentication_method: VPN client authentication method. Possible values include: + "EAPTLS", "EAPMSCHAPv2". + :vartype authentication_method: str or + ~azure.mgmt.network.v2021_08_01.models.AuthenticationMethod + """ + + _attribute_map = { + 'vpn_server_configuration_resource_id': {'key': 'vpnServerConfigurationResourceId', 'type': 'str'}, + 'authentication_method': {'key': 'authenticationMethod', 'type': 'str'}, + } + + def __init__( + self, + *, + vpn_server_configuration_resource_id: Optional[str] = None, + authentication_method: Optional[Union[str, "AuthenticationMethod"]] = None, + **kwargs + ): + """ + :keyword vpn_server_configuration_resource_id: VpnServerConfiguration partial resource uri with + which VirtualWan is associated to. + :paramtype vpn_server_configuration_resource_id: str + :keyword authentication_method: VPN client authentication method. Possible values include: + "EAPTLS", "EAPMSCHAPv2". + :paramtype authentication_method: str or + ~azure.mgmt.network.v2021_08_01.models.AuthenticationMethod + """ + super(VirtualWanVpnProfileParameters, self).__init__(**kwargs) + self.vpn_server_configuration_resource_id = vpn_server_configuration_resource_id + self.authentication_method = authentication_method + + +class VM(Resource): + """Describes a Virtual Machine. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + """ + super(VM, self).__init__(id=id, location=location, tags=tags, **kwargs) + + +class VnetRoute(msrest.serialization.Model): + """List of routes that control routing from VirtualHub into a virtual network connection. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar static_routes: List of all Static Routes. + :vartype static_routes: list[~azure.mgmt.network.v2021_08_01.models.StaticRoute] + :ivar bgp_connections: The list of references to HubBgpConnection objects. + :vartype bgp_connections: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + + _validation = { + 'bgp_connections': {'readonly': True}, + } + + _attribute_map = { + 'static_routes': {'key': 'staticRoutes', 'type': '[StaticRoute]'}, + 'bgp_connections': {'key': 'bgpConnections', 'type': '[SubResource]'}, + } + + def __init__( + self, + *, + static_routes: Optional[List["StaticRoute"]] = None, + **kwargs + ): + """ + :keyword static_routes: List of all Static Routes. + :paramtype static_routes: list[~azure.mgmt.network.v2021_08_01.models.StaticRoute] + """ + super(VnetRoute, self).__init__(**kwargs) + self.static_routes = static_routes + self.bgp_connections = None + + +class VpnClientConfiguration(msrest.serialization.Model): + """VpnClientConfiguration for P2S client. + + :ivar vpn_client_address_pool: The reference to the address space resource which represents + Address space for P2S VpnClient. + :vartype vpn_client_address_pool: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :ivar vpn_client_root_certificates: VpnClientRootCertificate for virtual network gateway. + :vartype vpn_client_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnClientRootCertificate] + :ivar vpn_client_revoked_certificates: VpnClientRevokedCertificate for Virtual network gateway. + :vartype vpn_client_revoked_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnClientRevokedCertificate] + :ivar vpn_client_protocols: VpnClientProtocols for Virtual network gateway. + :vartype vpn_client_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.VpnClientProtocol] + :ivar vpn_authentication_types: VPN authentication types for the virtual network gateway.. + :vartype vpn_authentication_types: list[str or + ~azure.mgmt.network.v2021_08_01.models.VpnAuthenticationType] + :ivar vpn_client_ipsec_policies: VpnClientIpsecPolicies for virtual network gateway P2S client. + :vartype vpn_client_ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :ivar radius_server_address: The radius server address property of the VirtualNetworkGateway + resource for vpn client connection. + :vartype radius_server_address: str + :ivar radius_server_secret: The radius secret property of the VirtualNetworkGateway resource + for vpn client connection. + :vartype radius_server_secret: str + :ivar radius_servers: The radiusServers property for multiple radius server configuration. + :vartype radius_servers: list[~azure.mgmt.network.v2021_08_01.models.RadiusServer] + :ivar aad_tenant: The AADTenant property of the VirtualNetworkGateway resource for vpn client + connection used for AAD authentication. + :vartype aad_tenant: str + :ivar aad_audience: The AADAudience property of the VirtualNetworkGateway resource for vpn + client connection used for AAD authentication. + :vartype aad_audience: str + :ivar aad_issuer: The AADIssuer property of the VirtualNetworkGateway resource for vpn client + connection used for AAD authentication. + :vartype aad_issuer: str + """ + + _attribute_map = { + 'vpn_client_address_pool': {'key': 'vpnClientAddressPool', 'type': 'AddressSpace'}, + 'vpn_client_root_certificates': {'key': 'vpnClientRootCertificates', 'type': '[VpnClientRootCertificate]'}, + 'vpn_client_revoked_certificates': {'key': 'vpnClientRevokedCertificates', 'type': '[VpnClientRevokedCertificate]'}, + 'vpn_client_protocols': {'key': 'vpnClientProtocols', 'type': '[str]'}, + 'vpn_authentication_types': {'key': 'vpnAuthenticationTypes', 'type': '[str]'}, + 'vpn_client_ipsec_policies': {'key': 'vpnClientIpsecPolicies', 'type': '[IpsecPolicy]'}, + 'radius_server_address': {'key': 'radiusServerAddress', 'type': 'str'}, + 'radius_server_secret': {'key': 'radiusServerSecret', 'type': 'str'}, + 'radius_servers': {'key': 'radiusServers', 'type': '[RadiusServer]'}, + 'aad_tenant': {'key': 'aadTenant', 'type': 'str'}, + 'aad_audience': {'key': 'aadAudience', 'type': 'str'}, + 'aad_issuer': {'key': 'aadIssuer', 'type': 'str'}, + } + + def __init__( + self, + *, + vpn_client_address_pool: Optional["AddressSpace"] = None, + vpn_client_root_certificates: Optional[List["VpnClientRootCertificate"]] = None, + vpn_client_revoked_certificates: Optional[List["VpnClientRevokedCertificate"]] = None, + vpn_client_protocols: Optional[List[Union[str, "VpnClientProtocol"]]] = None, + vpn_authentication_types: Optional[List[Union[str, "VpnAuthenticationType"]]] = None, + vpn_client_ipsec_policies: Optional[List["IpsecPolicy"]] = None, + radius_server_address: Optional[str] = None, + radius_server_secret: Optional[str] = None, + radius_servers: Optional[List["RadiusServer"]] = None, + aad_tenant: Optional[str] = None, + aad_audience: Optional[str] = None, + aad_issuer: Optional[str] = None, + **kwargs + ): + """ + :keyword vpn_client_address_pool: The reference to the address space resource which represents + Address space for P2S VpnClient. + :paramtype vpn_client_address_pool: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :keyword vpn_client_root_certificates: VpnClientRootCertificate for virtual network gateway. + :paramtype vpn_client_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnClientRootCertificate] + :keyword vpn_client_revoked_certificates: VpnClientRevokedCertificate for Virtual network + gateway. + :paramtype vpn_client_revoked_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnClientRevokedCertificate] + :keyword vpn_client_protocols: VpnClientProtocols for Virtual network gateway. + :paramtype vpn_client_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.VpnClientProtocol] + :keyword vpn_authentication_types: VPN authentication types for the virtual network gateway.. + :paramtype vpn_authentication_types: list[str or + ~azure.mgmt.network.v2021_08_01.models.VpnAuthenticationType] + :keyword vpn_client_ipsec_policies: VpnClientIpsecPolicies for virtual network gateway P2S + client. + :paramtype vpn_client_ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :keyword radius_server_address: The radius server address property of the VirtualNetworkGateway + resource for vpn client connection. + :paramtype radius_server_address: str + :keyword radius_server_secret: The radius secret property of the VirtualNetworkGateway resource + for vpn client connection. + :paramtype radius_server_secret: str + :keyword radius_servers: The radiusServers property for multiple radius server configuration. + :paramtype radius_servers: list[~azure.mgmt.network.v2021_08_01.models.RadiusServer] + :keyword aad_tenant: The AADTenant property of the VirtualNetworkGateway resource for vpn + client connection used for AAD authentication. + :paramtype aad_tenant: str + :keyword aad_audience: The AADAudience property of the VirtualNetworkGateway resource for vpn + client connection used for AAD authentication. + :paramtype aad_audience: str + :keyword aad_issuer: The AADIssuer property of the VirtualNetworkGateway resource for vpn + client connection used for AAD authentication. + :paramtype aad_issuer: str + """ + super(VpnClientConfiguration, self).__init__(**kwargs) + self.vpn_client_address_pool = vpn_client_address_pool + self.vpn_client_root_certificates = vpn_client_root_certificates + self.vpn_client_revoked_certificates = vpn_client_revoked_certificates + self.vpn_client_protocols = vpn_client_protocols + self.vpn_authentication_types = vpn_authentication_types + self.vpn_client_ipsec_policies = vpn_client_ipsec_policies + self.radius_server_address = radius_server_address + self.radius_server_secret = radius_server_secret + self.radius_servers = radius_servers + self.aad_tenant = aad_tenant + self.aad_audience = aad_audience + self.aad_issuer = aad_issuer + + +class VpnClientConnectionHealth(msrest.serialization.Model): + """VpnClientConnectionHealth properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar total_ingress_bytes_transferred: Total of the Ingress Bytes Transferred in this P2S Vpn + connection. + :vartype total_ingress_bytes_transferred: long + :ivar total_egress_bytes_transferred: Total of the Egress Bytes Transferred in this connection. + :vartype total_egress_bytes_transferred: long + :ivar vpn_client_connections_count: The total of p2s vpn clients connected at this time to this + P2SVpnGateway. + :vartype vpn_client_connections_count: int + :ivar allocated_ip_addresses: List of allocated ip addresses to the connected p2s vpn clients. + :vartype allocated_ip_addresses: list[str] + """ + + _validation = { + 'total_ingress_bytes_transferred': {'readonly': True}, + 'total_egress_bytes_transferred': {'readonly': True}, + } + + _attribute_map = { + 'total_ingress_bytes_transferred': {'key': 'totalIngressBytesTransferred', 'type': 'long'}, + 'total_egress_bytes_transferred': {'key': 'totalEgressBytesTransferred', 'type': 'long'}, + 'vpn_client_connections_count': {'key': 'vpnClientConnectionsCount', 'type': 'int'}, + 'allocated_ip_addresses': {'key': 'allocatedIpAddresses', 'type': '[str]'}, + } + + def __init__( + self, + *, + vpn_client_connections_count: Optional[int] = None, + allocated_ip_addresses: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword vpn_client_connections_count: The total of p2s vpn clients connected at this time to + this P2SVpnGateway. + :paramtype vpn_client_connections_count: int + :keyword allocated_ip_addresses: List of allocated ip addresses to the connected p2s vpn + clients. + :paramtype allocated_ip_addresses: list[str] + """ + super(VpnClientConnectionHealth, self).__init__(**kwargs) + self.total_ingress_bytes_transferred = None + self.total_egress_bytes_transferred = None + self.vpn_client_connections_count = vpn_client_connections_count + self.allocated_ip_addresses = allocated_ip_addresses + + +class VpnClientConnectionHealthDetail(msrest.serialization.Model): + """VPN client connection health detail. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar vpn_connection_id: The vpn client Id. + :vartype vpn_connection_id: str + :ivar vpn_connection_duration: The duration time of a connected vpn client. + :vartype vpn_connection_duration: long + :ivar vpn_connection_time: The start time of a connected vpn client. + :vartype vpn_connection_time: str + :ivar public_ip_address: The public Ip of a connected vpn client. + :vartype public_ip_address: str + :ivar private_ip_address: The assigned private Ip of a connected vpn client. + :vartype private_ip_address: str + :ivar vpn_user_name: The user name of a connected vpn client. + :vartype vpn_user_name: str + :ivar max_bandwidth: The max band width. + :vartype max_bandwidth: long + :ivar egress_packets_transferred: The egress packets per second. + :vartype egress_packets_transferred: long + :ivar egress_bytes_transferred: The egress bytes per second. + :vartype egress_bytes_transferred: long + :ivar ingress_packets_transferred: The ingress packets per second. + :vartype ingress_packets_transferred: long + :ivar ingress_bytes_transferred: The ingress bytes per second. + :vartype ingress_bytes_transferred: long + :ivar max_packets_per_second: The max packets transferred per second. + :vartype max_packets_per_second: long + """ + + _validation = { + 'vpn_connection_id': {'readonly': True}, + 'vpn_connection_duration': {'readonly': True}, + 'vpn_connection_time': {'readonly': True}, + 'public_ip_address': {'readonly': True}, + 'private_ip_address': {'readonly': True}, + 'vpn_user_name': {'readonly': True}, + 'max_bandwidth': {'readonly': True}, + 'egress_packets_transferred': {'readonly': True}, + 'egress_bytes_transferred': {'readonly': True}, + 'ingress_packets_transferred': {'readonly': True}, + 'ingress_bytes_transferred': {'readonly': True}, + 'max_packets_per_second': {'readonly': True}, + } + + _attribute_map = { + 'vpn_connection_id': {'key': 'vpnConnectionId', 'type': 'str'}, + 'vpn_connection_duration': {'key': 'vpnConnectionDuration', 'type': 'long'}, + 'vpn_connection_time': {'key': 'vpnConnectionTime', 'type': 'str'}, + 'public_ip_address': {'key': 'publicIpAddress', 'type': 'str'}, + 'private_ip_address': {'key': 'privateIpAddress', 'type': 'str'}, + 'vpn_user_name': {'key': 'vpnUserName', 'type': 'str'}, + 'max_bandwidth': {'key': 'maxBandwidth', 'type': 'long'}, + 'egress_packets_transferred': {'key': 'egressPacketsTransferred', 'type': 'long'}, + 'egress_bytes_transferred': {'key': 'egressBytesTransferred', 'type': 'long'}, + 'ingress_packets_transferred': {'key': 'ingressPacketsTransferred', 'type': 'long'}, + 'ingress_bytes_transferred': {'key': 'ingressBytesTransferred', 'type': 'long'}, + 'max_packets_per_second': {'key': 'maxPacketsPerSecond', 'type': 'long'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(VpnClientConnectionHealthDetail, self).__init__(**kwargs) + self.vpn_connection_id = None + self.vpn_connection_duration = None + self.vpn_connection_time = None + self.public_ip_address = None + self.private_ip_address = None + self.vpn_user_name = None + self.max_bandwidth = None + self.egress_packets_transferred = None + self.egress_bytes_transferred = None + self.ingress_packets_transferred = None + self.ingress_bytes_transferred = None + self.max_packets_per_second = None + + +class VpnClientConnectionHealthDetailListResult(msrest.serialization.Model): + """List of virtual network gateway vpn client connection health. + + :ivar value: List of vpn client connection health. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.VpnClientConnectionHealthDetail] + """ + + _attribute_map = { + 'value': {'key': 'value', 'type': '[VpnClientConnectionHealthDetail]'}, + } + + def __init__( + self, + *, + value: Optional[List["VpnClientConnectionHealthDetail"]] = None, + **kwargs + ): + """ + :keyword value: List of vpn client connection health. + :paramtype value: list[~azure.mgmt.network.v2021_08_01.models.VpnClientConnectionHealthDetail] + """ + super(VpnClientConnectionHealthDetailListResult, self).__init__(**kwargs) + self.value = value + + +class VpnClientIPsecParameters(msrest.serialization.Model): + """An IPSec parameters for a virtual network gateway P2S connection. + + All required parameters must be populated in order to send to Azure. + + :ivar sa_life_time_seconds: Required. The IPSec Security Association (also called Quick Mode or + Phase 2 SA) lifetime in seconds for P2S client. + :vartype sa_life_time_seconds: int + :ivar sa_data_size_kilobytes: Required. The IPSec Security Association (also called Quick Mode + or Phase 2 SA) payload size in KB for P2S client.. + :vartype sa_data_size_kilobytes: int + :ivar ipsec_encryption: Required. The IPSec encryption algorithm (IKE phase 1). Possible values + include: "None", "DES", "DES3", "AES128", "AES192", "AES256", "GCMAES128", "GCMAES192", + "GCMAES256". + :vartype ipsec_encryption: str or ~azure.mgmt.network.v2021_08_01.models.IpsecEncryption + :ivar ipsec_integrity: Required. The IPSec integrity algorithm (IKE phase 1). Possible values + include: "MD5", "SHA1", "SHA256", "GCMAES128", "GCMAES192", "GCMAES256". + :vartype ipsec_integrity: str or ~azure.mgmt.network.v2021_08_01.models.IpsecIntegrity + :ivar ike_encryption: Required. The IKE encryption algorithm (IKE phase 2). Possible values + include: "DES", "DES3", "AES128", "AES192", "AES256", "GCMAES256", "GCMAES128". + :vartype ike_encryption: str or ~azure.mgmt.network.v2021_08_01.models.IkeEncryption + :ivar ike_integrity: Required. The IKE integrity algorithm (IKE phase 2). Possible values + include: "MD5", "SHA1", "SHA256", "SHA384", "GCMAES256", "GCMAES128". + :vartype ike_integrity: str or ~azure.mgmt.network.v2021_08_01.models.IkeIntegrity + :ivar dh_group: Required. The DH Group used in IKE Phase 1 for initial SA. Possible values + include: "None", "DHGroup1", "DHGroup2", "DHGroup14", "DHGroup2048", "ECP256", "ECP384", + "DHGroup24". + :vartype dh_group: str or ~azure.mgmt.network.v2021_08_01.models.DhGroup + :ivar pfs_group: Required. The Pfs Group used in IKE Phase 2 for new child SA. Possible values + include: "None", "PFS1", "PFS2", "PFS2048", "ECP256", "ECP384", "PFS24", "PFS14", "PFSMM". + :vartype pfs_group: str or ~azure.mgmt.network.v2021_08_01.models.PfsGroup + """ + + _validation = { + 'sa_life_time_seconds': {'required': True}, + 'sa_data_size_kilobytes': {'required': True}, + 'ipsec_encryption': {'required': True}, + 'ipsec_integrity': {'required': True}, + 'ike_encryption': {'required': True}, + 'ike_integrity': {'required': True}, + 'dh_group': {'required': True}, + 'pfs_group': {'required': True}, + } + + _attribute_map = { + 'sa_life_time_seconds': {'key': 'saLifeTimeSeconds', 'type': 'int'}, + 'sa_data_size_kilobytes': {'key': 'saDataSizeKilobytes', 'type': 'int'}, + 'ipsec_encryption': {'key': 'ipsecEncryption', 'type': 'str'}, + 'ipsec_integrity': {'key': 'ipsecIntegrity', 'type': 'str'}, + 'ike_encryption': {'key': 'ikeEncryption', 'type': 'str'}, + 'ike_integrity': {'key': 'ikeIntegrity', 'type': 'str'}, + 'dh_group': {'key': 'dhGroup', 'type': 'str'}, + 'pfs_group': {'key': 'pfsGroup', 'type': 'str'}, + } + + def __init__( + self, + *, + sa_life_time_seconds: int, + sa_data_size_kilobytes: int, + ipsec_encryption: Union[str, "IpsecEncryption"], + ipsec_integrity: Union[str, "IpsecIntegrity"], + ike_encryption: Union[str, "IkeEncryption"], + ike_integrity: Union[str, "IkeIntegrity"], + dh_group: Union[str, "DhGroup"], + pfs_group: Union[str, "PfsGroup"], + **kwargs + ): + """ + :keyword sa_life_time_seconds: Required. The IPSec Security Association (also called Quick Mode + or Phase 2 SA) lifetime in seconds for P2S client. + :paramtype sa_life_time_seconds: int + :keyword sa_data_size_kilobytes: Required. The IPSec Security Association (also called Quick + Mode or Phase 2 SA) payload size in KB for P2S client.. + :paramtype sa_data_size_kilobytes: int + :keyword ipsec_encryption: Required. The IPSec encryption algorithm (IKE phase 1). Possible + values include: "None", "DES", "DES3", "AES128", "AES192", "AES256", "GCMAES128", "GCMAES192", + "GCMAES256". + :paramtype ipsec_encryption: str or ~azure.mgmt.network.v2021_08_01.models.IpsecEncryption + :keyword ipsec_integrity: Required. The IPSec integrity algorithm (IKE phase 1). Possible + values include: "MD5", "SHA1", "SHA256", "GCMAES128", "GCMAES192", "GCMAES256". + :paramtype ipsec_integrity: str or ~azure.mgmt.network.v2021_08_01.models.IpsecIntegrity + :keyword ike_encryption: Required. The IKE encryption algorithm (IKE phase 2). Possible values + include: "DES", "DES3", "AES128", "AES192", "AES256", "GCMAES256", "GCMAES128". + :paramtype ike_encryption: str or ~azure.mgmt.network.v2021_08_01.models.IkeEncryption + :keyword ike_integrity: Required. The IKE integrity algorithm (IKE phase 2). Possible values + include: "MD5", "SHA1", "SHA256", "SHA384", "GCMAES256", "GCMAES128". + :paramtype ike_integrity: str or ~azure.mgmt.network.v2021_08_01.models.IkeIntegrity + :keyword dh_group: Required. The DH Group used in IKE Phase 1 for initial SA. Possible values + include: "None", "DHGroup1", "DHGroup2", "DHGroup14", "DHGroup2048", "ECP256", "ECP384", + "DHGroup24". + :paramtype dh_group: str or ~azure.mgmt.network.v2021_08_01.models.DhGroup + :keyword pfs_group: Required. The Pfs Group used in IKE Phase 2 for new child SA. Possible + values include: "None", "PFS1", "PFS2", "PFS2048", "ECP256", "ECP384", "PFS24", "PFS14", + "PFSMM". + :paramtype pfs_group: str or ~azure.mgmt.network.v2021_08_01.models.PfsGroup + """ + super(VpnClientIPsecParameters, self).__init__(**kwargs) + self.sa_life_time_seconds = sa_life_time_seconds + self.sa_data_size_kilobytes = sa_data_size_kilobytes + self.ipsec_encryption = ipsec_encryption + self.ipsec_integrity = ipsec_integrity + self.ike_encryption = ike_encryption + self.ike_integrity = ike_integrity + self.dh_group = dh_group + self.pfs_group = pfs_group + + +class VpnClientParameters(msrest.serialization.Model): + """Vpn Client Parameters for package generation. + + :ivar processor_architecture: VPN client Processor Architecture. Possible values include: + "Amd64", "X86". + :vartype processor_architecture: str or + ~azure.mgmt.network.v2021_08_01.models.ProcessorArchitecture + :ivar authentication_method: VPN client authentication method. Possible values include: + "EAPTLS", "EAPMSCHAPv2". + :vartype authentication_method: str or + ~azure.mgmt.network.v2021_08_01.models.AuthenticationMethod + :ivar radius_server_auth_certificate: The public certificate data for the radius server + authentication certificate as a Base-64 encoded string. Required only if external radius + authentication has been configured with EAPTLS authentication. + :vartype radius_server_auth_certificate: str + :ivar client_root_certificates: A list of client root certificates public certificate data + encoded as Base-64 strings. Optional parameter for external radius based authentication with + EAPTLS. + :vartype client_root_certificates: list[str] + """ + + _attribute_map = { + 'processor_architecture': {'key': 'processorArchitecture', 'type': 'str'}, + 'authentication_method': {'key': 'authenticationMethod', 'type': 'str'}, + 'radius_server_auth_certificate': {'key': 'radiusServerAuthCertificate', 'type': 'str'}, + 'client_root_certificates': {'key': 'clientRootCertificates', 'type': '[str]'}, + } + + def __init__( + self, + *, + processor_architecture: Optional[Union[str, "ProcessorArchitecture"]] = None, + authentication_method: Optional[Union[str, "AuthenticationMethod"]] = None, + radius_server_auth_certificate: Optional[str] = None, + client_root_certificates: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword processor_architecture: VPN client Processor Architecture. Possible values include: + "Amd64", "X86". + :paramtype processor_architecture: str or + ~azure.mgmt.network.v2021_08_01.models.ProcessorArchitecture + :keyword authentication_method: VPN client authentication method. Possible values include: + "EAPTLS", "EAPMSCHAPv2". + :paramtype authentication_method: str or + ~azure.mgmt.network.v2021_08_01.models.AuthenticationMethod + :keyword radius_server_auth_certificate: The public certificate data for the radius server + authentication certificate as a Base-64 encoded string. Required only if external radius + authentication has been configured with EAPTLS authentication. + :paramtype radius_server_auth_certificate: str + :keyword client_root_certificates: A list of client root certificates public certificate data + encoded as Base-64 strings. Optional parameter for external radius based authentication with + EAPTLS. + :paramtype client_root_certificates: list[str] + """ + super(VpnClientParameters, self).__init__(**kwargs) + self.processor_architecture = processor_architecture + self.authentication_method = authentication_method + self.radius_server_auth_certificate = radius_server_auth_certificate + self.client_root_certificates = client_root_certificates + + +class VpnClientRevokedCertificate(SubResource): + """VPN client revoked certificate of virtual network gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar thumbprint: The revoked VPN client certificate thumbprint. + :vartype thumbprint: str + :ivar provisioning_state: The provisioning state of the VPN client revoked certificate + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'thumbprint': {'key': 'properties.thumbprint', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + thumbprint: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword thumbprint: The revoked VPN client certificate thumbprint. + :paramtype thumbprint: str + """ + super(VpnClientRevokedCertificate, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.thumbprint = thumbprint + self.provisioning_state = None + + +class VpnClientRootCertificate(SubResource): + """VPN client root certificate of virtual network gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar public_cert_data: Required. The certificate public data. + :vartype public_cert_data: str + :ivar provisioning_state: The provisioning state of the VPN client root certificate resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'public_cert_data': {'required': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'public_cert_data': {'key': 'properties.publicCertData', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + public_cert_data: str, + id: Optional[str] = None, + name: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword public_cert_data: Required. The certificate public data. + :paramtype public_cert_data: str + """ + super(VpnClientRootCertificate, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.public_cert_data = public_cert_data + self.provisioning_state = None + + +class VpnConnection(SubResource): + """VpnConnection Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar remote_vpn_site: Id of the connected vpn site. + :vartype remote_vpn_site: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar routing_weight: Routing weight for vpn connection. + :vartype routing_weight: int + :ivar dpd_timeout_seconds: DPD timeout in seconds for vpn connection. + :vartype dpd_timeout_seconds: int + :ivar connection_status: The connection status. Possible values include: "Unknown", + "Connecting", "Connected", "NotConnected". + :vartype connection_status: str or ~azure.mgmt.network.v2021_08_01.models.VpnConnectionStatus + :ivar vpn_connection_protocol_type: Connection protocol used for this connection. Possible + values include: "IKEv2", "IKEv1". + :vartype vpn_connection_protocol_type: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionProtocol + :ivar ingress_bytes_transferred: Ingress bytes transferred. + :vartype ingress_bytes_transferred: long + :ivar egress_bytes_transferred: Egress bytes transferred. + :vartype egress_bytes_transferred: long + :ivar connection_bandwidth: Expected bandwidth in MBPS. + :vartype connection_bandwidth: int + :ivar shared_key: SharedKey for the vpn connection. + :vartype shared_key: str + :ivar enable_bgp: EnableBgp flag. + :vartype enable_bgp: bool + :ivar use_policy_based_traffic_selectors: Enable policy-based traffic selectors. + :vartype use_policy_based_traffic_selectors: bool + :ivar ipsec_policies: The IPSec Policies to be considered by this connection. + :vartype ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :ivar traffic_selector_policies: The Traffic Selector Policies to be considered by this + connection. + :vartype traffic_selector_policies: + list[~azure.mgmt.network.v2021_08_01.models.TrafficSelectorPolicy] + :ivar enable_rate_limiting: EnableBgp flag. + :vartype enable_rate_limiting: bool + :ivar enable_internet_security: Enable internet security. + :vartype enable_internet_security: bool + :ivar use_local_azure_ip_address: Use local azure ip to initiate connection. + :vartype use_local_azure_ip_address: bool + :ivar provisioning_state: The provisioning state of the VPN connection resource. Possible + values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar vpn_link_connections: List of all vpn site link connections to the gateway. + :vartype vpn_link_connections: + list[~azure.mgmt.network.v2021_08_01.models.VpnSiteLinkConnection] + :ivar routing_configuration: The Routing Configuration indicating the associated and propagated + route tables on this connection. + :vartype routing_configuration: ~azure.mgmt.network.v2021_08_01.models.RoutingConfiguration + """ + + _validation = { + 'etag': {'readonly': True}, + 'connection_status': {'readonly': True}, + 'ingress_bytes_transferred': {'readonly': True}, + 'egress_bytes_transferred': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'remote_vpn_site': {'key': 'properties.remoteVpnSite', 'type': 'SubResource'}, + 'routing_weight': {'key': 'properties.routingWeight', 'type': 'int'}, + 'dpd_timeout_seconds': {'key': 'properties.dpdTimeoutSeconds', 'type': 'int'}, + 'connection_status': {'key': 'properties.connectionStatus', 'type': 'str'}, + 'vpn_connection_protocol_type': {'key': 'properties.vpnConnectionProtocolType', 'type': 'str'}, + 'ingress_bytes_transferred': {'key': 'properties.ingressBytesTransferred', 'type': 'long'}, + 'egress_bytes_transferred': {'key': 'properties.egressBytesTransferred', 'type': 'long'}, + 'connection_bandwidth': {'key': 'properties.connectionBandwidth', 'type': 'int'}, + 'shared_key': {'key': 'properties.sharedKey', 'type': 'str'}, + 'enable_bgp': {'key': 'properties.enableBgp', 'type': 'bool'}, + 'use_policy_based_traffic_selectors': {'key': 'properties.usePolicyBasedTrafficSelectors', 'type': 'bool'}, + 'ipsec_policies': {'key': 'properties.ipsecPolicies', 'type': '[IpsecPolicy]'}, + 'traffic_selector_policies': {'key': 'properties.trafficSelectorPolicies', 'type': '[TrafficSelectorPolicy]'}, + 'enable_rate_limiting': {'key': 'properties.enableRateLimiting', 'type': 'bool'}, + 'enable_internet_security': {'key': 'properties.enableInternetSecurity', 'type': 'bool'}, + 'use_local_azure_ip_address': {'key': 'properties.useLocalAzureIpAddress', 'type': 'bool'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'vpn_link_connections': {'key': 'properties.vpnLinkConnections', 'type': '[VpnSiteLinkConnection]'}, + 'routing_configuration': {'key': 'properties.routingConfiguration', 'type': 'RoutingConfiguration'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + remote_vpn_site: Optional["SubResource"] = None, + routing_weight: Optional[int] = None, + dpd_timeout_seconds: Optional[int] = None, + vpn_connection_protocol_type: Optional[Union[str, "VirtualNetworkGatewayConnectionProtocol"]] = None, + connection_bandwidth: Optional[int] = None, + shared_key: Optional[str] = None, + enable_bgp: Optional[bool] = None, + use_policy_based_traffic_selectors: Optional[bool] = None, + ipsec_policies: Optional[List["IpsecPolicy"]] = None, + traffic_selector_policies: Optional[List["TrafficSelectorPolicy"]] = None, + enable_rate_limiting: Optional[bool] = None, + enable_internet_security: Optional[bool] = None, + use_local_azure_ip_address: Optional[bool] = None, + vpn_link_connections: Optional[List["VpnSiteLinkConnection"]] = None, + routing_configuration: Optional["RoutingConfiguration"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword remote_vpn_site: Id of the connected vpn site. + :paramtype remote_vpn_site: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword routing_weight: Routing weight for vpn connection. + :paramtype routing_weight: int + :keyword dpd_timeout_seconds: DPD timeout in seconds for vpn connection. + :paramtype dpd_timeout_seconds: int + :keyword vpn_connection_protocol_type: Connection protocol used for this connection. Possible + values include: "IKEv2", "IKEv1". + :paramtype vpn_connection_protocol_type: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionProtocol + :keyword connection_bandwidth: Expected bandwidth in MBPS. + :paramtype connection_bandwidth: int + :keyword shared_key: SharedKey for the vpn connection. + :paramtype shared_key: str + :keyword enable_bgp: EnableBgp flag. + :paramtype enable_bgp: bool + :keyword use_policy_based_traffic_selectors: Enable policy-based traffic selectors. + :paramtype use_policy_based_traffic_selectors: bool + :keyword ipsec_policies: The IPSec Policies to be considered by this connection. + :paramtype ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :keyword traffic_selector_policies: The Traffic Selector Policies to be considered by this + connection. + :paramtype traffic_selector_policies: + list[~azure.mgmt.network.v2021_08_01.models.TrafficSelectorPolicy] + :keyword enable_rate_limiting: EnableBgp flag. + :paramtype enable_rate_limiting: bool + :keyword enable_internet_security: Enable internet security. + :paramtype enable_internet_security: bool + :keyword use_local_azure_ip_address: Use local azure ip to initiate connection. + :paramtype use_local_azure_ip_address: bool + :keyword vpn_link_connections: List of all vpn site link connections to the gateway. + :paramtype vpn_link_connections: + list[~azure.mgmt.network.v2021_08_01.models.VpnSiteLinkConnection] + :keyword routing_configuration: The Routing Configuration indicating the associated and + propagated route tables on this connection. + :paramtype routing_configuration: ~azure.mgmt.network.v2021_08_01.models.RoutingConfiguration + """ + super(VpnConnection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.remote_vpn_site = remote_vpn_site + self.routing_weight = routing_weight + self.dpd_timeout_seconds = dpd_timeout_seconds + self.connection_status = None + self.vpn_connection_protocol_type = vpn_connection_protocol_type + self.ingress_bytes_transferred = None + self.egress_bytes_transferred = None + self.connection_bandwidth = connection_bandwidth + self.shared_key = shared_key + self.enable_bgp = enable_bgp + self.use_policy_based_traffic_selectors = use_policy_based_traffic_selectors + self.ipsec_policies = ipsec_policies + self.traffic_selector_policies = traffic_selector_policies + self.enable_rate_limiting = enable_rate_limiting + self.enable_internet_security = enable_internet_security + self.use_local_azure_ip_address = use_local_azure_ip_address + self.provisioning_state = None + self.vpn_link_connections = vpn_link_connections + self.routing_configuration = routing_configuration + + +class VpnConnectionPacketCaptureStartParameters(msrest.serialization.Model): + """Vpn Connection packet capture parameters supplied to start packet capture on gateway connection. + + :ivar filter_data: Start Packet capture parameters on vpn connection. + :vartype filter_data: str + :ivar link_connection_names: List of site link connection names. + :vartype link_connection_names: list[str] + """ + + _attribute_map = { + 'filter_data': {'key': 'filterData', 'type': 'str'}, + 'link_connection_names': {'key': 'linkConnectionNames', 'type': '[str]'}, + } + + def __init__( + self, + *, + filter_data: Optional[str] = None, + link_connection_names: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword filter_data: Start Packet capture parameters on vpn connection. + :paramtype filter_data: str + :keyword link_connection_names: List of site link connection names. + :paramtype link_connection_names: list[str] + """ + super(VpnConnectionPacketCaptureStartParameters, self).__init__(**kwargs) + self.filter_data = filter_data + self.link_connection_names = link_connection_names + + +class VpnConnectionPacketCaptureStopParameters(msrest.serialization.Model): + """Vpn Connection packet capture parameters supplied to stop packet capture on gateway connection. + + :ivar sas_url: SAS url for packet capture on vpn connection. + :vartype sas_url: str + :ivar link_connection_names: List of site link connection names. + :vartype link_connection_names: list[str] + """ + + _attribute_map = { + 'sas_url': {'key': 'sasUrl', 'type': 'str'}, + 'link_connection_names': {'key': 'linkConnectionNames', 'type': '[str]'}, + } + + def __init__( + self, + *, + sas_url: Optional[str] = None, + link_connection_names: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword sas_url: SAS url for packet capture on vpn connection. + :paramtype sas_url: str + :keyword link_connection_names: List of site link connection names. + :paramtype link_connection_names: list[str] + """ + super(VpnConnectionPacketCaptureStopParameters, self).__init__(**kwargs) + self.sas_url = sas_url + self.link_connection_names = link_connection_names + + +class VpnDeviceScriptParameters(msrest.serialization.Model): + """Vpn device configuration script generation parameters. + + :ivar vendor: The vendor for the vpn device. + :vartype vendor: str + :ivar device_family: The device family for the vpn device. + :vartype device_family: str + :ivar firmware_version: The firmware version for the vpn device. + :vartype firmware_version: str + """ + + _attribute_map = { + 'vendor': {'key': 'vendor', 'type': 'str'}, + 'device_family': {'key': 'deviceFamily', 'type': 'str'}, + 'firmware_version': {'key': 'firmwareVersion', 'type': 'str'}, + } + + def __init__( + self, + *, + vendor: Optional[str] = None, + device_family: Optional[str] = None, + firmware_version: Optional[str] = None, + **kwargs + ): + """ + :keyword vendor: The vendor for the vpn device. + :paramtype vendor: str + :keyword device_family: The device family for the vpn device. + :paramtype device_family: str + :keyword firmware_version: The firmware version for the vpn device. + :paramtype firmware_version: str + """ + super(VpnDeviceScriptParameters, self).__init__(**kwargs) + self.vendor = vendor + self.device_family = device_family + self.firmware_version = firmware_version + + +class VpnGateway(Resource): + """VpnGateway Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar virtual_hub: The VirtualHub to which the gateway belongs. + :vartype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar connections: List of all vpn connections to the gateway. + :vartype connections: list[~azure.mgmt.network.v2021_08_01.models.VpnConnection] + :ivar bgp_settings: Local network gateway's BGP speaker settings. + :vartype bgp_settings: ~azure.mgmt.network.v2021_08_01.models.BgpSettings + :ivar provisioning_state: The provisioning state of the VPN gateway resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar vpn_gateway_scale_unit: The scale unit for this vpn gateway. + :vartype vpn_gateway_scale_unit: int + :ivar ip_configurations: List of all IPs configured on the gateway. + :vartype ip_configurations: + list[~azure.mgmt.network.v2021_08_01.models.VpnGatewayIpConfiguration] + :ivar enable_bgp_route_translation_for_nat: Enable BGP routes translation for NAT on this + VpnGateway. + :vartype enable_bgp_route_translation_for_nat: bool + :ivar is_routing_preference_internet: Enable Routing Preference property for the Public IP + Interface of the VpnGateway. + :vartype is_routing_preference_internet: bool + :ivar nat_rules: List of all the nat Rules associated with the gateway. + :vartype nat_rules: list[~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'ip_configurations': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'virtual_hub': {'key': 'properties.virtualHub', 'type': 'SubResource'}, + 'connections': {'key': 'properties.connections', 'type': '[VpnConnection]'}, + 'bgp_settings': {'key': 'properties.bgpSettings', 'type': 'BgpSettings'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'vpn_gateway_scale_unit': {'key': 'properties.vpnGatewayScaleUnit', 'type': 'int'}, + 'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[VpnGatewayIpConfiguration]'}, + 'enable_bgp_route_translation_for_nat': {'key': 'properties.enableBgpRouteTranslationForNat', 'type': 'bool'}, + 'is_routing_preference_internet': {'key': 'properties.isRoutingPreferenceInternet', 'type': 'bool'}, + 'nat_rules': {'key': 'properties.natRules', 'type': '[VpnGatewayNatRule]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + virtual_hub: Optional["SubResource"] = None, + connections: Optional[List["VpnConnection"]] = None, + bgp_settings: Optional["BgpSettings"] = None, + vpn_gateway_scale_unit: Optional[int] = None, + enable_bgp_route_translation_for_nat: Optional[bool] = None, + is_routing_preference_internet: Optional[bool] = None, + nat_rules: Optional[List["VpnGatewayNatRule"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword virtual_hub: The VirtualHub to which the gateway belongs. + :paramtype virtual_hub: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword connections: List of all vpn connections to the gateway. + :paramtype connections: list[~azure.mgmt.network.v2021_08_01.models.VpnConnection] + :keyword bgp_settings: Local network gateway's BGP speaker settings. + :paramtype bgp_settings: ~azure.mgmt.network.v2021_08_01.models.BgpSettings + :keyword vpn_gateway_scale_unit: The scale unit for this vpn gateway. + :paramtype vpn_gateway_scale_unit: int + :keyword enable_bgp_route_translation_for_nat: Enable BGP routes translation for NAT on this + VpnGateway. + :paramtype enable_bgp_route_translation_for_nat: bool + :keyword is_routing_preference_internet: Enable Routing Preference property for the Public IP + Interface of the VpnGateway. + :paramtype is_routing_preference_internet: bool + :keyword nat_rules: List of all the nat Rules associated with the gateway. + :paramtype nat_rules: list[~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule] + """ + super(VpnGateway, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.virtual_hub = virtual_hub + self.connections = connections + self.bgp_settings = bgp_settings + self.provisioning_state = None + self.vpn_gateway_scale_unit = vpn_gateway_scale_unit + self.ip_configurations = None + self.enable_bgp_route_translation_for_nat = enable_bgp_route_translation_for_nat + self.is_routing_preference_internet = is_routing_preference_internet + self.nat_rules = nat_rules + + +class VpnGatewayIpConfiguration(msrest.serialization.Model): + """IP Configuration of a VPN Gateway Resource. + + :ivar id: The identifier of the IP configuration for a VPN Gateway. + :vartype id: str + :ivar public_ip_address: The public IP address of this IP configuration. + :vartype public_ip_address: str + :ivar private_ip_address: The private IP address of this IP configuration. + :vartype private_ip_address: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'public_ip_address': {'key': 'publicIpAddress', 'type': 'str'}, + 'private_ip_address': {'key': 'privateIpAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + public_ip_address: Optional[str] = None, + private_ip_address: Optional[str] = None, + **kwargs + ): + """ + :keyword id: The identifier of the IP configuration for a VPN Gateway. + :paramtype id: str + :keyword public_ip_address: The public IP address of this IP configuration. + :paramtype public_ip_address: str + :keyword private_ip_address: The private IP address of this IP configuration. + :paramtype private_ip_address: str + """ + super(VpnGatewayIpConfiguration, self).__init__(**kwargs) + self.id = id + self.public_ip_address = public_ip_address + self.private_ip_address = private_ip_address + + +class VpnGatewayNatRule(SubResource): + """VpnGatewayNatRule Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar provisioning_state: The provisioning state of the NAT Rule resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar type_properties_type: The type of NAT rule for VPN NAT. Possible values include: + "Static", "Dynamic". + :vartype type_properties_type: str or ~azure.mgmt.network.v2021_08_01.models.VpnNatRuleType + :ivar mode: The Source NAT direction of a VPN NAT. Possible values include: "EgressSnat", + "IngressSnat". + :vartype mode: str or ~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMode + :ivar internal_mappings: The private IP address internal mapping for NAT. + :vartype internal_mappings: list[~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMapping] + :ivar external_mappings: The private IP address external mapping for NAT. + :vartype external_mappings: list[~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMapping] + :ivar ip_configuration_id: The IP Configuration ID this NAT rule applies to. + :vartype ip_configuration_id: str + :ivar egress_vpn_site_link_connections: List of egress VpnSiteLinkConnections. + :vartype egress_vpn_site_link_connections: + list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar ingress_vpn_site_link_connections: List of ingress VpnSiteLinkConnections. + :vartype ingress_vpn_site_link_connections: + list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'egress_vpn_site_link_connections': {'readonly': True}, + 'ingress_vpn_site_link_connections': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'type_properties_type': {'key': 'properties.type', 'type': 'str'}, + 'mode': {'key': 'properties.mode', 'type': 'str'}, + 'internal_mappings': {'key': 'properties.internalMappings', 'type': '[VpnNatRuleMapping]'}, + 'external_mappings': {'key': 'properties.externalMappings', 'type': '[VpnNatRuleMapping]'}, + 'ip_configuration_id': {'key': 'properties.ipConfigurationId', 'type': 'str'}, + 'egress_vpn_site_link_connections': {'key': 'properties.egressVpnSiteLinkConnections', 'type': '[SubResource]'}, + 'ingress_vpn_site_link_connections': {'key': 'properties.ingressVpnSiteLinkConnections', 'type': '[SubResource]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + type_properties_type: Optional[Union[str, "VpnNatRuleType"]] = None, + mode: Optional[Union[str, "VpnNatRuleMode"]] = None, + internal_mappings: Optional[List["VpnNatRuleMapping"]] = None, + external_mappings: Optional[List["VpnNatRuleMapping"]] = None, + ip_configuration_id: Optional[str] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword type_properties_type: The type of NAT rule for VPN NAT. Possible values include: + "Static", "Dynamic". + :paramtype type_properties_type: str or ~azure.mgmt.network.v2021_08_01.models.VpnNatRuleType + :keyword mode: The Source NAT direction of a VPN NAT. Possible values include: "EgressSnat", + "IngressSnat". + :paramtype mode: str or ~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMode + :keyword internal_mappings: The private IP address internal mapping for NAT. + :paramtype internal_mappings: list[~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMapping] + :keyword external_mappings: The private IP address external mapping for NAT. + :paramtype external_mappings: list[~azure.mgmt.network.v2021_08_01.models.VpnNatRuleMapping] + :keyword ip_configuration_id: The IP Configuration ID this NAT rule applies to. + :paramtype ip_configuration_id: str + """ + super(VpnGatewayNatRule, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.provisioning_state = None + self.type_properties_type = type_properties_type + self.mode = mode + self.internal_mappings = internal_mappings + self.external_mappings = external_mappings + self.ip_configuration_id = ip_configuration_id + self.egress_vpn_site_link_connections = None + self.ingress_vpn_site_link_connections = None + + +class VpnGatewayPacketCaptureStartParameters(msrest.serialization.Model): + """Start packet capture parameters. + + :ivar filter_data: Start Packet capture parameters on vpn gateway. + :vartype filter_data: str + """ + + _attribute_map = { + 'filter_data': {'key': 'filterData', 'type': 'str'}, + } + + def __init__( + self, + *, + filter_data: Optional[str] = None, + **kwargs + ): + """ + :keyword filter_data: Start Packet capture parameters on vpn gateway. + :paramtype filter_data: str + """ + super(VpnGatewayPacketCaptureStartParameters, self).__init__(**kwargs) + self.filter_data = filter_data + + +class VpnGatewayPacketCaptureStopParameters(msrest.serialization.Model): + """Stop packet capture parameters. + + :ivar sas_url: SAS url for packet capture on vpn gateway. + :vartype sas_url: str + """ + + _attribute_map = { + 'sas_url': {'key': 'sasUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + sas_url: Optional[str] = None, + **kwargs + ): + """ + :keyword sas_url: SAS url for packet capture on vpn gateway. + :paramtype sas_url: str + """ + super(VpnGatewayPacketCaptureStopParameters, self).__init__(**kwargs) + self.sas_url = sas_url + + +class VpnLinkBgpSettings(msrest.serialization.Model): + """BGP settings details for a link. + + :ivar asn: The BGP speaker's ASN. + :vartype asn: long + :ivar bgp_peering_address: The BGP peering address and BGP identifier of this BGP speaker. + :vartype bgp_peering_address: str + """ + + _attribute_map = { + 'asn': {'key': 'asn', 'type': 'long'}, + 'bgp_peering_address': {'key': 'bgpPeeringAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + asn: Optional[int] = None, + bgp_peering_address: Optional[str] = None, + **kwargs + ): + """ + :keyword asn: The BGP speaker's ASN. + :paramtype asn: long + :keyword bgp_peering_address: The BGP peering address and BGP identifier of this BGP speaker. + :paramtype bgp_peering_address: str + """ + super(VpnLinkBgpSettings, self).__init__(**kwargs) + self.asn = asn + self.bgp_peering_address = bgp_peering_address + + +class VpnLinkProviderProperties(msrest.serialization.Model): + """List of properties of a link provider. + + :ivar link_provider_name: Name of the link provider. + :vartype link_provider_name: str + :ivar link_speed_in_mbps: Link speed. + :vartype link_speed_in_mbps: int + """ + + _attribute_map = { + 'link_provider_name': {'key': 'linkProviderName', 'type': 'str'}, + 'link_speed_in_mbps': {'key': 'linkSpeedInMbps', 'type': 'int'}, + } + + def __init__( + self, + *, + link_provider_name: Optional[str] = None, + link_speed_in_mbps: Optional[int] = None, + **kwargs + ): + """ + :keyword link_provider_name: Name of the link provider. + :paramtype link_provider_name: str + :keyword link_speed_in_mbps: Link speed. + :paramtype link_speed_in_mbps: int + """ + super(VpnLinkProviderProperties, self).__init__(**kwargs) + self.link_provider_name = link_provider_name + self.link_speed_in_mbps = link_speed_in_mbps + + +class VpnNatRuleMapping(msrest.serialization.Model): + """Vpn NatRule mapping. + + :ivar address_space: Address space for Vpn NatRule mapping. + :vartype address_space: str + :ivar port_range: Port range for Vpn NatRule mapping. + :vartype port_range: str + """ + + _attribute_map = { + 'address_space': {'key': 'addressSpace', 'type': 'str'}, + 'port_range': {'key': 'portRange', 'type': 'str'}, + } + + def __init__( + self, + *, + address_space: Optional[str] = None, + port_range: Optional[str] = None, + **kwargs + ): + """ + :keyword address_space: Address space for Vpn NatRule mapping. + :paramtype address_space: str + :keyword port_range: Port range for Vpn NatRule mapping. + :paramtype port_range: str + """ + super(VpnNatRuleMapping, self).__init__(**kwargs) + self.address_space = address_space + self.port_range = port_range + + +class VpnPacketCaptureStartParameters(msrest.serialization.Model): + """Start packet capture parameters on virtual network gateway. + + :ivar filter_data: Start Packet capture parameters. + :vartype filter_data: str + """ + + _attribute_map = { + 'filter_data': {'key': 'filterData', 'type': 'str'}, + } + + def __init__( + self, + *, + filter_data: Optional[str] = None, + **kwargs + ): + """ + :keyword filter_data: Start Packet capture parameters. + :paramtype filter_data: str + """ + super(VpnPacketCaptureStartParameters, self).__init__(**kwargs) + self.filter_data = filter_data + + +class VpnPacketCaptureStopParameters(msrest.serialization.Model): + """Stop packet capture parameters. + + :ivar sas_url: SAS url for packet capture on virtual network gateway. + :vartype sas_url: str + """ + + _attribute_map = { + 'sas_url': {'key': 'sasUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + sas_url: Optional[str] = None, + **kwargs + ): + """ + :keyword sas_url: SAS url for packet capture on virtual network gateway. + :paramtype sas_url: str + """ + super(VpnPacketCaptureStopParameters, self).__init__(**kwargs) + self.sas_url = sas_url + + +class VpnProfileResponse(msrest.serialization.Model): + """Vpn Profile Response for package generation. + + :ivar profile_url: URL to the VPN profile. + :vartype profile_url: str + """ + + _attribute_map = { + 'profile_url': {'key': 'profileUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + profile_url: Optional[str] = None, + **kwargs + ): + """ + :keyword profile_url: URL to the VPN profile. + :paramtype profile_url: str + """ + super(VpnProfileResponse, self).__init__(**kwargs) + self.profile_url = profile_url + + +class VpnServerConfigRadiusClientRootCertificate(msrest.serialization.Model): + """Properties of the Radius client root certificate of VpnServerConfiguration. + + :ivar name: The certificate name. + :vartype name: str + :ivar thumbprint: The Radius client root certificate thumbprint. + :vartype thumbprint: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'thumbprint': {'key': 'thumbprint', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + thumbprint: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The certificate name. + :paramtype name: str + :keyword thumbprint: The Radius client root certificate thumbprint. + :paramtype thumbprint: str + """ + super(VpnServerConfigRadiusClientRootCertificate, self).__init__(**kwargs) + self.name = name + self.thumbprint = thumbprint + + +class VpnServerConfigRadiusServerRootCertificate(msrest.serialization.Model): + """Properties of Radius Server root certificate of VpnServerConfiguration. + + :ivar name: The certificate name. + :vartype name: str + :ivar public_cert_data: The certificate public data. + :vartype public_cert_data: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'public_cert_data': {'key': 'publicCertData', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + public_cert_data: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The certificate name. + :paramtype name: str + :keyword public_cert_data: The certificate public data. + :paramtype public_cert_data: str + """ + super(VpnServerConfigRadiusServerRootCertificate, self).__init__(**kwargs) + self.name = name + self.public_cert_data = public_cert_data + + +class VpnServerConfiguration(Resource): + """VpnServerConfiguration Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar name_properties_name: The name of the VpnServerConfiguration that is unique within a + resource group. + :vartype name_properties_name: str + :ivar vpn_protocols: VPN protocols for the VpnServerConfiguration. + :vartype vpn_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.VpnGatewayTunnelingProtocol] + :ivar vpn_authentication_types: VPN authentication types for the VpnServerConfiguration. + :vartype vpn_authentication_types: list[str or + ~azure.mgmt.network.v2021_08_01.models.VpnAuthenticationType] + :ivar vpn_client_root_certificates: VPN client root certificate of VpnServerConfiguration. + :vartype vpn_client_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigVpnClientRootCertificate] + :ivar vpn_client_revoked_certificates: VPN client revoked certificate of + VpnServerConfiguration. + :vartype vpn_client_revoked_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigVpnClientRevokedCertificate] + :ivar radius_server_root_certificates: Radius Server root certificate of + VpnServerConfiguration. + :vartype radius_server_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigRadiusServerRootCertificate] + :ivar radius_client_root_certificates: Radius client root certificate of + VpnServerConfiguration. + :vartype radius_client_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigRadiusClientRootCertificate] + :ivar vpn_client_ipsec_policies: VpnClientIpsecPolicies for VpnServerConfiguration. + :vartype vpn_client_ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :ivar radius_server_address: The radius server address property of the VpnServerConfiguration + resource for point to site client connection. + :vartype radius_server_address: str + :ivar radius_server_secret: The radius secret property of the VpnServerConfiguration resource + for point to site client connection. + :vartype radius_server_secret: str + :ivar radius_servers: Multiple Radius Server configuration for VpnServerConfiguration. + :vartype radius_servers: list[~azure.mgmt.network.v2021_08_01.models.RadiusServer] + :ivar aad_authentication_parameters: The set of aad vpn authentication parameters. + :vartype aad_authentication_parameters: + ~azure.mgmt.network.v2021_08_01.models.AadAuthenticationParameters + :ivar provisioning_state: The provisioning state of the VpnServerConfiguration resource. + Possible values are: 'Updating', 'Deleting', and 'Failed'. + :vartype provisioning_state: str + :ivar p2_s_vpn_gateways: List of references to P2SVpnGateways. + :vartype p2_s_vpn_gateways: list[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :ivar configuration_policy_groups: List of all VpnServerConfigurationPolicyGroups. + :vartype configuration_policy_groups: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup] + :ivar etag_properties_etag: A unique read-only string that changes whenever the resource is + updated. + :vartype etag_properties_etag: str + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'p2_s_vpn_gateways': {'readonly': True}, + 'etag_properties_etag': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'name_properties_name': {'key': 'properties.name', 'type': 'str'}, + 'vpn_protocols': {'key': 'properties.vpnProtocols', 'type': '[str]'}, + 'vpn_authentication_types': {'key': 'properties.vpnAuthenticationTypes', 'type': '[str]'}, + 'vpn_client_root_certificates': {'key': 'properties.vpnClientRootCertificates', 'type': '[VpnServerConfigVpnClientRootCertificate]'}, + 'vpn_client_revoked_certificates': {'key': 'properties.vpnClientRevokedCertificates', 'type': '[VpnServerConfigVpnClientRevokedCertificate]'}, + 'radius_server_root_certificates': {'key': 'properties.radiusServerRootCertificates', 'type': '[VpnServerConfigRadiusServerRootCertificate]'}, + 'radius_client_root_certificates': {'key': 'properties.radiusClientRootCertificates', 'type': '[VpnServerConfigRadiusClientRootCertificate]'}, + 'vpn_client_ipsec_policies': {'key': 'properties.vpnClientIpsecPolicies', 'type': '[IpsecPolicy]'}, + 'radius_server_address': {'key': 'properties.radiusServerAddress', 'type': 'str'}, + 'radius_server_secret': {'key': 'properties.radiusServerSecret', 'type': 'str'}, + 'radius_servers': {'key': 'properties.radiusServers', 'type': '[RadiusServer]'}, + 'aad_authentication_parameters': {'key': 'properties.aadAuthenticationParameters', 'type': 'AadAuthenticationParameters'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'p2_s_vpn_gateways': {'key': 'properties.p2SVpnGateways', 'type': '[P2SVpnGateway]'}, + 'configuration_policy_groups': {'key': 'properties.configurationPolicyGroups', 'type': '[VpnServerConfigurationPolicyGroup]'}, + 'etag_properties_etag': {'key': 'properties.etag', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + name_properties_name: Optional[str] = None, + vpn_protocols: Optional[List[Union[str, "VpnGatewayTunnelingProtocol"]]] = None, + vpn_authentication_types: Optional[List[Union[str, "VpnAuthenticationType"]]] = None, + vpn_client_root_certificates: Optional[List["VpnServerConfigVpnClientRootCertificate"]] = None, + vpn_client_revoked_certificates: Optional[List["VpnServerConfigVpnClientRevokedCertificate"]] = None, + radius_server_root_certificates: Optional[List["VpnServerConfigRadiusServerRootCertificate"]] = None, + radius_client_root_certificates: Optional[List["VpnServerConfigRadiusClientRootCertificate"]] = None, + vpn_client_ipsec_policies: Optional[List["IpsecPolicy"]] = None, + radius_server_address: Optional[str] = None, + radius_server_secret: Optional[str] = None, + radius_servers: Optional[List["RadiusServer"]] = None, + aad_authentication_parameters: Optional["AadAuthenticationParameters"] = None, + configuration_policy_groups: Optional[List["VpnServerConfigurationPolicyGroup"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword name_properties_name: The name of the VpnServerConfiguration that is unique within a + resource group. + :paramtype name_properties_name: str + :keyword vpn_protocols: VPN protocols for the VpnServerConfiguration. + :paramtype vpn_protocols: list[str or + ~azure.mgmt.network.v2021_08_01.models.VpnGatewayTunnelingProtocol] + :keyword vpn_authentication_types: VPN authentication types for the VpnServerConfiguration. + :paramtype vpn_authentication_types: list[str or + ~azure.mgmt.network.v2021_08_01.models.VpnAuthenticationType] + :keyword vpn_client_root_certificates: VPN client root certificate of VpnServerConfiguration. + :paramtype vpn_client_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigVpnClientRootCertificate] + :keyword vpn_client_revoked_certificates: VPN client revoked certificate of + VpnServerConfiguration. + :paramtype vpn_client_revoked_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigVpnClientRevokedCertificate] + :keyword radius_server_root_certificates: Radius Server root certificate of + VpnServerConfiguration. + :paramtype radius_server_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigRadiusServerRootCertificate] + :keyword radius_client_root_certificates: Radius client root certificate of + VpnServerConfiguration. + :paramtype radius_client_root_certificates: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigRadiusClientRootCertificate] + :keyword vpn_client_ipsec_policies: VpnClientIpsecPolicies for VpnServerConfiguration. + :paramtype vpn_client_ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :keyword radius_server_address: The radius server address property of the + VpnServerConfiguration resource for point to site client connection. + :paramtype radius_server_address: str + :keyword radius_server_secret: The radius secret property of the VpnServerConfiguration + resource for point to site client connection. + :paramtype radius_server_secret: str + :keyword radius_servers: Multiple Radius Server configuration for VpnServerConfiguration. + :paramtype radius_servers: list[~azure.mgmt.network.v2021_08_01.models.RadiusServer] + :keyword aad_authentication_parameters: The set of aad vpn authentication parameters. + :paramtype aad_authentication_parameters: + ~azure.mgmt.network.v2021_08_01.models.AadAuthenticationParameters + :keyword configuration_policy_groups: List of all VpnServerConfigurationPolicyGroups. + :paramtype configuration_policy_groups: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup] + """ + super(VpnServerConfiguration, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.name_properties_name = name_properties_name + self.vpn_protocols = vpn_protocols + self.vpn_authentication_types = vpn_authentication_types + self.vpn_client_root_certificates = vpn_client_root_certificates + self.vpn_client_revoked_certificates = vpn_client_revoked_certificates + self.radius_server_root_certificates = radius_server_root_certificates + self.radius_client_root_certificates = radius_client_root_certificates + self.vpn_client_ipsec_policies = vpn_client_ipsec_policies + self.radius_server_address = radius_server_address + self.radius_server_secret = radius_server_secret + self.radius_servers = radius_servers + self.aad_authentication_parameters = aad_authentication_parameters + self.provisioning_state = None + self.p2_s_vpn_gateways = None + self.configuration_policy_groups = configuration_policy_groups + self.etag_properties_etag = None + + +class VpnServerConfigurationPolicyGroup(SubResource): + """VpnServerConfigurationPolicyGroup Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar is_default: Shows if this is a Default VpnServerConfigurationPolicyGroup or not. + :vartype is_default: bool + :ivar priority: Priority for VpnServerConfigurationPolicyGroup. + :vartype priority: int + :ivar policy_members: Multiple PolicyMembers for VpnServerConfigurationPolicyGroup. + :vartype policy_members: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroupMember] + :ivar p2_s_connection_configurations: List of references to P2SConnectionConfigurations. + :vartype p2_s_connection_configurations: + list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar provisioning_state: The provisioning state of the VpnServerConfigurationPolicyGroup + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'p2_s_connection_configurations': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'is_default': {'key': 'properties.isDefault', 'type': 'bool'}, + 'priority': {'key': 'properties.priority', 'type': 'int'}, + 'policy_members': {'key': 'properties.policyMembers', 'type': '[VpnServerConfigurationPolicyGroupMember]'}, + 'p2_s_connection_configurations': {'key': 'properties.p2SConnectionConfigurations', 'type': '[SubResource]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + is_default: Optional[bool] = None, + priority: Optional[int] = None, + policy_members: Optional[List["VpnServerConfigurationPolicyGroupMember"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword is_default: Shows if this is a Default VpnServerConfigurationPolicyGroup or not. + :paramtype is_default: bool + :keyword priority: Priority for VpnServerConfigurationPolicyGroup. + :paramtype priority: int + :keyword policy_members: Multiple PolicyMembers for VpnServerConfigurationPolicyGroup. + :paramtype policy_members: + list[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroupMember] + """ + super(VpnServerConfigurationPolicyGroup, self).__init__(id=id, **kwargs) + self.etag = None + self.name = name + self.type = None + self.is_default = is_default + self.priority = priority + self.policy_members = policy_members + self.p2_s_connection_configurations = None + self.provisioning_state = None + + +class VpnServerConfigurationPolicyGroupMember(msrest.serialization.Model): + """VpnServerConfiguration PolicyGroup member. + + :ivar name: Name of the VpnServerConfigurationPolicyGroupMember. + :vartype name: str + :ivar attribute_type: The Vpn Policy member attribute type. Possible values include: + "CertificateGroupId", "AADGroupId", "RadiusAzureGroupId". + :vartype attribute_type: str or + ~azure.mgmt.network.v2021_08_01.models.VpnPolicyMemberAttributeType + :ivar attribute_value: The value of Attribute used for this + VpnServerConfigurationPolicyGroupMember. + :vartype attribute_value: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'attribute_type': {'key': 'attributeType', 'type': 'str'}, + 'attribute_value': {'key': 'attributeValue', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + attribute_type: Optional[Union[str, "VpnPolicyMemberAttributeType"]] = None, + attribute_value: Optional[str] = None, + **kwargs + ): + """ + :keyword name: Name of the VpnServerConfigurationPolicyGroupMember. + :paramtype name: str + :keyword attribute_type: The Vpn Policy member attribute type. Possible values include: + "CertificateGroupId", "AADGroupId", "RadiusAzureGroupId". + :paramtype attribute_type: str or + ~azure.mgmt.network.v2021_08_01.models.VpnPolicyMemberAttributeType + :keyword attribute_value: The value of Attribute used for this + VpnServerConfigurationPolicyGroupMember. + :paramtype attribute_value: str + """ + super(VpnServerConfigurationPolicyGroupMember, self).__init__(**kwargs) + self.name = name + self.attribute_type = attribute_type + self.attribute_value = attribute_value + + +class VpnServerConfigurationsResponse(msrest.serialization.Model): + """VpnServerConfigurations list associated with VirtualWan Response. + + :ivar vpn_server_configuration_resource_ids: List of VpnServerConfigurations associated with + VirtualWan. + :vartype vpn_server_configuration_resource_ids: list[str] + """ + + _attribute_map = { + 'vpn_server_configuration_resource_ids': {'key': 'vpnServerConfigurationResourceIds', 'type': '[str]'}, + } + + def __init__( + self, + *, + vpn_server_configuration_resource_ids: Optional[List[str]] = None, + **kwargs + ): + """ + :keyword vpn_server_configuration_resource_ids: List of VpnServerConfigurations associated with + VirtualWan. + :paramtype vpn_server_configuration_resource_ids: list[str] + """ + super(VpnServerConfigurationsResponse, self).__init__(**kwargs) + self.vpn_server_configuration_resource_ids = vpn_server_configuration_resource_ids + + +class VpnServerConfigVpnClientRevokedCertificate(msrest.serialization.Model): + """Properties of the revoked VPN client certificate of VpnServerConfiguration. + + :ivar name: The certificate name. + :vartype name: str + :ivar thumbprint: The revoked VPN client certificate thumbprint. + :vartype thumbprint: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'thumbprint': {'key': 'thumbprint', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + thumbprint: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The certificate name. + :paramtype name: str + :keyword thumbprint: The revoked VPN client certificate thumbprint. + :paramtype thumbprint: str + """ + super(VpnServerConfigVpnClientRevokedCertificate, self).__init__(**kwargs) + self.name = name + self.thumbprint = thumbprint + + +class VpnServerConfigVpnClientRootCertificate(msrest.serialization.Model): + """Properties of VPN client root certificate of VpnServerConfiguration. + + :ivar name: The certificate name. + :vartype name: str + :ivar public_cert_data: The certificate public data. + :vartype public_cert_data: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'public_cert_data': {'key': 'publicCertData', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + public_cert_data: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The certificate name. + :paramtype name: str + :keyword public_cert_data: The certificate public data. + :paramtype public_cert_data: str + """ + super(VpnServerConfigVpnClientRootCertificate, self).__init__(**kwargs) + self.name = name + self.public_cert_data = public_cert_data + + +class VpnSite(Resource): + """VpnSite Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar virtual_wan: The VirtualWAN to which the vpnSite belongs. + :vartype virtual_wan: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar device_properties: The device properties. + :vartype device_properties: ~azure.mgmt.network.v2021_08_01.models.DeviceProperties + :ivar ip_address: The ip-address for the vpn-site. + :vartype ip_address: str + :ivar site_key: The key for vpn-site that can be used for connections. + :vartype site_key: str + :ivar address_space: The AddressSpace that contains an array of IP address ranges. + :vartype address_space: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :ivar bgp_properties: The set of bgp properties. + :vartype bgp_properties: ~azure.mgmt.network.v2021_08_01.models.BgpSettings + :ivar provisioning_state: The provisioning state of the VPN site resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar is_security_site: IsSecuritySite flag. + :vartype is_security_site: bool + :ivar vpn_site_links: List of all vpn site links. + :vartype vpn_site_links: list[~azure.mgmt.network.v2021_08_01.models.VpnSiteLink] + :ivar o365_policy: Office365 Policy. + :vartype o365_policy: ~azure.mgmt.network.v2021_08_01.models.O365PolicyProperties + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'virtual_wan': {'key': 'properties.virtualWan', 'type': 'SubResource'}, + 'device_properties': {'key': 'properties.deviceProperties', 'type': 'DeviceProperties'}, + 'ip_address': {'key': 'properties.ipAddress', 'type': 'str'}, + 'site_key': {'key': 'properties.siteKey', 'type': 'str'}, + 'address_space': {'key': 'properties.addressSpace', 'type': 'AddressSpace'}, + 'bgp_properties': {'key': 'properties.bgpProperties', 'type': 'BgpSettings'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'is_security_site': {'key': 'properties.isSecuritySite', 'type': 'bool'}, + 'vpn_site_links': {'key': 'properties.vpnSiteLinks', 'type': '[VpnSiteLink]'}, + 'o365_policy': {'key': 'properties.o365Policy', 'type': 'O365PolicyProperties'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + virtual_wan: Optional["SubResource"] = None, + device_properties: Optional["DeviceProperties"] = None, + ip_address: Optional[str] = None, + site_key: Optional[str] = None, + address_space: Optional["AddressSpace"] = None, + bgp_properties: Optional["BgpSettings"] = None, + is_security_site: Optional[bool] = None, + vpn_site_links: Optional[List["VpnSiteLink"]] = None, + o365_policy: Optional["O365PolicyProperties"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword virtual_wan: The VirtualWAN to which the vpnSite belongs. + :paramtype virtual_wan: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword device_properties: The device properties. + :paramtype device_properties: ~azure.mgmt.network.v2021_08_01.models.DeviceProperties + :keyword ip_address: The ip-address for the vpn-site. + :paramtype ip_address: str + :keyword site_key: The key for vpn-site that can be used for connections. + :paramtype site_key: str + :keyword address_space: The AddressSpace that contains an array of IP address ranges. + :paramtype address_space: ~azure.mgmt.network.v2021_08_01.models.AddressSpace + :keyword bgp_properties: The set of bgp properties. + :paramtype bgp_properties: ~azure.mgmt.network.v2021_08_01.models.BgpSettings + :keyword is_security_site: IsSecuritySite flag. + :paramtype is_security_site: bool + :keyword vpn_site_links: List of all vpn site links. + :paramtype vpn_site_links: list[~azure.mgmt.network.v2021_08_01.models.VpnSiteLink] + :keyword o365_policy: Office365 Policy. + :paramtype o365_policy: ~azure.mgmt.network.v2021_08_01.models.O365PolicyProperties + """ + super(VpnSite, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.virtual_wan = virtual_wan + self.device_properties = device_properties + self.ip_address = ip_address + self.site_key = site_key + self.address_space = address_space + self.bgp_properties = bgp_properties + self.provisioning_state = None + self.is_security_site = is_security_site + self.vpn_site_links = vpn_site_links + self.o365_policy = o365_policy + + +class VpnSiteId(msrest.serialization.Model): + """VpnSite Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar vpn_site: The resource-uri of the vpn-site for which config is to be fetched. + :vartype vpn_site: str + """ + + _validation = { + 'vpn_site': {'readonly': True}, + } + + _attribute_map = { + 'vpn_site': {'key': 'vpnSite', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(VpnSiteId, self).__init__(**kwargs) + self.vpn_site = None + + +class VpnSiteLink(SubResource): + """VpnSiteLink Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar link_properties: The link provider properties. + :vartype link_properties: ~azure.mgmt.network.v2021_08_01.models.VpnLinkProviderProperties + :ivar ip_address: The ip-address for the vpn-site-link. + :vartype ip_address: str + :ivar fqdn: FQDN of vpn-site-link. + :vartype fqdn: str + :ivar bgp_properties: The set of bgp properties. + :vartype bgp_properties: ~azure.mgmt.network.v2021_08_01.models.VpnLinkBgpSettings + :ivar provisioning_state: The provisioning state of the VPN site link resource. Possible values + include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'link_properties': {'key': 'properties.linkProperties', 'type': 'VpnLinkProviderProperties'}, + 'ip_address': {'key': 'properties.ipAddress', 'type': 'str'}, + 'fqdn': {'key': 'properties.fqdn', 'type': 'str'}, + 'bgp_properties': {'key': 'properties.bgpProperties', 'type': 'VpnLinkBgpSettings'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + link_properties: Optional["VpnLinkProviderProperties"] = None, + ip_address: Optional[str] = None, + fqdn: Optional[str] = None, + bgp_properties: Optional["VpnLinkBgpSettings"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword link_properties: The link provider properties. + :paramtype link_properties: ~azure.mgmt.network.v2021_08_01.models.VpnLinkProviderProperties + :keyword ip_address: The ip-address for the vpn-site-link. + :paramtype ip_address: str + :keyword fqdn: FQDN of vpn-site-link. + :paramtype fqdn: str + :keyword bgp_properties: The set of bgp properties. + :paramtype bgp_properties: ~azure.mgmt.network.v2021_08_01.models.VpnLinkBgpSettings + """ + super(VpnSiteLink, self).__init__(id=id, **kwargs) + self.etag = None + self.name = name + self.type = None + self.link_properties = link_properties + self.ip_address = ip_address + self.fqdn = fqdn + self.bgp_properties = bgp_properties + self.provisioning_state = None + + +class VpnSiteLinkConnection(SubResource): + """VpnSiteLinkConnection Resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar type: Resource type. + :vartype type: str + :ivar vpn_site_link: Id of the connected vpn site link. + :vartype vpn_site_link: ~azure.mgmt.network.v2021_08_01.models.SubResource + :ivar routing_weight: Routing weight for vpn connection. + :vartype routing_weight: int + :ivar vpn_link_connection_mode: Vpn link connection mode. Possible values include: "Default", + "ResponderOnly", "InitiatorOnly". + :vartype vpn_link_connection_mode: str or + ~azure.mgmt.network.v2021_08_01.models.VpnLinkConnectionMode + :ivar connection_status: The connection status. Possible values include: "Unknown", + "Connecting", "Connected", "NotConnected". + :vartype connection_status: str or ~azure.mgmt.network.v2021_08_01.models.VpnConnectionStatus + :ivar vpn_connection_protocol_type: Connection protocol used for this connection. Possible + values include: "IKEv2", "IKEv1". + :vartype vpn_connection_protocol_type: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionProtocol + :ivar ingress_bytes_transferred: Ingress bytes transferred. + :vartype ingress_bytes_transferred: long + :ivar egress_bytes_transferred: Egress bytes transferred. + :vartype egress_bytes_transferred: long + :ivar connection_bandwidth: Expected bandwidth in MBPS. + :vartype connection_bandwidth: int + :ivar shared_key: SharedKey for the vpn connection. + :vartype shared_key: str + :ivar enable_bgp: EnableBgp flag. + :vartype enable_bgp: bool + :ivar vpn_gateway_custom_bgp_addresses: vpnGatewayCustomBgpAddresses used by this connection. + :vartype vpn_gateway_custom_bgp_addresses: + list[~azure.mgmt.network.v2021_08_01.models.GatewayCustomBgpIpAddressIpConfiguration] + :ivar use_policy_based_traffic_selectors: Enable policy-based traffic selectors. + :vartype use_policy_based_traffic_selectors: bool + :ivar ipsec_policies: The IPSec Policies to be considered by this connection. + :vartype ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :ivar enable_rate_limiting: EnableBgp flag. + :vartype enable_rate_limiting: bool + :ivar use_local_azure_ip_address: Use local azure ip to initiate connection. + :vartype use_local_azure_ip_address: bool + :ivar provisioning_state: The provisioning state of the VPN site link connection resource. + Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar ingress_nat_rules: List of ingress NatRules. + :vartype ingress_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar egress_nat_rules: List of egress NatRules. + :vartype egress_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + + _validation = { + 'etag': {'readonly': True}, + 'type': {'readonly': True}, + 'connection_status': {'readonly': True}, + 'ingress_bytes_transferred': {'readonly': True}, + 'egress_bytes_transferred': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'vpn_site_link': {'key': 'properties.vpnSiteLink', 'type': 'SubResource'}, + 'routing_weight': {'key': 'properties.routingWeight', 'type': 'int'}, + 'vpn_link_connection_mode': {'key': 'properties.vpnLinkConnectionMode', 'type': 'str'}, + 'connection_status': {'key': 'properties.connectionStatus', 'type': 'str'}, + 'vpn_connection_protocol_type': {'key': 'properties.vpnConnectionProtocolType', 'type': 'str'}, + 'ingress_bytes_transferred': {'key': 'properties.ingressBytesTransferred', 'type': 'long'}, + 'egress_bytes_transferred': {'key': 'properties.egressBytesTransferred', 'type': 'long'}, + 'connection_bandwidth': {'key': 'properties.connectionBandwidth', 'type': 'int'}, + 'shared_key': {'key': 'properties.sharedKey', 'type': 'str'}, + 'enable_bgp': {'key': 'properties.enableBgp', 'type': 'bool'}, + 'vpn_gateway_custom_bgp_addresses': {'key': 'properties.vpnGatewayCustomBgpAddresses', 'type': '[GatewayCustomBgpIpAddressIpConfiguration]'}, + 'use_policy_based_traffic_selectors': {'key': 'properties.usePolicyBasedTrafficSelectors', 'type': 'bool'}, + 'ipsec_policies': {'key': 'properties.ipsecPolicies', 'type': '[IpsecPolicy]'}, + 'enable_rate_limiting': {'key': 'properties.enableRateLimiting', 'type': 'bool'}, + 'use_local_azure_ip_address': {'key': 'properties.useLocalAzureIpAddress', 'type': 'bool'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'ingress_nat_rules': {'key': 'properties.ingressNatRules', 'type': '[SubResource]'}, + 'egress_nat_rules': {'key': 'properties.egressNatRules', 'type': '[SubResource]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + name: Optional[str] = None, + vpn_site_link: Optional["SubResource"] = None, + routing_weight: Optional[int] = None, + vpn_link_connection_mode: Optional[Union[str, "VpnLinkConnectionMode"]] = None, + vpn_connection_protocol_type: Optional[Union[str, "VirtualNetworkGatewayConnectionProtocol"]] = None, + connection_bandwidth: Optional[int] = None, + shared_key: Optional[str] = None, + enable_bgp: Optional[bool] = None, + vpn_gateway_custom_bgp_addresses: Optional[List["GatewayCustomBgpIpAddressIpConfiguration"]] = None, + use_policy_based_traffic_selectors: Optional[bool] = None, + ipsec_policies: Optional[List["IpsecPolicy"]] = None, + enable_rate_limiting: Optional[bool] = None, + use_local_azure_ip_address: Optional[bool] = None, + ingress_nat_rules: Optional[List["SubResource"]] = None, + egress_nat_rules: Optional[List["SubResource"]] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword name: The name of the resource that is unique within a resource group. This name can + be used to access the resource. + :paramtype name: str + :keyword vpn_site_link: Id of the connected vpn site link. + :paramtype vpn_site_link: ~azure.mgmt.network.v2021_08_01.models.SubResource + :keyword routing_weight: Routing weight for vpn connection. + :paramtype routing_weight: int + :keyword vpn_link_connection_mode: Vpn link connection mode. Possible values include: + "Default", "ResponderOnly", "InitiatorOnly". + :paramtype vpn_link_connection_mode: str or + ~azure.mgmt.network.v2021_08_01.models.VpnLinkConnectionMode + :keyword vpn_connection_protocol_type: Connection protocol used for this connection. Possible + values include: "IKEv2", "IKEv1". + :paramtype vpn_connection_protocol_type: str or + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionProtocol + :keyword connection_bandwidth: Expected bandwidth in MBPS. + :paramtype connection_bandwidth: int + :keyword shared_key: SharedKey for the vpn connection. + :paramtype shared_key: str + :keyword enable_bgp: EnableBgp flag. + :paramtype enable_bgp: bool + :keyword vpn_gateway_custom_bgp_addresses: vpnGatewayCustomBgpAddresses used by this + connection. + :paramtype vpn_gateway_custom_bgp_addresses: + list[~azure.mgmt.network.v2021_08_01.models.GatewayCustomBgpIpAddressIpConfiguration] + :keyword use_policy_based_traffic_selectors: Enable policy-based traffic selectors. + :paramtype use_policy_based_traffic_selectors: bool + :keyword ipsec_policies: The IPSec Policies to be considered by this connection. + :paramtype ipsec_policies: list[~azure.mgmt.network.v2021_08_01.models.IpsecPolicy] + :keyword enable_rate_limiting: EnableBgp flag. + :paramtype enable_rate_limiting: bool + :keyword use_local_azure_ip_address: Use local azure ip to initiate connection. + :paramtype use_local_azure_ip_address: bool + :keyword ingress_nat_rules: List of ingress NatRules. + :paramtype ingress_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :keyword egress_nat_rules: List of egress NatRules. + :paramtype egress_nat_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + super(VpnSiteLinkConnection, self).__init__(id=id, **kwargs) + self.name = name + self.etag = None + self.type = None + self.vpn_site_link = vpn_site_link + self.routing_weight = routing_weight + self.vpn_link_connection_mode = vpn_link_connection_mode + self.connection_status = None + self.vpn_connection_protocol_type = vpn_connection_protocol_type + self.ingress_bytes_transferred = None + self.egress_bytes_transferred = None + self.connection_bandwidth = connection_bandwidth + self.shared_key = shared_key + self.enable_bgp = enable_bgp + self.vpn_gateway_custom_bgp_addresses = vpn_gateway_custom_bgp_addresses + self.use_policy_based_traffic_selectors = use_policy_based_traffic_selectors + self.ipsec_policies = ipsec_policies + self.enable_rate_limiting = enable_rate_limiting + self.use_local_azure_ip_address = use_local_azure_ip_address + self.provisioning_state = None + self.ingress_nat_rules = ingress_nat_rules + self.egress_nat_rules = egress_nat_rules + + +class WebApplicationFirewallCustomRule(msrest.serialization.Model): + """Defines contents of a web application rule. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar name: The name of the resource that is unique within a policy. This name can be used to + access the resource. + :vartype name: str + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar priority: Required. Priority of the rule. Rules with a lower value will be evaluated + before rules with a higher value. + :vartype priority: int + :ivar rule_type: Required. The rule type. Possible values include: "MatchRule", "Invalid". + :vartype rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallRuleType + :ivar match_conditions: Required. List of match conditions. + :vartype match_conditions: list[~azure.mgmt.network.v2021_08_01.models.MatchCondition] + :ivar action: Required. Type of Actions. Possible values include: "Allow", "Block", "Log". + :vartype action: str or ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallAction + """ + + _validation = { + 'name': {'max_length': 128, 'min_length': 0}, + 'etag': {'readonly': True}, + 'priority': {'required': True}, + 'rule_type': {'required': True}, + 'match_conditions': {'required': True}, + 'action': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'priority': {'key': 'priority', 'type': 'int'}, + 'rule_type': {'key': 'ruleType', 'type': 'str'}, + 'match_conditions': {'key': 'matchConditions', 'type': '[MatchCondition]'}, + 'action': {'key': 'action', 'type': 'str'}, + } + + def __init__( + self, + *, + priority: int, + rule_type: Union[str, "WebApplicationFirewallRuleType"], + match_conditions: List["MatchCondition"], + action: Union[str, "WebApplicationFirewallAction"], + name: Optional[str] = None, + **kwargs + ): + """ + :keyword name: The name of the resource that is unique within a policy. This name can be used + to access the resource. + :paramtype name: str + :keyword priority: Required. Priority of the rule. Rules with a lower value will be evaluated + before rules with a higher value. + :paramtype priority: int + :keyword rule_type: Required. The rule type. Possible values include: "MatchRule", "Invalid". + :paramtype rule_type: str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallRuleType + :keyword match_conditions: Required. List of match conditions. + :paramtype match_conditions: list[~azure.mgmt.network.v2021_08_01.models.MatchCondition] + :keyword action: Required. Type of Actions. Possible values include: "Allow", "Block", "Log". + :paramtype action: str or ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallAction + """ + super(WebApplicationFirewallCustomRule, self).__init__(**kwargs) + self.name = name + self.etag = None + self.priority = priority + self.rule_type = rule_type + self.match_conditions = match_conditions + self.action = action + + +class WebApplicationFirewallPolicy(Resource): + """Defines web application firewall policy. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :ivar etag: A unique read-only string that changes whenever the resource is updated. + :vartype etag: str + :ivar policy_settings: The PolicySettings for policy. + :vartype policy_settings: ~azure.mgmt.network.v2021_08_01.models.PolicySettings + :ivar custom_rules: The custom rules inside the policy. + :vartype custom_rules: + list[~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallCustomRule] + :ivar application_gateways: A collection of references to application gateways. + :vartype application_gateways: list[~azure.mgmt.network.v2021_08_01.models.ApplicationGateway] + :ivar provisioning_state: The provisioning state of the web application firewall policy + resource. Possible values include: "Succeeded", "Updating", "Deleting", "Failed". + :vartype provisioning_state: str or ~azure.mgmt.network.v2021_08_01.models.ProvisioningState + :ivar resource_state: Resource status of the policy. Possible values include: "Creating", + "Enabling", "Enabled", "Disabling", "Disabled", "Deleting". + :vartype resource_state: str or + ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicyResourceState + :ivar managed_rules: Describes the managedRules structure. + :vartype managed_rules: ~azure.mgmt.network.v2021_08_01.models.ManagedRulesDefinition + :ivar http_listeners: A collection of references to application gateway http listeners. + :vartype http_listeners: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + :ivar path_based_rules: A collection of references to application gateway path rules. + :vartype path_based_rules: list[~azure.mgmt.network.v2021_08_01.models.SubResource] + """ + + _validation = { + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'etag': {'readonly': True}, + 'application_gateways': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + 'resource_state': {'readonly': True}, + 'http_listeners': {'readonly': True}, + 'path_based_rules': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'etag': {'key': 'etag', 'type': 'str'}, + 'policy_settings': {'key': 'properties.policySettings', 'type': 'PolicySettings'}, + 'custom_rules': {'key': 'properties.customRules', 'type': '[WebApplicationFirewallCustomRule]'}, + 'application_gateways': {'key': 'properties.applicationGateways', 'type': '[ApplicationGateway]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'resource_state': {'key': 'properties.resourceState', 'type': 'str'}, + 'managed_rules': {'key': 'properties.managedRules', 'type': 'ManagedRulesDefinition'}, + 'http_listeners': {'key': 'properties.httpListeners', 'type': '[SubResource]'}, + 'path_based_rules': {'key': 'properties.pathBasedRules', 'type': '[SubResource]'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + policy_settings: Optional["PolicySettings"] = None, + custom_rules: Optional[List["WebApplicationFirewallCustomRule"]] = None, + managed_rules: Optional["ManagedRulesDefinition"] = None, + **kwargs + ): + """ + :keyword id: Resource ID. + :paramtype id: str + :keyword location: Resource location. + :paramtype location: str + :keyword tags: A set of tags. Resource tags. + :paramtype tags: dict[str, str] + :keyword policy_settings: The PolicySettings for policy. + :paramtype policy_settings: ~azure.mgmt.network.v2021_08_01.models.PolicySettings + :keyword custom_rules: The custom rules inside the policy. + :paramtype custom_rules: + list[~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallCustomRule] + :keyword managed_rules: Describes the managedRules structure. + :paramtype managed_rules: ~azure.mgmt.network.v2021_08_01.models.ManagedRulesDefinition + """ + super(WebApplicationFirewallPolicy, self).__init__(id=id, location=location, tags=tags, **kwargs) + self.etag = None + self.policy_settings = policy_settings + self.custom_rules = custom_rules + self.application_gateways = None + self.provisioning_state = None + self.resource_state = None + self.managed_rules = managed_rules + self.http_listeners = None + self.path_based_rules = None + + +class WebApplicationFirewallPolicyListResult(msrest.serialization.Model): + """Result of the request to list WebApplicationFirewallPolicies. It contains a list of WebApplicationFirewallPolicy objects and a URL link to get the next set of results. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of WebApplicationFirewallPolicies within a resource group. + :vartype value: list[~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicy] + :ivar next_link: URL to get the next set of WebApplicationFirewallPolicy objects if there are + any. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[WebApplicationFirewallPolicy]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + """ + """ + super(WebApplicationFirewallPolicyListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/_network_management_client_enums.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/_network_management_client_enums.py new file mode 100644 index 00000000000..a6eee91334a --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/models/_network_management_client_enums.py @@ -0,0 +1,1517 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from enum import Enum +from six import with_metaclass +from azure.core import CaseInsensitiveEnumMeta + + +class Access(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Access to be allowed or denied. + """ + + ALLOW = "Allow" + DENY = "Deny" + +class ApplicationGatewayBackendHealthServerHealth(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Health of backend server. + """ + + UNKNOWN = "Unknown" + UP = "Up" + DOWN = "Down" + PARTIAL = "Partial" + DRAINING = "Draining" + +class ApplicationGatewayCookieBasedAffinity(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Cookie based affinity. + """ + + ENABLED = "Enabled" + DISABLED = "Disabled" + +class ApplicationGatewayCustomErrorStatusCode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Status code of the application gateway customer error. + """ + + HTTP_STATUS403 = "HttpStatus403" + HTTP_STATUS502 = "HttpStatus502" + +class ApplicationGatewayFirewallMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Web application firewall mode. + """ + + DETECTION = "Detection" + PREVENTION = "Prevention" + +class ApplicationGatewayLoadDistributionAlgorithm(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Load Distribution Algorithm enums. + """ + + ROUND_ROBIN = "RoundRobin" + LEAST_CONNECTIONS = "LeastConnections" + IP_HASH = "IpHash" + +class ApplicationGatewayOperationalState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Operational state of the application gateway resource. + """ + + STOPPED = "Stopped" + STARTING = "Starting" + RUNNING = "Running" + STOPPING = "Stopping" + +class ApplicationGatewayProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Application Gateway protocol. + """ + + HTTP = "Http" + HTTPS = "Https" + TCP = "Tcp" + TLS = "Tls" + +class ApplicationGatewayRedirectType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Redirect type enum. + """ + + PERMANENT = "Permanent" + FOUND = "Found" + SEE_OTHER = "SeeOther" + TEMPORARY = "Temporary" + +class ApplicationGatewayRequestRoutingRuleType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Rule type. + """ + + BASIC = "Basic" + PATH_BASED_ROUTING = "PathBasedRouting" + +class ApplicationGatewaySkuName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Name of an application gateway SKU. + """ + + STANDARD_SMALL = "Standard_Small" + STANDARD_MEDIUM = "Standard_Medium" + STANDARD_LARGE = "Standard_Large" + WAF_MEDIUM = "WAF_Medium" + WAF_LARGE = "WAF_Large" + STANDARD_V2 = "Standard_v2" + WAF_V2 = "WAF_v2" + +class ApplicationGatewaySslCipherSuite(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Ssl cipher suites enums. + """ + + TLS_ECDHE_RSA_WITH_AES256_CBC_SHA384 = "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384" + TLS_ECDHE_RSA_WITH_AES128_CBC_SHA256 = "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256" + TLS_ECDHE_RSA_WITH_AES256_CBC_SHA = "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA" + TLS_ECDHE_RSA_WITH_AES128_CBC_SHA = "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA" + TLS_DHE_RSA_WITH_AES256_GCM_SHA384 = "TLS_DHE_RSA_WITH_AES_256_GCM_SHA384" + TLS_DHE_RSA_WITH_AES128_GCM_SHA256 = "TLS_DHE_RSA_WITH_AES_128_GCM_SHA256" + TLS_DHE_RSA_WITH_AES256_CBC_SHA = "TLS_DHE_RSA_WITH_AES_256_CBC_SHA" + TLS_DHE_RSA_WITH_AES128_CBC_SHA = "TLS_DHE_RSA_WITH_AES_128_CBC_SHA" + TLS_RSA_WITH_AES256_GCM_SHA384 = "TLS_RSA_WITH_AES_256_GCM_SHA384" + TLS_RSA_WITH_AES128_GCM_SHA256 = "TLS_RSA_WITH_AES_128_GCM_SHA256" + TLS_RSA_WITH_AES256_CBC_SHA256 = "TLS_RSA_WITH_AES_256_CBC_SHA256" + TLS_RSA_WITH_AES128_CBC_SHA256 = "TLS_RSA_WITH_AES_128_CBC_SHA256" + TLS_RSA_WITH_AES256_CBC_SHA = "TLS_RSA_WITH_AES_256_CBC_SHA" + TLS_RSA_WITH_AES128_CBC_SHA = "TLS_RSA_WITH_AES_128_CBC_SHA" + TLS_ECDHE_ECDSA_WITH_AES256_GCM_SHA384 = "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384" + TLS_ECDHE_ECDSA_WITH_AES128_GCM_SHA256 = "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256" + TLS_ECDHE_ECDSA_WITH_AES256_CBC_SHA384 = "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384" + TLS_ECDHE_ECDSA_WITH_AES128_CBC_SHA256 = "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256" + TLS_ECDHE_ECDSA_WITH_AES256_CBC_SHA = "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA" + TLS_ECDHE_ECDSA_WITH_AES128_CBC_SHA = "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA" + TLS_DHE_DSS_WITH_AES256_CBC_SHA256 = "TLS_DHE_DSS_WITH_AES_256_CBC_SHA256" + TLS_DHE_DSS_WITH_AES128_CBC_SHA256 = "TLS_DHE_DSS_WITH_AES_128_CBC_SHA256" + TLS_DHE_DSS_WITH_AES256_CBC_SHA = "TLS_DHE_DSS_WITH_AES_256_CBC_SHA" + TLS_DHE_DSS_WITH_AES128_CBC_SHA = "TLS_DHE_DSS_WITH_AES_128_CBC_SHA" + TLS_RSA_WITH3_DES_EDE_CBC_SHA = "TLS_RSA_WITH_3DES_EDE_CBC_SHA" + TLS_DHE_DSS_WITH3_DES_EDE_CBC_SHA = "TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA" + TLS_ECDHE_RSA_WITH_AES128_GCM_SHA256 = "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256" + TLS_ECDHE_RSA_WITH_AES256_GCM_SHA384 = "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384" + +class ApplicationGatewaySslPolicyName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Ssl predefined policy name enums. + """ + + APP_GW_SSL_POLICY20150501 = "AppGwSslPolicy20150501" + APP_GW_SSL_POLICY20170401 = "AppGwSslPolicy20170401" + APP_GW_SSL_POLICY20170401_S = "AppGwSslPolicy20170401S" + +class ApplicationGatewaySslPolicyType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Type of Ssl Policy. + """ + + PREDEFINED = "Predefined" + CUSTOM = "Custom" + +class ApplicationGatewaySslProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Ssl protocol enums. + """ + + TL_SV1_0 = "TLSv1_0" + TL_SV1_1 = "TLSv1_1" + TL_SV1_2 = "TLSv1_2" + +class ApplicationGatewayTier(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Tier of an application gateway. + """ + + STANDARD = "Standard" + WAF = "WAF" + STANDARD_V2 = "Standard_v2" + WAF_V2 = "WAF_v2" + +class AssociationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The association type of the child resource to the parent resource. + """ + + ASSOCIATED = "Associated" + CONTAINS = "Contains" + +class AuthenticationMethod(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """VPN client authentication method. + """ + + EAPTLS = "EAPTLS" + EAPMSCHA_PV2 = "EAPMSCHAPv2" + +class AuthorizationUseStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The authorization use status. + """ + + AVAILABLE = "Available" + IN_USE = "InUse" + +class AzureFirewallApplicationRuleProtocolType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The protocol type of a Application Rule resource. + """ + + HTTP = "Http" + HTTPS = "Https" + MSSQL = "Mssql" + +class AzureFirewallNatRCActionType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The action type of a NAT rule collection. + """ + + SNAT = "Snat" + DNAT = "Dnat" + +class AzureFirewallNetworkRuleProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The protocol of a Network Rule resource. + """ + + TCP = "TCP" + UDP = "UDP" + ANY = "Any" + ICMP = "ICMP" + +class AzureFirewallRCActionType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The action type of a rule collection. + """ + + ALLOW = "Allow" + DENY = "Deny" + +class AzureFirewallSkuName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Name of an Azure Firewall SKU. + """ + + AZFW_VNET = "AZFW_VNet" + AZFW_HUB = "AZFW_Hub" + +class AzureFirewallSkuTier(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Tier of an Azure Firewall. + """ + + STANDARD = "Standard" + PREMIUM = "Premium" + BASIC = "Basic" + +class AzureFirewallThreatIntelMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The operation mode for Threat Intel. + """ + + ALERT = "Alert" + DENY = "Deny" + OFF = "Off" + +class BastionConnectProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The protocol used to connect to the target. + """ + + SSH = "SSH" + RDP = "RDP" + +class BastionHostSkuName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The name of this Bastion Host. + """ + + BASIC = "Basic" + STANDARD = "Standard" + +class BgpPeerState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The BGP peer state. + """ + + UNKNOWN = "Unknown" + STOPPED = "Stopped" + IDLE = "Idle" + CONNECTING = "Connecting" + CONNECTED = "Connected" + +class CircuitConnectionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Express Route Circuit connection state. + """ + + CONNECTED = "Connected" + CONNECTING = "Connecting" + DISCONNECTED = "Disconnected" + +class CommissionedState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The commissioned state of the Custom IP Prefix. + """ + + PROVISIONING = "Provisioning" + PROVISIONED = "Provisioned" + COMMISSIONING = "Commissioning" + COMMISSIONED = "Commissioned" + DECOMMISSIONING = "Decommissioning" + DEPROVISIONING = "Deprovisioning" + +class ConnectionMonitorEndpointFilterItemType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The type of item included in the filter. Currently only 'AgentAddress' is supported. + """ + + AGENT_ADDRESS = "AgentAddress" + +class ConnectionMonitorEndpointFilterType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The behavior of the endpoint filter. Currently only 'Include' is supported. + """ + + INCLUDE = "Include" + +class ConnectionMonitorSourceStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Status of connection monitor source. + """ + + UNKNOWN = "Unknown" + ACTIVE = "Active" + INACTIVE = "Inactive" + +class ConnectionMonitorTestConfigurationProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The protocol to use in test evaluation. + """ + + TCP = "Tcp" + HTTP = "Http" + ICMP = "Icmp" + +class ConnectionMonitorType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Type of connection monitor. + """ + + MULTI_ENDPOINT = "MultiEndpoint" + SINGLE_SOURCE_DESTINATION = "SingleSourceDestination" + +class ConnectionState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The connection state. + """ + + REACHABLE = "Reachable" + UNREACHABLE = "Unreachable" + UNKNOWN = "Unknown" + +class ConnectionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The connection status. + """ + + UNKNOWN = "Unknown" + CONNECTED = "Connected" + DISCONNECTED = "Disconnected" + DEGRADED = "Degraded" + +class CoverageLevel(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Test coverage for the endpoint. + """ + + DEFAULT = "Default" + LOW = "Low" + BELOW_AVERAGE = "BelowAverage" + AVERAGE = "Average" + ABOVE_AVERAGE = "AboveAverage" + FULL = "Full" + +class DdosCustomPolicyProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The protocol for which the DDoS protection policy is being customized. + """ + + TCP = "Tcp" + UDP = "Udp" + SYN = "Syn" + +class DdosCustomPolicyTriggerSensitivityOverride(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The customized DDoS protection trigger rate sensitivity degrees. High: Trigger rate set with + most sensitivity w.r.t. normal traffic. Default: Trigger rate set with moderate sensitivity + w.r.t. normal traffic. Low: Trigger rate set with less sensitivity w.r.t. normal traffic. + Relaxed: Trigger rate set with least sensitivity w.r.t. normal traffic. + """ + + RELAXED = "Relaxed" + LOW = "Low" + DEFAULT = "Default" + HIGH = "High" + +class DdosSettingsProtectionCoverage(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The DDoS protection policy customizability of the public IP. Only standard coverage will have + the ability to be customized. + """ + + BASIC = "Basic" + STANDARD = "Standard" + +class DeleteOptions(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Specify what happens to the public IP address when the VM using it is deleted + """ + + DELETE = "Delete" + DETACH = "Detach" + +class DestinationPortBehavior(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Destination port behavior. + """ + + NONE = "None" + LISTEN_IF_AVAILABLE = "ListenIfAvailable" + +class DhGroup(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The DH Groups used in IKE Phase 1 for initial SA. + """ + + NONE = "None" + DH_GROUP1 = "DHGroup1" + DH_GROUP2 = "DHGroup2" + DH_GROUP14 = "DHGroup14" + DH_GROUP2048 = "DHGroup2048" + ECP256 = "ECP256" + ECP384 = "ECP384" + DH_GROUP24 = "DHGroup24" + +class Direction(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The direction of the traffic. + """ + + INBOUND = "Inbound" + OUTBOUND = "Outbound" + +class EffectiveRouteSource(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Who created the route. + """ + + UNKNOWN = "Unknown" + USER = "User" + VIRTUAL_NETWORK_GATEWAY = "VirtualNetworkGateway" + DEFAULT = "Default" + +class EffectiveRouteState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The value of effective route. + """ + + ACTIVE = "Active" + INVALID = "Invalid" + +class EffectiveSecurityRuleProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The network protocol this rule applies to. + """ + + TCP = "Tcp" + UDP = "Udp" + ALL = "All" + +class EndpointType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The endpoint type. + """ + + AZURE_VM = "AzureVM" + AZURE_V_NET = "AzureVNet" + AZURE_SUBNET = "AzureSubnet" + EXTERNAL_ADDRESS = "ExternalAddress" + MMA_WORKSPACE_MACHINE = "MMAWorkspaceMachine" + MMA_WORKSPACE_NETWORK = "MMAWorkspaceNetwork" + +class EvaluationState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Connectivity analysis evaluation state. + """ + + NOT_STARTED = "NotStarted" + IN_PROGRESS = "InProgress" + COMPLETED = "Completed" + +class ExpressRouteCircuitPeeringAdvertisedPublicPrefixState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The advertised public prefix state of the Peering resource. + """ + + NOT_CONFIGURED = "NotConfigured" + CONFIGURING = "Configuring" + CONFIGURED = "Configured" + VALIDATION_NEEDED = "ValidationNeeded" + +class ExpressRouteCircuitPeeringState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The state of peering. + """ + + DISABLED = "Disabled" + ENABLED = "Enabled" + +class ExpressRouteCircuitSkuFamily(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The family of the SKU. + """ + + UNLIMITED_DATA = "UnlimitedData" + METERED_DATA = "MeteredData" + +class ExpressRouteCircuitSkuTier(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The tier of the SKU. + """ + + STANDARD = "Standard" + PREMIUM = "Premium" + BASIC = "Basic" + LOCAL = "Local" + +class ExpressRouteLinkAdminState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Administrative state of the physical port. + """ + + ENABLED = "Enabled" + DISABLED = "Disabled" + +class ExpressRouteLinkConnectorType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Physical fiber port type. + """ + + LC = "LC" + SC = "SC" + +class ExpressRouteLinkMacSecCipher(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Mac security cipher. + """ + + GCM_AES256 = "GcmAes256" + GCM_AES128 = "GcmAes128" + GCM_AES_XPN128 = "GcmAesXpn128" + GCM_AES_XPN256 = "GcmAesXpn256" + +class ExpressRouteLinkMacSecSciState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Sci mode enabled/disabled. + """ + + DISABLED = "Disabled" + ENABLED = "Enabled" + +class ExpressRoutePeeringState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The state of peering. + """ + + DISABLED = "Disabled" + ENABLED = "Enabled" + +class ExpressRoutePeeringType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The peering type. + """ + + AZURE_PUBLIC_PEERING = "AzurePublicPeering" + AZURE_PRIVATE_PEERING = "AzurePrivatePeering" + MICROSOFT_PEERING = "MicrosoftPeering" + +class ExpressRoutePortAuthorizationUseStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The authorization use status. + """ + + AVAILABLE = "Available" + IN_USE = "InUse" + +class ExpressRoutePortsEncapsulation(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Encapsulation method on physical ports. + """ + + DOT1_Q = "Dot1Q" + QIN_Q = "QinQ" + +class ExtendedLocationTypes(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The supported ExtendedLocation types. Currently only EdgeZone is supported in Microsoft.Network + resources. + """ + + EDGE_ZONE = "EdgeZone" + +class FirewallPolicyFilterRuleCollectionActionType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The action type of a rule. + """ + + ALLOW = "Allow" + DENY = "Deny" + +class FirewallPolicyIDPSQuerySortOrder(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Describes if results should be in ascending/descending order + """ + + ASCENDING = "Ascending" + DESCENDING = "Descending" + +class FirewallPolicyIDPSSignatureDirection(with_metaclass(CaseInsensitiveEnumMeta, int, Enum)): + """Describes in which direction signature is being enforced: 0 - Inbound, 1 - OutBound, 2 - + Bidirectional + """ + + ZERO = 0 + ONE = 1 + TWO = 2 + +class FirewallPolicyIDPSSignatureMode(with_metaclass(CaseInsensitiveEnumMeta, int, Enum)): + """The current mode enforced, 0 - Disabled, 1 - Alert, 2 -Deny + """ + + ZERO = 0 + ONE = 1 + TWO = 2 + +class FirewallPolicyIDPSSignatureSeverity(with_metaclass(CaseInsensitiveEnumMeta, int, Enum)): + """Describes the severity of signature: 1 - Low, 2 - Medium, 3 - High + """ + + ONE = 1 + TWO = 2 + THREE = 3 + +class FirewallPolicyIntrusionDetectionProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Possible intrusion detection bypass traffic protocols. + """ + + TCP = "TCP" + UDP = "UDP" + ICMP = "ICMP" + ANY = "ANY" + +class FirewallPolicyIntrusionDetectionStateType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Possible state values. + """ + + OFF = "Off" + ALERT = "Alert" + DENY = "Deny" + +class FirewallPolicyNatRuleCollectionActionType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The action type of a rule. + """ + + DNAT = "DNAT" + +class FirewallPolicyRuleApplicationProtocolType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The application protocol type of a Rule. + """ + + HTTP = "Http" + HTTPS = "Https" + +class FirewallPolicyRuleCollectionType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The type of the rule collection. + """ + + FIREWALL_POLICY_NAT_RULE_COLLECTION = "FirewallPolicyNatRuleCollection" + FIREWALL_POLICY_FILTER_RULE_COLLECTION = "FirewallPolicyFilterRuleCollection" + +class FirewallPolicyRuleNetworkProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The Network protocol of a Rule. + """ + + TCP = "TCP" + UDP = "UDP" + ANY = "Any" + ICMP = "ICMP" + +class FirewallPolicyRuleType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Rule Type. + """ + + APPLICATION_RULE = "ApplicationRule" + NETWORK_RULE = "NetworkRule" + NAT_RULE = "NatRule" + +class FirewallPolicySkuTier(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Tier of Firewall Policy. + """ + + STANDARD = "Standard" + PREMIUM = "Premium" + BASIC = "Basic" + +class FlowLogFormatType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The file type of flow log. + """ + + JSON = "JSON" + +class GatewayLoadBalancerTunnelInterfaceType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Traffic type of gateway load balancer tunnel interface. + """ + + NONE = "None" + INTERNAL = "Internal" + EXTERNAL = "External" + +class GatewayLoadBalancerTunnelProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Protocol of gateway load balancer tunnel interface. + """ + + NONE = "None" + NATIVE = "Native" + VXLAN = "VXLAN" + +class HTTPConfigurationMethod(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The HTTP method to use. + """ + + GET = "Get" + POST = "Post" + +class HTTPMethod(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """HTTP method. + """ + + GET = "Get" + +class HubBgpConnectionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The current state of the VirtualHub to Peer. + """ + + UNKNOWN = "Unknown" + CONNECTING = "Connecting" + CONNECTED = "Connected" + NOT_CONNECTED = "NotConnected" + +class HubRoutingPreference(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The hub routing preference gateway types + """ + + EXPRESS_ROUTE = "ExpressRoute" + VPN_GATEWAY = "VpnGateway" + AS_PATH = "ASPath" + +class HubVirtualNetworkConnectionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The current state of the VirtualHub to vnet connection. + """ + + UNKNOWN = "Unknown" + CONNECTING = "Connecting" + CONNECTED = "Connected" + NOT_CONNECTED = "NotConnected" + +class IkeEncryption(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The IKE encryption algorithm (IKE phase 2). + """ + + DES = "DES" + DES3 = "DES3" + AES128 = "AES128" + AES192 = "AES192" + AES256 = "AES256" + GCMAES256 = "GCMAES256" + GCMAES128 = "GCMAES128" + +class IkeIntegrity(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The IKE integrity algorithm (IKE phase 2). + """ + + MD5 = "MD5" + SHA1 = "SHA1" + SHA256 = "SHA256" + SHA384 = "SHA384" + GCMAES256 = "GCMAES256" + GCMAES128 = "GCMAES128" + +class InboundSecurityRulesProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Protocol. This should be either TCP or UDP. + """ + + TCP = "TCP" + UDP = "UDP" + +class IPAllocationMethod(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """IP address allocation method. + """ + + STATIC = "Static" + DYNAMIC = "Dynamic" + +class IpAllocationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """IpAllocation type. + """ + + UNDEFINED = "Undefined" + HYPERNET = "Hypernet" + +class IpFlowProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Protocol to be verified on. + """ + + TCP = "TCP" + UDP = "UDP" + +class IpsecEncryption(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The IPSec encryption algorithm (IKE phase 1). + """ + + NONE = "None" + DES = "DES" + DES3 = "DES3" + AES128 = "AES128" + AES192 = "AES192" + AES256 = "AES256" + GCMAES128 = "GCMAES128" + GCMAES192 = "GCMAES192" + GCMAES256 = "GCMAES256" + +class IpsecIntegrity(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The IPSec integrity algorithm (IKE phase 1). + """ + + MD5 = "MD5" + SHA1 = "SHA1" + SHA256 = "SHA256" + GCMAES128 = "GCMAES128" + GCMAES192 = "GCMAES192" + GCMAES256 = "GCMAES256" + +class IPVersion(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """IP address version. + """ + + I_PV4 = "IPv4" + I_PV6 = "IPv6" + +class IssueType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The type of issue. + """ + + UNKNOWN = "Unknown" + AGENT_STOPPED = "AgentStopped" + GUEST_FIREWALL = "GuestFirewall" + DNS_RESOLUTION = "DnsResolution" + SOCKET_BIND = "SocketBind" + NETWORK_SECURITY_RULE = "NetworkSecurityRule" + USER_DEFINED_ROUTE = "UserDefinedRoute" + PORT_THROTTLED = "PortThrottled" + PLATFORM = "Platform" + +class LoadBalancerBackendAddressAdminState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """A list of administrative states which once set can override health probe so that Load Balancer + will always forward new connections to backend, or deny new connections and reset existing + connections. + """ + + NONE = "None" + UP = "Up" + DOWN = "Down" + DRAIN = "Drain" + +class LoadBalancerOutboundRuleProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The protocol for the outbound rule in load balancer. + """ + + TCP = "Tcp" + UDP = "Udp" + ALL = "All" + +class LoadBalancerSkuName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Name of a load balancer SKU. + """ + + BASIC = "Basic" + STANDARD = "Standard" + GATEWAY = "Gateway" + +class LoadBalancerSkuTier(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Tier of a load balancer SKU. + """ + + REGIONAL = "Regional" + GLOBAL_ENUM = "Global" + +class LoadDistribution(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The load distribution policy for this rule. + """ + + DEFAULT = "Default" + SOURCE_IP = "SourceIP" + SOURCE_IP_PROTOCOL = "SourceIPProtocol" + +class ManagedRuleEnabledState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The state of the managed rule. Defaults to Disabled if not specified. + """ + + DISABLED = "Disabled" + +class NatGatewaySkuName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Name of Nat Gateway SKU. + """ + + STANDARD = "Standard" + +class NetworkInterfaceAuxiliaryMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Auxiliary mode of Network Interface resource. + """ + + NONE = "None" + MAX_CONNECTIONS = "MaxConnections" + FLOATING = "Floating" + +class NetworkInterfaceMigrationPhase(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Migration phase of Network Interface resource. + """ + + NONE = "None" + PREPARE = "Prepare" + COMMIT = "Commit" + ABORT = "Abort" + COMMITTED = "Committed" + +class NetworkInterfaceNicType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Type of Network Interface resource. + """ + + STANDARD = "Standard" + ELASTIC = "Elastic" + +class NetworkOperationStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Status of the Azure async operation. + """ + + IN_PROGRESS = "InProgress" + SUCCEEDED = "Succeeded" + FAILED = "Failed" + +class NextHopType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Next hop type. + """ + + INTERNET = "Internet" + VIRTUAL_APPLIANCE = "VirtualAppliance" + VIRTUAL_NETWORK_GATEWAY = "VirtualNetworkGateway" + VNET_LOCAL = "VnetLocal" + HYPER_NET_GATEWAY = "HyperNetGateway" + NONE = "None" + +class OfficeTrafficCategory(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The office traffic category. + """ + + OPTIMIZE = "Optimize" + OPTIMIZE_AND_ALLOW = "OptimizeAndAllow" + ALL = "All" + NONE = "None" + +class Origin(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The origin of the issue. + """ + + LOCAL = "Local" + INBOUND = "Inbound" + OUTBOUND = "Outbound" + +class OutputType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Connection monitor output destination type. Currently, only "Workspace" is supported. + """ + + WORKSPACE = "Workspace" + +class OwaspCrsExclusionEntryMatchVariable(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The variable to be excluded. + """ + + REQUEST_HEADER_NAMES = "RequestHeaderNames" + REQUEST_COOKIE_NAMES = "RequestCookieNames" + REQUEST_ARG_NAMES = "RequestArgNames" + REQUEST_HEADER_KEYS = "RequestHeaderKeys" + REQUEST_HEADER_VALUES = "RequestHeaderValues" + REQUEST_COOKIE_KEYS = "RequestCookieKeys" + REQUEST_COOKIE_VALUES = "RequestCookieValues" + REQUEST_ARG_KEYS = "RequestArgKeys" + REQUEST_ARG_VALUES = "RequestArgValues" + +class OwaspCrsExclusionEntrySelectorMatchOperator(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """When matchVariable is a collection, operate on the selector to specify which elements in the + collection this exclusion applies to. + """ + + EQUALS = "Equals" + CONTAINS = "Contains" + STARTS_WITH = "StartsWith" + ENDS_WITH = "EndsWith" + EQUALS_ANY = "EqualsAny" + +class PcError(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + + INTERNAL_ERROR = "InternalError" + AGENT_STOPPED = "AgentStopped" + CAPTURE_FAILED = "CaptureFailed" + LOCAL_FILE_FAILED = "LocalFileFailed" + STORAGE_FAILED = "StorageFailed" + +class PcProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Protocol to be filtered on. + """ + + TCP = "TCP" + UDP = "UDP" + ANY = "Any" + +class PcStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The status of the packet capture session. + """ + + NOT_STARTED = "NotStarted" + RUNNING = "Running" + STOPPED = "Stopped" + ERROR = "Error" + UNKNOWN = "Unknown" + +class PfsGroup(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The Pfs Groups used in IKE Phase 2 for new child SA. + """ + + NONE = "None" + PFS1 = "PFS1" + PFS2 = "PFS2" + PFS2048 = "PFS2048" + ECP256 = "ECP256" + ECP384 = "ECP384" + PFS24 = "PFS24" + PFS14 = "PFS14" + PFSMM = "PFSMM" + +class PreferredIPVersion(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The preferred IP version to use in test evaluation. The connection monitor may choose to use a + different version depending on other parameters. + """ + + I_PV4 = "IPv4" + I_PV6 = "IPv6" + +class PreferredRoutingGateway(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The preferred routing gateway types + """ + + EXPRESS_ROUTE = "ExpressRoute" + VPN_GATEWAY = "VpnGateway" + NONE = "None" + +class ProbeProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The protocol of the end point. If 'Tcp' is specified, a received ACK is required for the probe + to be successful. If 'Http' or 'Https' is specified, a 200 OK response from the specifies URI + is required for the probe to be successful. + """ + + HTTP = "Http" + TCP = "Tcp" + HTTPS = "Https" + +class ProcessorArchitecture(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """VPN client Processor Architecture. + """ + + AMD64 = "Amd64" + X86 = "X86" + +class Protocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Network protocol. + """ + + TCP = "Tcp" + HTTP = "Http" + HTTPS = "Https" + ICMP = "Icmp" + +class ProtocolType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """RNM supported protocol types. + """ + + DO_NOT_USE = "DoNotUse" + ICMP = "Icmp" + TCP = "Tcp" + UDP = "Udp" + GRE = "Gre" + ESP = "Esp" + AH = "Ah" + VXLAN = "Vxlan" + ALL = "All" + +class ProvisioningState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The current provisioning state. + """ + + SUCCEEDED = "Succeeded" + UPDATING = "Updating" + DELETING = "Deleting" + FAILED = "Failed" + +class PublicIPAddressMigrationPhase(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Migration phase of Public IP Address. + """ + + NONE = "None" + PREPARE = "Prepare" + COMMIT = "Commit" + ABORT = "Abort" + COMMITTED = "Committed" + +class PublicIPAddressSkuName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Name of a public IP address SKU. + """ + + BASIC = "Basic" + STANDARD = "Standard" + +class PublicIPAddressSkuTier(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Tier of a public IP address SKU. + """ + + REGIONAL = "Regional" + GLOBAL_ENUM = "Global" + +class PublicIPPrefixSkuName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Name of a public IP prefix SKU. + """ + + STANDARD = "Standard" + +class PublicIPPrefixSkuTier(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Tier of a public IP prefix SKU. + """ + + REGIONAL = "Regional" + GLOBAL_ENUM = "Global" + +class ResourceIdentityType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes + both an implicitly created identity and a set of user assigned identities. The type 'None' will + remove any identities from the virtual machine. + """ + + SYSTEM_ASSIGNED = "SystemAssigned" + USER_ASSIGNED = "UserAssigned" + SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned, UserAssigned" + NONE = "None" + +class RouteFilterRuleType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The rule type of the rule. + """ + + COMMUNITY = "Community" + +class RouteNextHopType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The type of Azure hop the packet should be sent to. + """ + + VIRTUAL_NETWORK_GATEWAY = "VirtualNetworkGateway" + VNET_LOCAL = "VnetLocal" + INTERNET = "Internet" + VIRTUAL_APPLIANCE = "VirtualAppliance" + NONE = "None" + +class RoutingState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The current routing state of the VirtualHub. + """ + + NONE = "None" + PROVISIONED = "Provisioned" + PROVISIONING = "Provisioning" + FAILED = "Failed" + +class SecurityPartnerProviderConnectionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The current state of the connection with Security Partner Provider. + """ + + UNKNOWN = "Unknown" + PARTIALLY_CONNECTED = "PartiallyConnected" + CONNECTED = "Connected" + NOT_CONNECTED = "NotConnected" + +class SecurityProviderName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The Security Providers. + """ + + Z_SCALER = "ZScaler" + I_BOSS = "IBoss" + CHECKPOINT = "Checkpoint" + +class SecurityRuleAccess(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Whether network traffic is allowed or denied. + """ + + ALLOW = "Allow" + DENY = "Deny" + +class SecurityRuleDirection(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The direction of the rule. The direction specifies if rule will be evaluated on incoming or + outgoing traffic. + """ + + INBOUND = "Inbound" + OUTBOUND = "Outbound" + +class SecurityRuleProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Network protocol this rule applies to. + """ + + TCP = "Tcp" + UDP = "Udp" + ICMP = "Icmp" + ESP = "Esp" + ASTERISK = "*" + AH = "Ah" + +class ServiceProviderProvisioningState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The ServiceProviderProvisioningState state of the resource. + """ + + NOT_PROVISIONED = "NotProvisioned" + PROVISIONING = "Provisioning" + PROVISIONED = "Provisioned" + DEPROVISIONING = "Deprovisioning" + +class Severity(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The severity of the issue. + """ + + ERROR = "Error" + WARNING = "Warning" + +class SyncRemoteAddressSpace(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + + TRUE = "true" + +class TransportProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The transport protocol for the endpoint. + """ + + UDP = "Udp" + TCP = "Tcp" + ALL = "All" + +class TunnelConnectionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The current state of the tunnel. + """ + + UNKNOWN = "Unknown" + CONNECTING = "Connecting" + CONNECTED = "Connected" + NOT_CONNECTED = "NotConnected" + +class UsageUnit(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """An enum describing the unit of measurement. + """ + + COUNT = "Count" + +class VerbosityLevel(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Verbosity level. + """ + + NORMAL = "Normal" + MINIMUM = "Minimum" + FULL = "Full" + +class VirtualNetworkEncryptionEnforcement(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """If the encrypted VNet allows VM that does not support encryption + """ + + DROP_UNENCRYPTED = "DropUnencrypted" + ALLOW_UNENCRYPTED = "AllowUnencrypted" + +class VirtualNetworkGatewayConnectionMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Gateway connection type. + """ + + DEFAULT = "Default" + RESPONDER_ONLY = "ResponderOnly" + INITIATOR_ONLY = "InitiatorOnly" + +class VirtualNetworkGatewayConnectionProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Gateway connection protocol. + """ + + IK_EV2 = "IKEv2" + IK_EV1 = "IKEv1" + +class VirtualNetworkGatewayConnectionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Virtual Network Gateway connection status. + """ + + UNKNOWN = "Unknown" + CONNECTING = "Connecting" + CONNECTED = "Connected" + NOT_CONNECTED = "NotConnected" + +class VirtualNetworkGatewayConnectionType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Gateway connection type. + """ + + I_PSEC = "IPsec" + VNET2_VNET = "Vnet2Vnet" + EXPRESS_ROUTE = "ExpressRoute" + VPN_CLIENT = "VPNClient" + +class VirtualNetworkGatewaySkuName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Gateway SKU name. + """ + + BASIC = "Basic" + HIGH_PERFORMANCE = "HighPerformance" + STANDARD = "Standard" + ULTRA_PERFORMANCE = "UltraPerformance" + VPN_GW1 = "VpnGw1" + VPN_GW2 = "VpnGw2" + VPN_GW3 = "VpnGw3" + VPN_GW4 = "VpnGw4" + VPN_GW5 = "VpnGw5" + VPN_GW1_AZ = "VpnGw1AZ" + VPN_GW2_AZ = "VpnGw2AZ" + VPN_GW3_AZ = "VpnGw3AZ" + VPN_GW4_AZ = "VpnGw4AZ" + VPN_GW5_AZ = "VpnGw5AZ" + ER_GW1_AZ = "ErGw1AZ" + ER_GW2_AZ = "ErGw2AZ" + ER_GW3_AZ = "ErGw3AZ" + +class VirtualNetworkGatewaySkuTier(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Gateway SKU tier. + """ + + BASIC = "Basic" + HIGH_PERFORMANCE = "HighPerformance" + STANDARD = "Standard" + ULTRA_PERFORMANCE = "UltraPerformance" + VPN_GW1 = "VpnGw1" + VPN_GW2 = "VpnGw2" + VPN_GW3 = "VpnGw3" + VPN_GW4 = "VpnGw4" + VPN_GW5 = "VpnGw5" + VPN_GW1_AZ = "VpnGw1AZ" + VPN_GW2_AZ = "VpnGw2AZ" + VPN_GW3_AZ = "VpnGw3AZ" + VPN_GW4_AZ = "VpnGw4AZ" + VPN_GW5_AZ = "VpnGw5AZ" + ER_GW1_AZ = "ErGw1AZ" + ER_GW2_AZ = "ErGw2AZ" + ER_GW3_AZ = "ErGw3AZ" + +class VirtualNetworkGatewayType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The type of this virtual network gateway. + """ + + VPN = "Vpn" + EXPRESS_ROUTE = "ExpressRoute" + LOCAL_GATEWAY = "LocalGateway" + +class VirtualNetworkPeeringLevel(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The peering sync status of the virtual network peering. + """ + + FULLY_IN_SYNC = "FullyInSync" + REMOTE_NOT_IN_SYNC = "RemoteNotInSync" + LOCAL_NOT_IN_SYNC = "LocalNotInSync" + LOCAL_AND_REMOTE_NOT_IN_SYNC = "LocalAndRemoteNotInSync" + +class VirtualNetworkPeeringState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The status of the virtual network peering. + """ + + INITIATED = "Initiated" + CONNECTED = "Connected" + DISCONNECTED = "Disconnected" + +class VirtualNetworkPrivateEndpointNetworkPolicies(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Enable or Disable apply network policies on private end point in the subnet. + """ + + ENABLED = "Enabled" + DISABLED = "Disabled" + +class VirtualNetworkPrivateLinkServiceNetworkPolicies(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Enable or Disable apply network policies on private link service in the subnet. + """ + + ENABLED = "Enabled" + DISABLED = "Disabled" + +class VirtualWanSecurityProviderType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The virtual wan security provider type. + """ + + EXTERNAL = "External" + NATIVE = "Native" + +class VpnAuthenticationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """VPN authentication types enabled for the virtual network gateway. + """ + + CERTIFICATE = "Certificate" + RADIUS = "Radius" + AAD = "AAD" + +class VpnClientProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """VPN client protocol enabled for the virtual network gateway. + """ + + IKE_V2 = "IkeV2" + SSTP = "SSTP" + OPEN_VPN = "OpenVPN" + +class VpnConnectionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The current state of the vpn connection. + """ + + UNKNOWN = "Unknown" + CONNECTING = "Connecting" + CONNECTED = "Connected" + NOT_CONNECTED = "NotConnected" + +class VpnGatewayGeneration(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The generation for this VirtualNetworkGateway. Must be None if gatewayType is not VPN. + """ + + NONE = "None" + GENERATION1 = "Generation1" + GENERATION2 = "Generation2" + +class VpnGatewayTunnelingProtocol(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """VPN protocol enabled for the VpnServerConfiguration. + """ + + IKE_V2 = "IkeV2" + OPEN_VPN = "OpenVPN" + +class VpnLinkConnectionMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Vpn link connection mode. + """ + + DEFAULT = "Default" + RESPONDER_ONLY = "ResponderOnly" + INITIATOR_ONLY = "InitiatorOnly" + +class VpnNatRuleMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The Source NAT direction of a VPN NAT. + """ + + EGRESS_SNAT = "EgressSnat" + INGRESS_SNAT = "IngressSnat" + +class VpnNatRuleType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The type of NAT rule for VPN NAT. + """ + + STATIC = "Static" + DYNAMIC = "Dynamic" + +class VpnPolicyMemberAttributeType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The Vpn Policy member attribute type. + """ + + CERTIFICATE_GROUP_ID = "CertificateGroupId" + AAD_GROUP_ID = "AADGroupId" + RADIUS_AZURE_GROUP_ID = "RadiusAzureGroupId" + +class VpnType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The type of this virtual network gateway. + """ + + POLICY_BASED = "PolicyBased" + ROUTE_BASED = "RouteBased" + +class WebApplicationFirewallAction(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Type of Actions. + """ + + ALLOW = "Allow" + BLOCK = "Block" + LOG = "Log" + +class WebApplicationFirewallEnabledState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The state of the policy. + """ + + DISABLED = "Disabled" + ENABLED = "Enabled" + +class WebApplicationFirewallMatchVariable(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Match Variable. + """ + + REMOTE_ADDR = "RemoteAddr" + REQUEST_METHOD = "RequestMethod" + QUERY_STRING = "QueryString" + POST_ARGS = "PostArgs" + REQUEST_URI = "RequestUri" + REQUEST_HEADERS = "RequestHeaders" + REQUEST_BODY = "RequestBody" + REQUEST_COOKIES = "RequestCookies" + +class WebApplicationFirewallMode(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The mode of the policy. + """ + + PREVENTION = "Prevention" + DETECTION = "Detection" + +class WebApplicationFirewallOperator(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The operator to be matched. + """ + + IP_MATCH = "IPMatch" + EQUAL = "Equal" + CONTAINS = "Contains" + LESS_THAN = "LessThan" + GREATER_THAN = "GreaterThan" + LESS_THAN_OR_EQUAL = "LessThanOrEqual" + GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual" + BEGINS_WITH = "BeginsWith" + ENDS_WITH = "EndsWith" + REGEX = "Regex" + GEO_MATCH = "GeoMatch" + +class WebApplicationFirewallPolicyResourceState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Resource status of the policy. + """ + + CREATING = "Creating" + ENABLING = "Enabling" + ENABLED = "Enabled" + DISABLING = "Disabling" + DISABLED = "Disabled" + DELETING = "Deleting" + +class WebApplicationFirewallRuleType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """The rule type. + """ + + MATCH_RULE = "MatchRule" + INVALID = "Invalid" + +class WebApplicationFirewallTransform(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Transforms applied before matching. + """ + + LOWERCASE = "Lowercase" + TRIM = "Trim" + URL_DECODE = "UrlDecode" + URL_ENCODE = "UrlEncode" + REMOVE_NULLS = "RemoveNulls" + HTML_ENTITY_DECODE = "HtmlEntityDecode" diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/operations/__init__.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/operations/__init__.py new file mode 100644 index 00000000000..f71d0fb7e6d --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/operations/__init__.py @@ -0,0 +1,241 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._operations import ApplicationGatewaysOperations +from ._operations import ApplicationGatewayPrivateLinkResourcesOperations +from ._operations import ApplicationGatewayPrivateEndpointConnectionsOperations +from ._operations import ApplicationSecurityGroupsOperations +from ._operations import AvailableDelegationsOperations +from ._operations import AvailableResourceGroupDelegationsOperations +from ._operations import AvailableServiceAliasesOperations +from ._operations import AzureFirewallsOperations +from ._operations import AzureFirewallFqdnTagsOperations +from ._operations import WebCategoriesOperations +from ._operations import BastionHostsOperations +from ._operations import NetworkManagementClientOperationsMixin +from ._operations import NetworkInterfacesOperations +from ._operations import PublicIPAddressesOperations +from ._operations import CustomIPPrefixesOperations +from ._operations import DdosCustomPoliciesOperations +from ._operations import DdosProtectionPlansOperations +from ._operations import DscpConfigurationOperations +from ._operations import AvailableEndpointServicesOperations +from ._operations import ExpressRouteCircuitAuthorizationsOperations +from ._operations import ExpressRouteCircuitPeeringsOperations +from ._operations import ExpressRouteCircuitConnectionsOperations +from ._operations import PeerExpressRouteCircuitConnectionsOperations +from ._operations import ExpressRouteCircuitsOperations +from ._operations import ExpressRouteServiceProvidersOperations +from ._operations import ExpressRouteCrossConnectionsOperations +from ._operations import ExpressRouteCrossConnectionPeeringsOperations +from ._operations import ExpressRoutePortsLocationsOperations +from ._operations import ExpressRoutePortsOperations +from ._operations import ExpressRouteLinksOperations +from ._operations import ExpressRoutePortAuthorizationsOperations +from ._operations import FirewallPoliciesOperations +from ._operations import FirewallPolicyRuleCollectionGroupsOperations +from ._operations import FirewallPolicyIdpsSignaturesOperations +from ._operations import FirewallPolicyIdpsSignaturesOverridesOperations +from ._operations import FirewallPolicyIdpsSignaturesFilterValuesOperations +from ._operations import IpAllocationsOperations +from ._operations import IpGroupsOperations +from ._operations import LoadBalancersOperations +from ._operations import LoadBalancerBackendAddressPoolsOperations +from ._operations import LoadBalancerFrontendIPConfigurationsOperations +from ._operations import InboundNatRulesOperations +from ._operations import LoadBalancerLoadBalancingRulesOperations +from ._operations import LoadBalancerOutboundRulesOperations +from ._operations import LoadBalancerNetworkInterfacesOperations +from ._operations import LoadBalancerProbesOperations +from ._operations import NatGatewaysOperations +from ._operations import NetworkInterfaceIPConfigurationsOperations +from ._operations import NetworkInterfaceLoadBalancersOperations +from ._operations import NetworkInterfaceTapConfigurationsOperations +from ._operations import NetworkProfilesOperations +from ._operations import NetworkSecurityGroupsOperations +from ._operations import SecurityRulesOperations +from ._operations import DefaultSecurityRulesOperations +from ._operations import NetworkVirtualAppliancesOperations +from ._operations import VirtualApplianceSitesOperations +from ._operations import VirtualApplianceSkusOperations +from ._operations import InboundSecurityRuleOperations +from ._operations import NetworkWatchersOperations +from ._operations import PacketCapturesOperations +from ._operations import ConnectionMonitorsOperations +from ._operations import FlowLogsOperations +from ._operations import Operations +from ._operations import PrivateEndpointsOperations +from ._operations import AvailablePrivateEndpointTypesOperations +from ._operations import PrivateDnsZoneGroupsOperations +from ._operations import PrivateLinkServicesOperations +from ._operations import PublicIPPrefixesOperations +from ._operations import RouteFiltersOperations +from ._operations import RouteFilterRulesOperations +from ._operations import RouteTablesOperations +from ._operations import RoutesOperations +from ._operations import SecurityPartnerProvidersOperations +from ._operations import BgpServiceCommunitiesOperations +from ._operations import ServiceEndpointPoliciesOperations +from ._operations import ServiceEndpointPolicyDefinitionsOperations +from ._operations import ServiceTagsOperations +from ._operations import ServiceTagInformationOperations +from ._operations import UsagesOperations +from ._operations import VirtualNetworksOperations +from ._operations import SubnetsOperations +from ._operations import ResourceNavigationLinksOperations +from ._operations import ServiceAssociationLinksOperations +from ._operations import VirtualNetworkPeeringsOperations +from ._operations import VirtualNetworkGatewaysOperations +from ._operations import VirtualNetworkGatewayConnectionsOperations +from ._operations import LocalNetworkGatewaysOperations +from ._operations import VirtualNetworkGatewayNatRulesOperations +from ._operations import VirtualNetworkTapsOperations +from ._operations import VirtualRoutersOperations +from ._operations import VirtualRouterPeeringsOperations +from ._operations import VirtualWansOperations +from ._operations import VpnSitesOperations +from ._operations import VpnSiteLinksOperations +from ._operations import VpnSitesConfigurationOperations +from ._operations import VpnServerConfigurationsOperations +from ._operations import ConfigurationPolicyGroupsOperations +from ._operations import VirtualHubsOperations +from ._operations import HubVirtualNetworkConnectionsOperations +from ._operations import VpnGatewaysOperations +from ._operations import VpnLinkConnectionsOperations +from ._operations import VpnConnectionsOperations +from ._operations import VpnSiteLinkConnectionsOperations +from ._operations import NatRulesOperations +from ._operations import P2SVpnGatewaysOperations +from ._operations import VpnServerConfigurationsAssociatedWithVirtualWanOperations +from ._operations import VirtualHubRouteTableV2SOperations +from ._operations import ExpressRouteGatewaysOperations +from ._operations import ExpressRouteConnectionsOperations +from ._operations import VirtualHubBgpConnectionOperations +from ._operations import VirtualHubBgpConnectionsOperations +from ._operations import VirtualHubIpConfigurationOperations +from ._operations import HubRouteTablesOperations +from ._operations import RoutingIntentOperations +from ._operations import WebApplicationFirewallPoliciesOperations + +__all__ = [ + 'ApplicationGatewaysOperations', + 'ApplicationGatewayPrivateLinkResourcesOperations', + 'ApplicationGatewayPrivateEndpointConnectionsOperations', + 'ApplicationSecurityGroupsOperations', + 'AvailableDelegationsOperations', + 'AvailableResourceGroupDelegationsOperations', + 'AvailableServiceAliasesOperations', + 'AzureFirewallsOperations', + 'AzureFirewallFqdnTagsOperations', + 'WebCategoriesOperations', + 'BastionHostsOperations', + 'NetworkManagementClientOperationsMixin', + 'NetworkInterfacesOperations', + 'PublicIPAddressesOperations', + 'CustomIPPrefixesOperations', + 'DdosCustomPoliciesOperations', + 'DdosProtectionPlansOperations', + 'DscpConfigurationOperations', + 'AvailableEndpointServicesOperations', + 'ExpressRouteCircuitAuthorizationsOperations', + 'ExpressRouteCircuitPeeringsOperations', + 'ExpressRouteCircuitConnectionsOperations', + 'PeerExpressRouteCircuitConnectionsOperations', + 'ExpressRouteCircuitsOperations', + 'ExpressRouteServiceProvidersOperations', + 'ExpressRouteCrossConnectionsOperations', + 'ExpressRouteCrossConnectionPeeringsOperations', + 'ExpressRoutePortsLocationsOperations', + 'ExpressRoutePortsOperations', + 'ExpressRouteLinksOperations', + 'ExpressRoutePortAuthorizationsOperations', + 'FirewallPoliciesOperations', + 'FirewallPolicyRuleCollectionGroupsOperations', + 'FirewallPolicyIdpsSignaturesOperations', + 'FirewallPolicyIdpsSignaturesOverridesOperations', + 'FirewallPolicyIdpsSignaturesFilterValuesOperations', + 'IpAllocationsOperations', + 'IpGroupsOperations', + 'LoadBalancersOperations', + 'LoadBalancerBackendAddressPoolsOperations', + 'LoadBalancerFrontendIPConfigurationsOperations', + 'InboundNatRulesOperations', + 'LoadBalancerLoadBalancingRulesOperations', + 'LoadBalancerOutboundRulesOperations', + 'LoadBalancerNetworkInterfacesOperations', + 'LoadBalancerProbesOperations', + 'NatGatewaysOperations', + 'NetworkInterfaceIPConfigurationsOperations', + 'NetworkInterfaceLoadBalancersOperations', + 'NetworkInterfaceTapConfigurationsOperations', + 'NetworkProfilesOperations', + 'NetworkSecurityGroupsOperations', + 'SecurityRulesOperations', + 'DefaultSecurityRulesOperations', + 'NetworkVirtualAppliancesOperations', + 'VirtualApplianceSitesOperations', + 'VirtualApplianceSkusOperations', + 'InboundSecurityRuleOperations', + 'NetworkWatchersOperations', + 'PacketCapturesOperations', + 'ConnectionMonitorsOperations', + 'FlowLogsOperations', + 'Operations', + 'PrivateEndpointsOperations', + 'AvailablePrivateEndpointTypesOperations', + 'PrivateDnsZoneGroupsOperations', + 'PrivateLinkServicesOperations', + 'PublicIPPrefixesOperations', + 'RouteFiltersOperations', + 'RouteFilterRulesOperations', + 'RouteTablesOperations', + 'RoutesOperations', + 'SecurityPartnerProvidersOperations', + 'BgpServiceCommunitiesOperations', + 'ServiceEndpointPoliciesOperations', + 'ServiceEndpointPolicyDefinitionsOperations', + 'ServiceTagsOperations', + 'ServiceTagInformationOperations', + 'UsagesOperations', + 'VirtualNetworksOperations', + 'SubnetsOperations', + 'ResourceNavigationLinksOperations', + 'ServiceAssociationLinksOperations', + 'VirtualNetworkPeeringsOperations', + 'VirtualNetworkGatewaysOperations', + 'VirtualNetworkGatewayConnectionsOperations', + 'LocalNetworkGatewaysOperations', + 'VirtualNetworkGatewayNatRulesOperations', + 'VirtualNetworkTapsOperations', + 'VirtualRoutersOperations', + 'VirtualRouterPeeringsOperations', + 'VirtualWansOperations', + 'VpnSitesOperations', + 'VpnSiteLinksOperations', + 'VpnSitesConfigurationOperations', + 'VpnServerConfigurationsOperations', + 'ConfigurationPolicyGroupsOperations', + 'VirtualHubsOperations', + 'HubVirtualNetworkConnectionsOperations', + 'VpnGatewaysOperations', + 'VpnLinkConnectionsOperations', + 'VpnConnectionsOperations', + 'VpnSiteLinkConnectionsOperations', + 'NatRulesOperations', + 'P2SVpnGatewaysOperations', + 'VpnServerConfigurationsAssociatedWithVirtualWanOperations', + 'VirtualHubRouteTableV2SOperations', + 'ExpressRouteGatewaysOperations', + 'ExpressRouteConnectionsOperations', + 'VirtualHubBgpConnectionOperations', + 'VirtualHubBgpConnectionsOperations', + 'VirtualHubIpConfigurationOperations', + 'HubRouteTablesOperations', + 'RoutingIntentOperations', + 'WebApplicationFirewallPoliciesOperations', +] diff --git a/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/operations/_operations.py b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/operations/_operations.py new file mode 100644 index 00000000000..50e7ef4349c --- /dev/null +++ b/src/virtual-wan/azext_vwan/vendored_sdks/v2021_08_01/v2021_08_01/operations/_operations.py @@ -0,0 +1,75744 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, Iterable, List, Optional, TypeVar, Union + +from msrest import Serializer + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models +from .._vendor import _convert_request, _format_url_section +T = TypeVar('T') +JSONType = Any +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + +def build_application_gateways_delete_request_initial( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_get_request( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_create_or_update_request_initial( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_application_gateways_update_tags_request( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_application_gateways_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGateways") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_start_request_initial( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/start") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_stop_request_initial( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/stop") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_backend_health_request_initial( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/backendhealth") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_backend_health_on_demand_request_initial( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/getBackendHealthOnDemand") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_application_gateways_list_available_server_variables_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableServerVariables") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_list_available_request_headers_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableRequestHeaders") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_list_available_response_headers_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableResponseHeaders") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_list_available_waf_rule_sets_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_list_available_ssl_options_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_list_available_ssl_predefined_policies_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateways_get_ssl_predefined_policy_request( + subscription_id: str, + predefined_policy_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies/{predefinedPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "predefinedPolicyName": _SERIALIZER.url("predefined_policy_name", predefined_policy_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateway_private_link_resources_list_request( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateLinkResources") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateway_private_endpoint_connections_delete_request_initial( + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateway_private_endpoint_connections_update_request_initial( + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_application_gateway_private_endpoint_connections_get_request( + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_gateway_private_endpoint_connections_list_request( + resource_group_name: str, + application_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationGatewayName": _SERIALIZER.url("application_gateway_name", application_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_security_groups_delete_request_initial( + resource_group_name: str, + application_security_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationSecurityGroupName": _SERIALIZER.url("application_security_group_name", application_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_security_groups_get_request( + resource_group_name: str, + application_security_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationSecurityGroupName": _SERIALIZER.url("application_security_group_name", application_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_security_groups_create_or_update_request_initial( + resource_group_name: str, + application_security_group_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationSecurityGroupName": _SERIALIZER.url("application_security_group_name", application_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_application_security_groups_update_tags_request( + resource_group_name: str, + application_security_group_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "applicationSecurityGroupName": _SERIALIZER.url("application_security_group_name", application_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_application_security_groups_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationSecurityGroups") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_application_security_groups_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_available_delegations_list_request( + location: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availableDelegations") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_available_resource_group_delegations_list_request( + location: str, + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availableDelegations") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_available_service_aliases_list_request( + location: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availableServiceAliases") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_available_service_aliases_list_by_resource_group_request( + resource_group_name: str, + location: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availableServiceAliases") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_azure_firewalls_delete_request_initial( + resource_group_name: str, + azure_firewall_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "azureFirewallName": _SERIALIZER.url("azure_firewall_name", azure_firewall_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_azure_firewalls_get_request( + resource_group_name: str, + azure_firewall_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "azureFirewallName": _SERIALIZER.url("azure_firewall_name", azure_firewall_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_azure_firewalls_create_or_update_request_initial( + resource_group_name: str, + azure_firewall_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "azureFirewallName": _SERIALIZER.url("azure_firewall_name", azure_firewall_name, 'str', max_length=56, min_length=1), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_azure_firewalls_update_tags_request_initial( + resource_group_name: str, + azure_firewall_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "azureFirewallName": _SERIALIZER.url("azure_firewall_name", azure_firewall_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_azure_firewalls_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_azure_firewalls_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureFirewalls") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_azure_firewall_fqdn_tags_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureFirewallFqdnTags") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_web_categories_get_request( + name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureWebCategories/{name}") # pylint: disable=line-too-long + path_format_arguments = { + "name": _SERIALIZER.url("name", name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_web_categories_list_by_subscription_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureWebCategories") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_bastion_hosts_delete_request_initial( + resource_group_name: str, + bastion_host_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "bastionHostName": _SERIALIZER.url("bastion_host_name", bastion_host_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_bastion_hosts_get_request( + resource_group_name: str, + bastion_host_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "bastionHostName": _SERIALIZER.url("bastion_host_name", bastion_host_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_bastion_hosts_create_or_update_request_initial( + resource_group_name: str, + bastion_host_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "bastionHostName": _SERIALIZER.url("bastion_host_name", bastion_host_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_bastion_hosts_update_tags_request_initial( + subscription_id: str, + resource_group_name: str, + bastion_host_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "bastionHostName": _SERIALIZER.url("bastion_host_name", bastion_host_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_bastion_hosts_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/bastionHosts") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_bastion_hosts_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_put_bastion_shareable_link_request_initial( + resource_group_name: str, + bastion_host_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/createShareableLinks") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "bastionHostName": _SERIALIZER.url("bastion_host_name", bastion_host_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_delete_bastion_shareable_link_request_initial( + resource_group_name: str, + bastion_host_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/deleteShareableLinks") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "bastionHostName": _SERIALIZER.url("bastion_host_name", bastion_host_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_get_bastion_shareable_link_request( + resource_group_name: str, + bastion_host_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/getShareableLinks") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "bastionHostName": _SERIALIZER.url("bastion_host_name", bastion_host_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_get_active_sessions_request_initial( + resource_group_name: str, + bastion_host_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/getActiveSessions") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "bastionHostName": _SERIALIZER.url("bastion_host_name", bastion_host_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_disconnect_active_sessions_request( + resource_group_name: str, + bastion_host_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/disconnectActiveSessions") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "bastionHostName": _SERIALIZER.url("bastion_host_name", bastion_host_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_check_dns_name_availability_request( + location: str, + subscription_id: str, + *, + domain_name_label: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/CheckDnsNameAvailability") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['domainNameLabel'] = _SERIALIZER.query("domain_name_label", domain_name_label, 'str') + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_supported_security_providers_request( + subscription_id: str, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/supportedSecurityProviders") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualWANName": _SERIALIZER.url("virtual_wan_name", virtual_wan_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_generatevirtualwanvpnserverconfigurationvpnprofile_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_wan_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/GenerateVpnProfile") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualWANName": _SERIALIZER.url("virtual_wan_name", virtual_wan_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_interfaces_list_cloud_service_role_instance_network_interfaces_request( + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "cloudServiceName": _SERIALIZER.url("cloud_service_name", cloud_service_name, 'str'), + "roleInstanceName": _SERIALIZER.url("role_instance_name", role_instance_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_list_cloud_service_network_interfaces_request( + resource_group_name: str, + cloud_service_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/networkInterfaces") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "cloudServiceName": _SERIALIZER.url("cloud_service_name", cloud_service_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_get_cloud_service_network_interface_request( + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + network_interface_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "cloudServiceName": _SERIALIZER.url("cloud_service_name", cloud_service_name, 'str'), + "roleInstanceName": _SERIALIZER.url("role_instance_name", role_instance_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_delete_request_initial( + resource_group_name: str, + network_interface_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_get_request( + resource_group_name: str, + network_interface_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_create_or_update_request_initial( + resource_group_name: str, + network_interface_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_interfaces_update_tags_request( + resource_group_name: str, + network_interface_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_interfaces_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkInterfaces") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_get_effective_route_table_request_initial( + resource_group_name: str, + network_interface_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveRouteTable") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_list_effective_network_security_groups_request_initial( + resource_group_name: str, + network_interface_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveNetworkSecurityGroups") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_list_virtual_machine_scale_set_vm_network_interfaces_request( + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualMachineScaleSetName": _SERIALIZER.url("virtual_machine_scale_set_name", virtual_machine_scale_set_name, 'str'), + "virtualmachineIndex": _SERIALIZER.url("virtualmachine_index", virtualmachine_index, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_list_virtual_machine_scale_set_network_interfaces_request( + resource_group_name: str, + virtual_machine_scale_set_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/networkInterfaces") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualMachineScaleSetName": _SERIALIZER.url("virtual_machine_scale_set_name", virtual_machine_scale_set_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_get_virtual_machine_scale_set_network_interface_request( + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualMachineScaleSetName": _SERIALIZER.url("virtual_machine_scale_set_name", virtual_machine_scale_set_name, 'str'), + "virtualmachineIndex": _SERIALIZER.url("virtualmachine_index", virtualmachine_index, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_list_virtual_machine_scale_set_ip_configurations_request( + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipConfigurations") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualMachineScaleSetName": _SERIALIZER.url("virtual_machine_scale_set_name", virtual_machine_scale_set_name, 'str'), + "virtualmachineIndex": _SERIALIZER.url("virtualmachine_index", virtualmachine_index, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interfaces_get_virtual_machine_scale_set_ip_configuration_request( + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + ip_configuration_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipConfigurations/{ipConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualMachineScaleSetName": _SERIALIZER.url("virtual_machine_scale_set_name", virtual_machine_scale_set_name, 'str'), + "virtualmachineIndex": _SERIALIZER.url("virtualmachine_index", virtualmachine_index, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "ipConfigurationName": _SERIALIZER.url("ip_configuration_name", ip_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_list_cloud_service_public_ip_addresses_request( + resource_group_name: str, + cloud_service_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/publicipaddresses") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "cloudServiceName": _SERIALIZER.url("cloud_service_name", cloud_service_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_list_cloud_service_role_instance_public_ip_addresses_request( + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + network_interface_name: str, + ip_configuration_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "cloudServiceName": _SERIALIZER.url("cloud_service_name", cloud_service_name, 'str'), + "roleInstanceName": _SERIALIZER.url("role_instance_name", role_instance_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "ipConfigurationName": _SERIALIZER.url("ip_configuration_name", ip_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_get_cloud_service_public_ip_address_request( + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + network_interface_name: str, + ip_configuration_name: str, + public_ip_address_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses/{publicIpAddressName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "cloudServiceName": _SERIALIZER.url("cloud_service_name", cloud_service_name, 'str'), + "roleInstanceName": _SERIALIZER.url("role_instance_name", role_instance_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "ipConfigurationName": _SERIALIZER.url("ip_configuration_name", ip_configuration_name, 'str'), + "publicIpAddressName": _SERIALIZER.url("public_ip_address_name", public_ip_address_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_delete_request_initial( + resource_group_name: str, + public_ip_address_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "publicIpAddressName": _SERIALIZER.url("public_ip_address_name", public_ip_address_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_get_request( + resource_group_name: str, + public_ip_address_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "publicIpAddressName": _SERIALIZER.url("public_ip_address_name", public_ip_address_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_create_or_update_request_initial( + resource_group_name: str, + public_ip_address_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "publicIpAddressName": _SERIALIZER.url("public_ip_address_name", public_ip_address_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_public_ip_addresses_update_tags_request( + resource_group_name: str, + public_ip_address_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "publicIpAddressName": _SERIALIZER.url("public_ip_address_name", public_ip_address_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_public_ip_addresses_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/publicIPAddresses") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_list_virtual_machine_scale_set_public_ip_addresses_request( + resource_group_name: str, + virtual_machine_scale_set_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/publicipaddresses") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualMachineScaleSetName": _SERIALIZER.url("virtual_machine_scale_set_name", virtual_machine_scale_set_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_list_virtual_machine_scale_set_vm_public_ip_addresses_request( + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + ip_configuration_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualMachineScaleSetName": _SERIALIZER.url("virtual_machine_scale_set_name", virtual_machine_scale_set_name, 'str'), + "virtualmachineIndex": _SERIALIZER.url("virtualmachine_index", virtualmachine_index, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "ipConfigurationName": _SERIALIZER.url("ip_configuration_name", ip_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_addresses_get_virtual_machine_scale_set_public_ip_address_request( + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + ip_configuration_name: str, + public_ip_address_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses/{publicIpAddressName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualMachineScaleSetName": _SERIALIZER.url("virtual_machine_scale_set_name", virtual_machine_scale_set_name, 'str'), + "virtualmachineIndex": _SERIALIZER.url("virtualmachine_index", virtualmachine_index, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "ipConfigurationName": _SERIALIZER.url("ip_configuration_name", ip_configuration_name, 'str'), + "publicIpAddressName": _SERIALIZER.url("public_ip_address_name", public_ip_address_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_custom_ip_prefixes_delete_request_initial( + resource_group_name: str, + custom_ip_prefix_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "customIpPrefixName": _SERIALIZER.url("custom_ip_prefix_name", custom_ip_prefix_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_custom_ip_prefixes_get_request( + resource_group_name: str, + custom_ip_prefix_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "customIpPrefixName": _SERIALIZER.url("custom_ip_prefix_name", custom_ip_prefix_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_custom_ip_prefixes_create_or_update_request_initial( + resource_group_name: str, + custom_ip_prefix_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "customIpPrefixName": _SERIALIZER.url("custom_ip_prefix_name", custom_ip_prefix_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_custom_ip_prefixes_update_tags_request( + resource_group_name: str, + custom_ip_prefix_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "customIpPrefixName": _SERIALIZER.url("custom_ip_prefix_name", custom_ip_prefix_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_custom_ip_prefixes_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/customIpPrefixes") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_custom_ip_prefixes_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ddos_custom_policies_delete_request_initial( + resource_group_name: str, + ddos_custom_policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ddosCustomPolicyName": _SERIALIZER.url("ddos_custom_policy_name", ddos_custom_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ddos_custom_policies_get_request( + resource_group_name: str, + ddos_custom_policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ddosCustomPolicyName": _SERIALIZER.url("ddos_custom_policy_name", ddos_custom_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ddos_custom_policies_create_or_update_request_initial( + resource_group_name: str, + ddos_custom_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ddosCustomPolicyName": _SERIALIZER.url("ddos_custom_policy_name", ddos_custom_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_ddos_custom_policies_update_tags_request( + resource_group_name: str, + ddos_custom_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ddosCustomPolicyName": _SERIALIZER.url("ddos_custom_policy_name", ddos_custom_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_ddos_protection_plans_delete_request_initial( + resource_group_name: str, + ddos_protection_plan_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ddosProtectionPlanName": _SERIALIZER.url("ddos_protection_plan_name", ddos_protection_plan_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ddos_protection_plans_get_request( + resource_group_name: str, + ddos_protection_plan_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ddosProtectionPlanName": _SERIALIZER.url("ddos_protection_plan_name", ddos_protection_plan_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ddos_protection_plans_create_or_update_request_initial( + resource_group_name: str, + ddos_protection_plan_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ddosProtectionPlanName": _SERIALIZER.url("ddos_protection_plan_name", ddos_protection_plan_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_ddos_protection_plans_update_tags_request( + resource_group_name: str, + ddos_protection_plan_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ddosProtectionPlanName": _SERIALIZER.url("ddos_protection_plan_name", ddos_protection_plan_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_ddos_protection_plans_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ddosProtectionPlans") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ddos_protection_plans_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_dscp_configuration_create_or_update_request_initial( + resource_group_name: str, + dscp_configuration_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "dscpConfigurationName": _SERIALIZER.url("dscp_configuration_name", dscp_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_dscp_configuration_delete_request_initial( + resource_group_name: str, + dscp_configuration_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "dscpConfigurationName": _SERIALIZER.url("dscp_configuration_name", dscp_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_dscp_configuration_get_request( + resource_group_name: str, + dscp_configuration_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "dscpConfigurationName": _SERIALIZER.url("dscp_configuration_name", dscp_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_dscp_configuration_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_dscp_configuration_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/dscpConfigurations") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_available_endpoint_services_list_request( + location: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/virtualNetworkAvailableEndpointServices") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuit_authorizations_delete_request_initial( + resource_group_name: str, + circuit_name: str, + authorization_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "authorizationName": _SERIALIZER.url("authorization_name", authorization_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuit_authorizations_get_request( + resource_group_name: str, + circuit_name: str, + authorization_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "authorizationName": _SERIALIZER.url("authorization_name", authorization_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuit_authorizations_create_or_update_request_initial( + resource_group_name: str, + circuit_name: str, + authorization_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "authorizationName": _SERIALIZER.url("authorization_name", authorization_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_circuit_authorizations_list_request( + resource_group_name: str, + circuit_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuit_peerings_delete_request_initial( + resource_group_name: str, + circuit_name: str, + peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuit_peerings_get_request( + resource_group_name: str, + circuit_name: str, + peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuit_peerings_create_or_update_request_initial( + resource_group_name: str, + circuit_name: str, + peering_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_circuit_peerings_list_request( + resource_group_name: str, + circuit_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuit_connections_delete_request_initial( + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuit_connections_get_request( + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuit_connections_create_or_update_request_initial( + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_circuit_connections_list_request( + resource_group_name: str, + circuit_name: str, + peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_peer_express_route_circuit_connections_get_request( + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/peerConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_peer_express_route_circuit_connections_list_request( + resource_group_name: str, + circuit_name: str, + peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/peerConnections") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuits_delete_request_initial( + resource_group_name: str, + circuit_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuits_get_request( + resource_group_name: str, + circuit_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuits_create_or_update_request_initial( + resource_group_name: str, + circuit_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_circuits_update_tags_request( + resource_group_name: str, + circuit_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_circuits_list_arp_table_request_initial( + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/arpTables/{devicePath}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "devicePath": _SERIALIZER.url("device_path", device_path, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuits_list_routes_table_request_initial( + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTables/{devicePath}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "devicePath": _SERIALIZER.url("device_path", device_path, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuits_list_routes_table_summary_request_initial( + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTablesSummary/{devicePath}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "devicePath": _SERIALIZER.url("device_path", device_path, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuits_get_stats_request( + resource_group_name: str, + circuit_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/stats") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuits_get_peering_stats_request( + resource_group_name: str, + circuit_name: str, + peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/stats") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "circuitName": _SERIALIZER.url("circuit_name", circuit_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuits_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_circuits_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteCircuits") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_service_providers_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteServiceProviders") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connections_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteCrossConnections") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connections_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connections_get_request( + resource_group_name: str, + cross_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connections_create_or_update_request_initial( + resource_group_name: str, + cross_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_cross_connections_update_tags_request( + resource_group_name: str, + cross_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_cross_connections_list_arp_table_request_initial( + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/arpTables/{devicePath}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "devicePath": _SERIALIZER.url("device_path", device_path, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connections_list_routes_table_summary_request_initial( + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTablesSummary/{devicePath}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "devicePath": _SERIALIZER.url("device_path", device_path, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connections_list_routes_table_request_initial( + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTables/{devicePath}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "devicePath": _SERIALIZER.url("device_path", device_path, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connection_peerings_list_request( + resource_group_name: str, + cross_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connection_peerings_delete_request_initial( + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connection_peerings_get_request( + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_cross_connection_peerings_create_or_update_request_initial( + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "crossConnectionName": _SERIALIZER.url("cross_connection_name", cross_connection_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_ports_locations_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ExpressRoutePortsLocations") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_ports_locations_get_request( + subscription_id: str, + location_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ExpressRoutePortsLocations/{locationName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "locationName": _SERIALIZER.url("location_name", location_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_ports_delete_request_initial( + subscription_id: str, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_ports_get_request( + subscription_id: str, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_ports_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + express_route_port_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_ports_update_tags_request( + subscription_id: str, + resource_group_name: str, + express_route_port_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_ports_list_by_resource_group_request( + subscription_id: str, + resource_group_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_ports_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ExpressRoutePorts") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_ports_generate_loa_request( + subscription_id: str, + resource_group_name: str, + express_route_port_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/generateLoa") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_links_get_request( + subscription_id: str, + resource_group_name: str, + express_route_port_name: str, + link_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}/links/{linkName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + "linkName": _SERIALIZER.url("link_name", link_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_links_list_request( + subscription_id: str, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}/links") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_port_authorizations_delete_request_initial( + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + "authorizationName": _SERIALIZER.url("authorization_name", authorization_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_port_authorizations_get_request( + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + "authorizationName": _SERIALIZER.url("authorization_name", authorization_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_port_authorizations_create_or_update_request_initial( + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + "authorizationName": _SERIALIZER.url("authorization_name", authorization_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_port_authorizations_list_request( + resource_group_name: str, + express_route_port_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRoutePortName": _SERIALIZER.url("express_route_port_name", express_route_port_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policies_delete_request_initial( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policies_get_request( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policies_create_or_update_request_initial( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_firewall_policies_update_tags_request( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_firewall_policies_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policies_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/firewallPolicies") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policy_rule_collection_groups_delete_request_initial( + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "ruleCollectionGroupName": _SERIALIZER.url("rule_collection_group_name", rule_collection_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policy_rule_collection_groups_get_request( + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "ruleCollectionGroupName": _SERIALIZER.url("rule_collection_group_name", rule_collection_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policy_rule_collection_groups_create_or_update_request_initial( + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "ruleCollectionGroupName": _SERIALIZER.url("rule_collection_group_name", rule_collection_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_firewall_policy_rule_collection_groups_list_request( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policy_idps_signatures_list_request( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/listIdpsSignatures") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_firewall_policy_idps_signatures_overrides_patch_request( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides/default") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_firewall_policy_idps_signatures_overrides_put_request( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides/default") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_firewall_policy_idps_signatures_overrides_get_request( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides/default") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policy_idps_signatures_overrides_list_request( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_firewall_policy_idps_signatures_filter_values_list_request( + resource_group_name: str, + firewall_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/listIdpsFilterOptions") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "firewallPolicyName": _SERIALIZER.url("firewall_policy_name", firewall_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_ip_allocations_delete_request_initial( + resource_group_name: str, + ip_allocation_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ipAllocationName": _SERIALIZER.url("ip_allocation_name", ip_allocation_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ip_allocations_get_request( + resource_group_name: str, + ip_allocation_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ipAllocationName": _SERIALIZER.url("ip_allocation_name", ip_allocation_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ip_allocations_create_or_update_request_initial( + resource_group_name: str, + ip_allocation_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ipAllocationName": _SERIALIZER.url("ip_allocation_name", ip_allocation_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_ip_allocations_update_tags_request( + resource_group_name: str, + ip_allocation_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ipAllocationName": _SERIALIZER.url("ip_allocation_name", ip_allocation_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_ip_allocations_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/IpAllocations") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ip_allocations_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ip_groups_get_request( + resource_group_name: str, + ip_groups_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ipGroupsName": _SERIALIZER.url("ip_groups_name", ip_groups_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ip_groups_create_or_update_request_initial( + resource_group_name: str, + ip_groups_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ipGroupsName": _SERIALIZER.url("ip_groups_name", ip_groups_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_ip_groups_update_groups_request( + resource_group_name: str, + ip_groups_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ipGroupsName": _SERIALIZER.url("ip_groups_name", ip_groups_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_ip_groups_delete_request_initial( + resource_group_name: str, + ip_groups_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "ipGroupsName": _SERIALIZER.url("ip_groups_name", ip_groups_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ip_groups_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_ip_groups_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ipGroups") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancers_delete_request_initial( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancers_get_request( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancers_create_or_update_request_initial( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_load_balancers_update_tags_request( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_load_balancers_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/loadBalancers") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancers_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancers_swap_public_ip_addresses_request_initial( + location: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/setLoadBalancerFrontendPublicIpAddresses") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_load_balancers_list_inbound_nat_rule_port_mappings_request_initial( + group_name: str, + load_balancer_name: str, + backend_pool_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendPoolName}/queryInboundNatRulePortMapping") # pylint: disable=line-too-long + path_format_arguments = { + "groupName": _SERIALIZER.url("group_name", group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "backendPoolName": _SERIALIZER.url("backend_pool_name", backend_pool_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_load_balancer_backend_address_pools_list_request( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_backend_address_pools_get_request( + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "backendAddressPoolName": _SERIALIZER.url("backend_address_pool_name", backend_address_pool_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_backend_address_pools_create_or_update_request_initial( + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "backendAddressPoolName": _SERIALIZER.url("backend_address_pool_name", backend_address_pool_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_load_balancer_backend_address_pools_delete_request_initial( + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "backendAddressPoolName": _SERIALIZER.url("backend_address_pool_name", backend_address_pool_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_frontend_ip_configurations_list_request( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/frontendIPConfigurations") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_frontend_ip_configurations_get_request( + resource_group_name: str, + load_balancer_name: str, + frontend_ip_configuration_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/frontendIPConfigurations/{frontendIPConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "frontendIPConfigurationName": _SERIALIZER.url("frontend_ip_configuration_name", frontend_ip_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_inbound_nat_rules_list_request( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_inbound_nat_rules_delete_request_initial( + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "inboundNatRuleName": _SERIALIZER.url("inbound_nat_rule_name", inbound_nat_rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_inbound_nat_rules_get_request( + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "inboundNatRuleName": _SERIALIZER.url("inbound_nat_rule_name", inbound_nat_rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_inbound_nat_rules_create_or_update_request_initial( + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "inboundNatRuleName": _SERIALIZER.url("inbound_nat_rule_name", inbound_nat_rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_load_balancer_load_balancing_rules_list_request( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_load_balancing_rules_get_request( + resource_group_name: str, + load_balancer_name: str, + load_balancing_rule_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "loadBalancingRuleName": _SERIALIZER.url("load_balancing_rule_name", load_balancing_rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_outbound_rules_list_request( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/outboundRules") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_outbound_rules_get_request( + resource_group_name: str, + load_balancer_name: str, + outbound_rule_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/outboundRules/{outboundRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "outboundRuleName": _SERIALIZER.url("outbound_rule_name", outbound_rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_network_interfaces_list_request( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/networkInterfaces") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_probes_list_request( + resource_group_name: str, + load_balancer_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_load_balancer_probes_get_request( + resource_group_name: str, + load_balancer_name: str, + probe_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "loadBalancerName": _SERIALIZER.url("load_balancer_name", load_balancer_name, 'str'), + "probeName": _SERIALIZER.url("probe_name", probe_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_nat_gateways_delete_request_initial( + resource_group_name: str, + nat_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "natGatewayName": _SERIALIZER.url("nat_gateway_name", nat_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_nat_gateways_get_request( + resource_group_name: str, + nat_gateway_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "natGatewayName": _SERIALIZER.url("nat_gateway_name", nat_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_nat_gateways_create_or_update_request_initial( + resource_group_name: str, + nat_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "natGatewayName": _SERIALIZER.url("nat_gateway_name", nat_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_nat_gateways_update_tags_request( + resource_group_name: str, + nat_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "natGatewayName": _SERIALIZER.url("nat_gateway_name", nat_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_nat_gateways_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/natGateways") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_nat_gateways_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interface_ip_configurations_list_request( + resource_group_name: str, + network_interface_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/ipConfigurations") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interface_ip_configurations_get_request( + resource_group_name: str, + network_interface_name: str, + ip_configuration_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/ipConfigurations/{ipConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "ipConfigurationName": _SERIALIZER.url("ip_configuration_name", ip_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interface_load_balancers_list_request( + resource_group_name: str, + network_interface_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/loadBalancers") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interface_tap_configurations_delete_request_initial( + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "tapConfigurationName": _SERIALIZER.url("tap_configuration_name", tap_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interface_tap_configurations_get_request( + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "tapConfigurationName": _SERIALIZER.url("tap_configuration_name", tap_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_interface_tap_configurations_create_or_update_request_initial( + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "tapConfigurationName": _SERIALIZER.url("tap_configuration_name", tap_configuration_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_interface_tap_configurations_list_request( + resource_group_name: str, + network_interface_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkInterfaceName": _SERIALIZER.url("network_interface_name", network_interface_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_profiles_delete_request_initial( + resource_group_name: str, + network_profile_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkProfileName": _SERIALIZER.url("network_profile_name", network_profile_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_profiles_get_request( + resource_group_name: str, + network_profile_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkProfileName": _SERIALIZER.url("network_profile_name", network_profile_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_profiles_create_or_update_request( + resource_group_name: str, + network_profile_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkProfileName": _SERIALIZER.url("network_profile_name", network_profile_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_profiles_update_tags_request( + resource_group_name: str, + network_profile_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkProfileName": _SERIALIZER.url("network_profile_name", network_profile_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_profiles_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkProfiles") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_profiles_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_security_groups_delete_request_initial( + resource_group_name: str, + network_security_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_security_groups_get_request( + resource_group_name: str, + network_security_group_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_security_groups_create_or_update_request_initial( + resource_group_name: str, + network_security_group_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_security_groups_update_tags_request( + resource_group_name: str, + network_security_group_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_security_groups_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkSecurityGroups") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_security_groups_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_security_rules_delete_request_initial( + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "securityRuleName": _SERIALIZER.url("security_rule_name", security_rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_security_rules_get_request( + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "securityRuleName": _SERIALIZER.url("security_rule_name", security_rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_security_rules_create_or_update_request_initial( + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "securityRuleName": _SERIALIZER.url("security_rule_name", security_rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_security_rules_list_request( + resource_group_name: str, + network_security_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_default_security_rules_list_request( + resource_group_name: str, + network_security_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/defaultSecurityRules") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_default_security_rules_get_request( + resource_group_name: str, + network_security_group_name: str, + default_security_rule_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/defaultSecurityRules/{defaultSecurityRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkSecurityGroupName": _SERIALIZER.url("network_security_group_name", network_security_group_name, 'str'), + "defaultSecurityRuleName": _SERIALIZER.url("default_security_rule_name", default_security_rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_virtual_appliances_delete_request_initial( + resource_group_name: str, + network_virtual_appliance_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkVirtualApplianceName": _SERIALIZER.url("network_virtual_appliance_name", network_virtual_appliance_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_virtual_appliances_get_request( + resource_group_name: str, + network_virtual_appliance_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkVirtualApplianceName": _SERIALIZER.url("network_virtual_appliance_name", network_virtual_appliance_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_virtual_appliances_update_tags_request( + subscription_id: str, + resource_group_name: str, + network_virtual_appliance_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkVirtualApplianceName": _SERIALIZER.url("network_virtual_appliance_name", network_virtual_appliance_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_virtual_appliances_create_or_update_request_initial( + resource_group_name: str, + network_virtual_appliance_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkVirtualApplianceName": _SERIALIZER.url("network_virtual_appliance_name", network_virtual_appliance_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_virtual_appliances_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_virtual_appliances_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkVirtualAppliances") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_appliance_sites_delete_request_initial( + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkVirtualApplianceName": _SERIALIZER.url("network_virtual_appliance_name", network_virtual_appliance_name, 'str'), + "siteName": _SERIALIZER.url("site_name", site_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_appliance_sites_get_request( + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkVirtualApplianceName": _SERIALIZER.url("network_virtual_appliance_name", network_virtual_appliance_name, 'str'), + "siteName": _SERIALIZER.url("site_name", site_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_appliance_sites_create_or_update_request_initial( + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkVirtualApplianceName": _SERIALIZER.url("network_virtual_appliance_name", network_virtual_appliance_name, 'str'), + "siteName": _SERIALIZER.url("site_name", site_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_appliance_sites_list_request( + resource_group_name: str, + network_virtual_appliance_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkVirtualApplianceName": _SERIALIZER.url("network_virtual_appliance_name", network_virtual_appliance_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_appliance_skus_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkVirtualApplianceSkus") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_appliance_skus_get_request( + subscription_id: str, + sku_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkVirtualApplianceSkus/{skuName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "skuName": _SERIALIZER.url("sku_name", sku_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_inbound_security_rule_create_or_update_request_initial( + resource_group_name: str, + network_virtual_appliance_name: str, + rule_collection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/inboundSecurityRules/{ruleCollectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkVirtualApplianceName": _SERIALIZER.url("network_virtual_appliance_name", network_virtual_appliance_name, 'str'), + "ruleCollectionName": _SERIALIZER.url("rule_collection_name", rule_collection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_create_or_update_request( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_get_request( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_watchers_delete_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_watchers_update_tags_request( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_watchers_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkWatchers") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_network_watchers_get_topology_request( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/topology") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_verify_ip_flow_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/ipFlowVerify") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_get_next_hop_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/nextHop") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_get_vm_security_rules_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/securityGroupView") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_get_troubleshooting_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/troubleshoot") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_get_troubleshooting_result_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryTroubleshootResult") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_set_flow_log_configuration_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/configureFlowLog") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_get_flow_log_status_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryFlowLogStatus") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_check_connectivity_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectivityCheck") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_get_azure_reachability_report_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/azureReachabilityReport") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_list_available_providers_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/availableProvidersList") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_network_watchers_get_network_configuration_diagnostic_request_initial( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/networkConfigurationDiagnostic") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_packet_captures_create_request_initial( + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "packetCaptureName": _SERIALIZER.url("packet_capture_name", packet_capture_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_packet_captures_get_request( + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "packetCaptureName": _SERIALIZER.url("packet_capture_name", packet_capture_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_packet_captures_delete_request_initial( + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "packetCaptureName": _SERIALIZER.url("packet_capture_name", packet_capture_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_packet_captures_stop_request_initial( + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/stop") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "packetCaptureName": _SERIALIZER.url("packet_capture_name", packet_capture_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_packet_captures_get_status_request_initial( + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/queryStatus") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "packetCaptureName": _SERIALIZER.url("packet_capture_name", packet_capture_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_packet_captures_list_request( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_connection_monitors_create_or_update_request_initial( + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + migrate: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "connectionMonitorName": _SERIALIZER.url("connection_monitor_name", connection_monitor_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if migrate is not None: + _query_parameters['migrate'] = _SERIALIZER.query("migrate", migrate, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_connection_monitors_get_request( + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "connectionMonitorName": _SERIALIZER.url("connection_monitor_name", connection_monitor_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_connection_monitors_delete_request_initial( + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "connectionMonitorName": _SERIALIZER.url("connection_monitor_name", connection_monitor_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_connection_monitors_update_tags_request( + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "connectionMonitorName": _SERIALIZER.url("connection_monitor_name", connection_monitor_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_connection_monitors_stop_request_initial( + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/stop") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "connectionMonitorName": _SERIALIZER.url("connection_monitor_name", connection_monitor_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_connection_monitors_start_request_initial( + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/start") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "connectionMonitorName": _SERIALIZER.url("connection_monitor_name", connection_monitor_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_connection_monitors_query_request_initial( + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/query") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "connectionMonitorName": _SERIALIZER.url("connection_monitor_name", connection_monitor_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_connection_monitors_list_request( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_flow_logs_create_or_update_request_initial( + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "flowLogName": _SERIALIZER.url("flow_log_name", flow_log_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_flow_logs_update_tags_request( + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "flowLogName": _SERIALIZER.url("flow_log_name", flow_log_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_flow_logs_get_request( + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "flowLogName": _SERIALIZER.url("flow_log_name", flow_log_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_flow_logs_delete_request_initial( + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "flowLogName": _SERIALIZER.url("flow_log_name", flow_log_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_flow_logs_list_request( + resource_group_name: str, + network_watcher_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "networkWatcherName": _SERIALIZER.url("network_watcher_name", network_watcher_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_operations_list_request( + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/providers/Microsoft.Network/operations") + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_endpoints_delete_request_initial( + resource_group_name: str, + private_endpoint_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "privateEndpointName": _SERIALIZER.url("private_endpoint_name", private_endpoint_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_endpoints_get_request( + resource_group_name: str, + private_endpoint_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "privateEndpointName": _SERIALIZER.url("private_endpoint_name", private_endpoint_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_endpoints_create_or_update_request_initial( + resource_group_name: str, + private_endpoint_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "privateEndpointName": _SERIALIZER.url("private_endpoint_name", private_endpoint_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_private_endpoints_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_endpoints_list_by_subscription_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/privateEndpoints") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_available_private_endpoint_types_list_request( + location: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availablePrivateEndpointTypes") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_available_private_endpoint_types_list_by_resource_group_request( + location: str, + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availablePrivateEndpointTypes") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_dns_zone_groups_delete_request_initial( + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "privateEndpointName": _SERIALIZER.url("private_endpoint_name", private_endpoint_name, 'str'), + "privateDnsZoneGroupName": _SERIALIZER.url("private_dns_zone_group_name", private_dns_zone_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_dns_zone_groups_get_request( + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "privateEndpointName": _SERIALIZER.url("private_endpoint_name", private_endpoint_name, 'str'), + "privateDnsZoneGroupName": _SERIALIZER.url("private_dns_zone_group_name", private_dns_zone_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_dns_zone_groups_create_or_update_request_initial( + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "privateEndpointName": _SERIALIZER.url("private_endpoint_name", private_endpoint_name, 'str'), + "privateDnsZoneGroupName": _SERIALIZER.url("private_dns_zone_group_name", private_dns_zone_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_private_dns_zone_groups_list_request( + private_endpoint_name: str, + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups") # pylint: disable=line-too-long + path_format_arguments = { + "privateEndpointName": _SERIALIZER.url("private_endpoint_name", private_endpoint_name, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_link_services_delete_request_initial( + resource_group_name: str, + service_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceName": _SERIALIZER.url("service_name", service_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_link_services_get_request( + resource_group_name: str, + service_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceName": _SERIALIZER.url("service_name", service_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_link_services_create_or_update_request_initial( + resource_group_name: str, + service_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceName": _SERIALIZER.url("service_name", service_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_private_link_services_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_link_services_list_by_subscription_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/privateLinkServices") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_link_services_get_private_endpoint_connection_request( + resource_group_name: str, + service_name: str, + pe_connection_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceName": _SERIALIZER.url("service_name", service_name, 'str'), + "peConnectionName": _SERIALIZER.url("pe_connection_name", pe_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_link_services_update_private_endpoint_connection_request( + resource_group_name: str, + service_name: str, + pe_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceName": _SERIALIZER.url("service_name", service_name, 'str'), + "peConnectionName": _SERIALIZER.url("pe_connection_name", pe_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_private_link_services_delete_private_endpoint_connection_request_initial( + resource_group_name: str, + service_name: str, + pe_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceName": _SERIALIZER.url("service_name", service_name, 'str'), + "peConnectionName": _SERIALIZER.url("pe_connection_name", pe_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_link_services_list_private_endpoint_connections_request( + resource_group_name: str, + service_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceName": _SERIALIZER.url("service_name", service_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_link_services_check_private_link_service_visibility_request_initial( + location: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_private_link_services_check_private_link_service_visibility_by_resource_group_request_initial( + location: str, + resource_group_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_private_link_services_list_auto_approved_private_link_services_request( + location: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/autoApprovedPrivateLinkServices") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_private_link_services_list_auto_approved_private_link_services_by_resource_group_request( + location: str, + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/autoApprovedPrivateLinkServices") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_prefixes_delete_request_initial( + resource_group_name: str, + public_ip_prefix_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "publicIpPrefixName": _SERIALIZER.url("public_ip_prefix_name", public_ip_prefix_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_prefixes_get_request( + resource_group_name: str, + public_ip_prefix_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "publicIpPrefixName": _SERIALIZER.url("public_ip_prefix_name", public_ip_prefix_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_prefixes_create_or_update_request_initial( + resource_group_name: str, + public_ip_prefix_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "publicIpPrefixName": _SERIALIZER.url("public_ip_prefix_name", public_ip_prefix_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_public_ip_prefixes_update_tags_request( + resource_group_name: str, + public_ip_prefix_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "publicIpPrefixName": _SERIALIZER.url("public_ip_prefix_name", public_ip_prefix_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_public_ip_prefixes_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/publicIPPrefixes") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_public_ip_prefixes_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_filters_delete_request_initial( + resource_group_name: str, + route_filter_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeFilterName": _SERIALIZER.url("route_filter_name", route_filter_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_filters_get_request( + resource_group_name: str, + route_filter_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeFilterName": _SERIALIZER.url("route_filter_name", route_filter_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_filters_create_or_update_request_initial( + resource_group_name: str, + route_filter_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeFilterName": _SERIALIZER.url("route_filter_name", route_filter_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_route_filters_update_tags_request( + resource_group_name: str, + route_filter_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeFilterName": _SERIALIZER.url("route_filter_name", route_filter_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_route_filters_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_filters_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/routeFilters") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_filter_rules_delete_request_initial( + resource_group_name: str, + route_filter_name: str, + rule_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeFilterName": _SERIALIZER.url("route_filter_name", route_filter_name, 'str'), + "ruleName": _SERIALIZER.url("rule_name", rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_filter_rules_get_request( + resource_group_name: str, + route_filter_name: str, + rule_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeFilterName": _SERIALIZER.url("route_filter_name", route_filter_name, 'str'), + "ruleName": _SERIALIZER.url("rule_name", rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_filter_rules_create_or_update_request_initial( + resource_group_name: str, + route_filter_name: str, + rule_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeFilterName": _SERIALIZER.url("route_filter_name", route_filter_name, 'str'), + "ruleName": _SERIALIZER.url("rule_name", rule_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_route_filter_rules_list_by_route_filter_request( + resource_group_name: str, + route_filter_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeFilterName": _SERIALIZER.url("route_filter_name", route_filter_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_tables_delete_request_initial( + resource_group_name: str, + route_table_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_tables_get_request( + resource_group_name: str, + route_table_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_tables_create_or_update_request_initial( + resource_group_name: str, + route_table_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_route_tables_update_tags_request( + resource_group_name: str, + route_table_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_route_tables_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_route_tables_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/routeTables") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_routes_delete_request_initial( + resource_group_name: str, + route_table_name: str, + route_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + "routeName": _SERIALIZER.url("route_name", route_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_routes_get_request( + resource_group_name: str, + route_table_name: str, + route_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + "routeName": _SERIALIZER.url("route_name", route_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_routes_create_or_update_request_initial( + resource_group_name: str, + route_table_name: str, + route_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + "routeName": _SERIALIZER.url("route_name", route_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_routes_list_request( + resource_group_name: str, + route_table_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_security_partner_providers_delete_request_initial( + resource_group_name: str, + security_partner_provider_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "securityPartnerProviderName": _SERIALIZER.url("security_partner_provider_name", security_partner_provider_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_security_partner_providers_get_request( + resource_group_name: str, + security_partner_provider_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "securityPartnerProviderName": _SERIALIZER.url("security_partner_provider_name", security_partner_provider_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_security_partner_providers_create_or_update_request_initial( + resource_group_name: str, + security_partner_provider_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "securityPartnerProviderName": _SERIALIZER.url("security_partner_provider_name", security_partner_provider_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_security_partner_providers_update_tags_request( + resource_group_name: str, + security_partner_provider_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "securityPartnerProviderName": _SERIALIZER.url("security_partner_provider_name", security_partner_provider_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_security_partner_providers_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_security_partner_providers_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/securityPartnerProviders") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_bgp_service_communities_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/bgpServiceCommunities") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_endpoint_policies_delete_request_initial( + resource_group_name: str, + service_endpoint_policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceEndpointPolicyName": _SERIALIZER.url("service_endpoint_policy_name", service_endpoint_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_endpoint_policies_get_request( + resource_group_name: str, + service_endpoint_policy_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceEndpointPolicyName": _SERIALIZER.url("service_endpoint_policy_name", service_endpoint_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_endpoint_policies_create_or_update_request_initial( + resource_group_name: str, + service_endpoint_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceEndpointPolicyName": _SERIALIZER.url("service_endpoint_policy_name", service_endpoint_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_service_endpoint_policies_update_tags_request( + resource_group_name: str, + service_endpoint_policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceEndpointPolicyName": _SERIALIZER.url("service_endpoint_policy_name", service_endpoint_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_service_endpoint_policies_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ServiceEndpointPolicies") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_endpoint_policies_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_endpoint_policy_definitions_delete_request_initial( + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceEndpointPolicyName": _SERIALIZER.url("service_endpoint_policy_name", service_endpoint_policy_name, 'str'), + "serviceEndpointPolicyDefinitionName": _SERIALIZER.url("service_endpoint_policy_definition_name", service_endpoint_policy_definition_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_endpoint_policy_definitions_get_request( + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceEndpointPolicyName": _SERIALIZER.url("service_endpoint_policy_name", service_endpoint_policy_name, 'str'), + "serviceEndpointPolicyDefinitionName": _SERIALIZER.url("service_endpoint_policy_definition_name", service_endpoint_policy_definition_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_endpoint_policy_definitions_create_or_update_request_initial( + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceEndpointPolicyName": _SERIALIZER.url("service_endpoint_policy_name", service_endpoint_policy_name, 'str'), + "serviceEndpointPolicyDefinitionName": _SERIALIZER.url("service_endpoint_policy_definition_name", service_endpoint_policy_definition_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_service_endpoint_policy_definitions_list_by_resource_group_request( + resource_group_name: str, + service_endpoint_policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "serviceEndpointPolicyName": _SERIALIZER.url("service_endpoint_policy_name", service_endpoint_policy_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_tags_list_request( + location: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/serviceTags") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_tag_information_list_request( + location: str, + subscription_id: str, + *, + no_address_prefixes: Optional[bool] = None, + tag_name: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/serviceTagDetails") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if no_address_prefixes is not None: + _query_parameters['noAddressPrefixes'] = _SERIALIZER.query("no_address_prefixes", no_address_prefixes, 'bool') + if tag_name is not None: + _query_parameters['tagName'] = _SERIALIZER.query("tag_name", tag_name, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_usages_list_request( + location: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/usages") # pylint: disable=line-too-long + path_format_arguments = { + "location": _SERIALIZER.url("location", location, 'str', pattern=r'^[-\w\._ ]+$'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_networks_delete_request_initial( + resource_group_name: str, + virtual_network_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_networks_get_request( + resource_group_name: str, + virtual_network_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_networks_create_or_update_request_initial( + resource_group_name: str, + virtual_network_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_networks_update_tags_request( + resource_group_name: str, + virtual_network_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_networks_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualNetworks") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_networks_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_networks_check_ip_address_availability_request( + resource_group_name: str, + virtual_network_name: str, + subscription_id: str, + *, + ip_address: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/CheckIPAddressAvailability") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['ipAddress'] = _SERIALIZER.query("ip_address", ip_address, 'str') + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_networks_list_usage_request( + resource_group_name: str, + virtual_network_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/usages") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_subnets_delete_request_initial( + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subnetName": _SERIALIZER.url("subnet_name", subnet_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_subnets_get_request( + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subnetName": _SERIALIZER.url("subnet_name", subnet_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_subnets_create_or_update_request_initial( + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subnetName": _SERIALIZER.url("subnet_name", subnet_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_subnets_prepare_network_policies_request_initial( + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/PrepareNetworkPolicies") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subnetName": _SERIALIZER.url("subnet_name", subnet_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_subnets_unprepare_network_policies_request_initial( + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/UnprepareNetworkPolicies") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subnetName": _SERIALIZER.url("subnet_name", subnet_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_subnets_list_request( + resource_group_name: str, + virtual_network_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_resource_navigation_links_list_request( + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/ResourceNavigationLinks") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subnetName": _SERIALIZER.url("subnet_name", subnet_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_service_association_links_list_request( + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/ServiceAssociationLinks") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subnetName": _SERIALIZER.url("subnet_name", subnet_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_peerings_delete_request_initial( + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "virtualNetworkPeeringName": _SERIALIZER.url("virtual_network_peering_name", virtual_network_peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_peerings_get_request( + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "virtualNetworkPeeringName": _SERIALIZER.url("virtual_network_peering_name", virtual_network_peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_peerings_create_or_update_request_initial( + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + sync_remote_address_space: Optional[Union[str, "_models.SyncRemoteAddressSpace"]] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "virtualNetworkPeeringName": _SERIALIZER.url("virtual_network_peering_name", virtual_network_peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + if sync_remote_address_space is not None: + _query_parameters['syncRemoteAddressSpace'] = _SERIALIZER.query("sync_remote_address_space", sync_remote_address_space, 'str') + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_peerings_list_request( + resource_group_name: str, + virtual_network_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkName": _SERIALIZER.url("virtual_network_name", virtual_network_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_create_or_update_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateways_get_request( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_delete_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_update_tags_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateways_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_list_connections_request( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/connections") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_reset_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + gateway_vip: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/reset") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + if gateway_vip is not None: + _query_parameters['gatewayVip'] = _SERIALIZER.query("gateway_vip", gateway_vip, 'str') + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_reset_vpn_client_shared_key_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/resetvpnclientsharedkey") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_generatevpnclientpackage_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnclientpackage") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateways_generate_vpn_profile_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateways_get_vpn_profile_package_url_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_get_bgp_peer_status_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + peer: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getBgpPeerStatus") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + if peer is not None: + _query_parameters['peer'] = _SERIALIZER.query("peer", peer, 'str') + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_supported_vpn_devices_request( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/supportedvpndevices") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_get_learned_routes_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getLearnedRoutes") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_get_advertised_routes_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + peer: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getAdvertisedRoutes") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['peer'] = _SERIALIZER.query("peer", peer, 'str') + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_set_vpnclient_ipsec_parameters_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/setvpnclientipsecparameters") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateways_get_vpnclient_ipsec_parameters_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnclientipsecparameters") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_vpn_device_configuration_script_request( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/vpndeviceconfigurationscript") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateways_start_packet_capture_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/startPacketCapture") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateways_stop_packet_capture_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/stopPacketCapture") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateways_get_vpnclient_connection_health_request_initial( + resource_group_name: str, + virtual_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getVpnClientConnectionHealth") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateways_disconnect_virtual_network_gateway_vpn_connections_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_network_gateway_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/disconnectVirtualNetworkGatewayVpnConnections") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateway_connections_create_or_update_request_initial( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateway_connections_get_request( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateway_connections_delete_request_initial( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateway_connections_update_tags_request_initial( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateway_connections_set_shared_key_request_initial( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateway_connections_get_shared_key_request( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateway_connections_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateway_connections_reset_shared_key_request_initial( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey/reset") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateway_connections_start_packet_capture_request_initial( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/startPacketCapture") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateway_connections_stop_packet_capture_request_initial( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/stopPacketCapture") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateway_connections_get_ike_sas_request_initial( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/getikesas") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateway_connections_reset_connection_request_initial( + resource_group_name: str, + virtual_network_gateway_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/resetconnection") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayConnectionName": _SERIALIZER.url("virtual_network_gateway_connection_name", virtual_network_gateway_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_local_network_gateways_create_or_update_request_initial( + resource_group_name: str, + local_network_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "localNetworkGatewayName": _SERIALIZER.url("local_network_gateway_name", local_network_gateway_name, 'str', min_length=1), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_local_network_gateways_get_request( + resource_group_name: str, + local_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "localNetworkGatewayName": _SERIALIZER.url("local_network_gateway_name", local_network_gateway_name, 'str', min_length=1), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_local_network_gateways_delete_request_initial( + resource_group_name: str, + local_network_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "localNetworkGatewayName": _SERIALIZER.url("local_network_gateway_name", local_network_gateway_name, 'str', min_length=1), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_local_network_gateways_update_tags_request( + resource_group_name: str, + local_network_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "localNetworkGatewayName": _SERIALIZER.url("local_network_gateway_name", local_network_gateway_name, 'str', min_length=1), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_local_network_gateways_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateway_nat_rules_get_request( + subscription_id: str, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "natRuleName": _SERIALIZER.url("nat_rule_name", nat_rule_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateway_nat_rules_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "natRuleName": _SERIALIZER.url("nat_rule_name", nat_rule_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_gateway_nat_rules_delete_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + "natRuleName": _SERIALIZER.url("nat_rule_name", nat_rule_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_gateway_nat_rules_list_by_virtual_network_gateway_request( + subscription_id: str, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualNetworkGatewayName": _SERIALIZER.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_taps_delete_request_initial( + resource_group_name: str, + tap_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "tapName": _SERIALIZER.url("tap_name", tap_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_taps_get_request( + resource_group_name: str, + tap_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "tapName": _SERIALIZER.url("tap_name", tap_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_taps_create_or_update_request_initial( + resource_group_name: str, + tap_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "tapName": _SERIALIZER.url("tap_name", tap_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_taps_update_tags_request( + resource_group_name: str, + tap_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "tapName": _SERIALIZER.url("tap_name", tap_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_network_taps_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualNetworkTaps") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_network_taps_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_routers_delete_request_initial( + resource_group_name: str, + virtual_router_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualRouterName": _SERIALIZER.url("virtual_router_name", virtual_router_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_routers_get_request( + resource_group_name: str, + virtual_router_name: str, + subscription_id: str, + *, + expand: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualRouterName": _SERIALIZER.url("virtual_router_name", virtual_router_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + if expand is not None: + _query_parameters['$expand'] = _SERIALIZER.query("expand", expand, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_routers_create_or_update_request_initial( + resource_group_name: str, + virtual_router_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualRouterName": _SERIALIZER.url("virtual_router_name", virtual_router_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_routers_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_routers_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualRouters") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_router_peerings_delete_request_initial( + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualRouterName": _SERIALIZER.url("virtual_router_name", virtual_router_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_router_peerings_get_request( + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualRouterName": _SERIALIZER.url("virtual_router_name", virtual_router_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_router_peerings_create_or_update_request_initial( + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualRouterName": _SERIALIZER.url("virtual_router_name", virtual_router_name, 'str'), + "peeringName": _SERIALIZER.url("peering_name", peering_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_router_peerings_list_request( + resource_group_name: str, + virtual_router_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualRouterName": _SERIALIZER.url("virtual_router_name", virtual_router_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_wans_get_request( + resource_group_name: str, + virtual_wan_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "VirtualWANName": _SERIALIZER.url("virtual_wan_name", virtual_wan_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_wans_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_wan_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "VirtualWANName": _SERIALIZER.url("virtual_wan_name", virtual_wan_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_wans_update_tags_request( + subscription_id: str, + resource_group_name: str, + virtual_wan_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "VirtualWANName": _SERIALIZER.url("virtual_wan_name", virtual_wan_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_wans_delete_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "VirtualWANName": _SERIALIZER.url("virtual_wan_name", virtual_wan_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_wans_list_by_resource_group_request( + subscription_id: str, + resource_group_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_wans_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualWans") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_sites_get_request( + subscription_id: str, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnSiteName": _SERIALIZER.url("vpn_site_name", vpn_site_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_sites_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + vpn_site_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnSiteName": _SERIALIZER.url("vpn_site_name", vpn_site_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_sites_update_tags_request( + subscription_id: str, + resource_group_name: str, + vpn_site_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnSiteName": _SERIALIZER.url("vpn_site_name", vpn_site_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_sites_delete_request_initial( + subscription_id: str, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnSiteName": _SERIALIZER.url("vpn_site_name", vpn_site_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_sites_list_by_resource_group_request( + subscription_id: str, + resource_group_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_sites_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/vpnSites") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_site_links_get_request( + subscription_id: str, + resource_group_name: str, + vpn_site_name: str, + vpn_site_link_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}/vpnSiteLinks/{vpnSiteLinkName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnSiteName": _SERIALIZER.url("vpn_site_name", vpn_site_name, 'str'), + "vpnSiteLinkName": _SERIALIZER.url("vpn_site_link_name", vpn_site_link_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_site_links_list_by_vpn_site_request( + subscription_id: str, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}/vpnSiteLinks") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnSiteName": _SERIALIZER.url("vpn_site_name", vpn_site_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_sites_configuration_download_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_wan_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnConfiguration") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualWANName": _SERIALIZER.url("virtual_wan_name", virtual_wan_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_server_configurations_get_request( + subscription_id: str, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnServerConfigurationName": _SERIALIZER.url("vpn_server_configuration_name", vpn_server_configuration_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_server_configurations_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + vpn_server_configuration_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnServerConfigurationName": _SERIALIZER.url("vpn_server_configuration_name", vpn_server_configuration_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_server_configurations_update_tags_request( + subscription_id: str, + resource_group_name: str, + vpn_server_configuration_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnServerConfigurationName": _SERIALIZER.url("vpn_server_configuration_name", vpn_server_configuration_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_server_configurations_delete_request_initial( + subscription_id: str, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnServerConfigurationName": _SERIALIZER.url("vpn_server_configuration_name", vpn_server_configuration_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_server_configurations_list_by_resource_group_request( + subscription_id: str, + resource_group_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_server_configurations_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/vpnServerConfigurations") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_configuration_policy_groups_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnServerConfigurationName": _SERIALIZER.url("vpn_server_configuration_name", vpn_server_configuration_name, 'str'), + "configurationPolicyGroupName": _SERIALIZER.url("configuration_policy_group_name", configuration_policy_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_configuration_policy_groups_delete_request_initial( + subscription_id: str, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnServerConfigurationName": _SERIALIZER.url("vpn_server_configuration_name", vpn_server_configuration_name, 'str'), + "configurationPolicyGroupName": _SERIALIZER.url("configuration_policy_group_name", configuration_policy_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_configuration_policy_groups_get_request( + subscription_id: str, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnServerConfigurationName": _SERIALIZER.url("vpn_server_configuration_name", vpn_server_configuration_name, 'str'), + "configurationPolicyGroupName": _SERIALIZER.url("configuration_policy_group_name", configuration_policy_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_configuration_policy_groups_list_by_vpn_server_configuration_request( + subscription_id: str, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "vpnServerConfigurationName": _SERIALIZER.url("vpn_server_configuration_name", vpn_server_configuration_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hubs_get_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hubs_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_hubs_update_tags_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_hubs_delete_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hubs_list_by_resource_group_request( + subscription_id: str, + resource_group_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hubs_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualHubs") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hubs_get_effective_virtual_hub_routes_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/effectiveRoutes") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_hub_virtual_network_connections_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_hub_virtual_network_connections_delete_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_hub_virtual_network_connections_get_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_hub_virtual_network_connections_list_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_gateways_get_request( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_gateways_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_gateways_update_tags_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_gateways_delete_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_gateways_reset_request_initial( + resource_group_name: str, + gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/reset") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_gateways_start_packet_capture_request_initial( + resource_group_name: str, + gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/startpacketcapture") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_gateways_stop_packet_capture_request_initial( + resource_group_name: str, + gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/stoppacketcapture") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_gateways_list_by_resource_group_request( + subscription_id: str, + resource_group_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_gateways_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/vpnGateways") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_link_connections_reset_connection_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/resetconnection") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "linkConnectionName": _SERIALIZER.url("link_connection_name", link_connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_link_connections_get_ike_sas_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/getikesas") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "linkConnectionName": _SERIALIZER.url("link_connection_name", link_connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_link_connections_list_by_vpn_connection_request( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_connections_get_request( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_connections_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + connection_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_connections_delete_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_connections_start_packet_capture_request_initial( + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/startpacketcapture") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "vpnConnectionName": _SERIALIZER.url("vpn_connection_name", vpn_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_connections_stop_packet_capture_request_initial( + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/stoppacketcapture") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "vpnConnectionName": _SERIALIZER.url("vpn_connection_name", vpn_connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_connections_list_by_vpn_gateway_request( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_vpn_site_link_connections_get_request( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "linkConnectionName": _SERIALIZER.url("link_connection_name", link_connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_nat_rules_get_request( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "natRuleName": _SERIALIZER.url("nat_rule_name", nat_rule_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_nat_rules_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "natRuleName": _SERIALIZER.url("nat_rule_name", nat_rule_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_nat_rules_delete_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "natRuleName": _SERIALIZER.url("nat_rule_name", nat_rule_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_nat_rules_list_by_vpn_gateway_request( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_p2_svpn_gateways_get_request( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_p2_svpn_gateways_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_p2_svpn_gateways_update_tags_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_p2_svpn_gateways_delete_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_p2_svpn_gateways_list_by_resource_group_request( + subscription_id: str, + resource_group_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_p2_svpn_gateways_list_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/p2svpnGateways") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_p2_svpn_gateways_reset_request_initial( + resource_group_name: str, + gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/reset") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_p2_svpn_gateways_generate_vpn_profile_request_initial( + resource_group_name: str, + gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/generatevpnprofile") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_p2_svpn_gateways_get_p2_s_vpn_connection_health_request_initial( + resource_group_name: str, + gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealth") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_p2_svpn_gateways_get_p2_s_vpn_connection_health_detailed_request_initial( + subscription_id: str, + resource_group_name: str, + gateway_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealthDetailed") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "gatewayName": _SERIALIZER.url("gateway_name", gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_p2_svpn_gateways_disconnect_p2_s_vpn_connections_request_initial( + subscription_id: str, + resource_group_name: str, + p2_s_vpn_gateway_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{p2sVpnGatewayName}/disconnectP2sVpnConnections") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "p2sVpnGatewayName": _SERIALIZER.url("p2_s_vpn_gateway_name", p2_s_vpn_gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_vpn_server_configurations_associated_with_virtual_wan_list_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnServerConfigurations") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualWANName": _SERIALIZER.url("virtual_wan_name", virtual_wan_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_route_table_v2_s_get_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_route_table_v2_s_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_hub_route_table_v2_s_delete_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_route_table_v2_s_list_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_gateways_list_by_subscription_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteGateways") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_gateways_list_by_resource_group_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_gateways_create_or_update_request_initial( + resource_group_name: str, + express_route_gateway_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRouteGatewayName": _SERIALIZER.url("express_route_gateway_name", express_route_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_gateways_update_tags_request_initial( + subscription_id: str, + resource_group_name: str, + express_route_gateway_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRouteGatewayName": _SERIALIZER.url("express_route_gateway_name", express_route_gateway_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PATCH", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_gateways_get_request( + resource_group_name: str, + express_route_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRouteGatewayName": _SERIALIZER.url("express_route_gateway_name", express_route_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_gateways_delete_request_initial( + resource_group_name: str, + express_route_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRouteGatewayName": _SERIALIZER.url("express_route_gateway_name", express_route_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_connections_create_or_update_request_initial( + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRouteGatewayName": _SERIALIZER.url("express_route_gateway_name", express_route_gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_express_route_connections_get_request( + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRouteGatewayName": _SERIALIZER.url("express_route_gateway_name", express_route_gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_connections_delete_request_initial( + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRouteGatewayName": _SERIALIZER.url("express_route_gateway_name", express_route_gateway_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_express_route_connections_list_request( + resource_group_name: str, + express_route_gateway_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "expressRouteGatewayName": _SERIALIZER.url("express_route_gateway_name", express_route_gateway_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_bgp_connection_get_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_bgp_connection_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_hub_bgp_connection_delete_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_bgp_connections_list_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_bgp_connections_list_learned_routes_request_initial( + resource_group_name: str, + hub_name: str, + connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/learnedRoutes") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "hubName": _SERIALIZER.url("hub_name", hub_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_bgp_connections_list_advertised_routes_request_initial( + resource_group_name: str, + hub_name: str, + connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/advertisedRoutes") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "hubName": _SERIALIZER.url("hub_name", hub_name, 'str'), + "connectionName": _SERIALIZER.url("connection_name", connection_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="POST", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_ip_configuration_get_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "ipConfigName": _SERIALIZER.url("ip_config_name", ip_config_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_ip_configuration_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "ipConfigName": _SERIALIZER.url("ip_config_name", ip_config_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_virtual_hub_ip_configuration_delete_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "ipConfigName": _SERIALIZER.url("ip_config_name", ip_config_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_virtual_hub_ip_configuration_list_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_hub_route_tables_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_hub_route_tables_get_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_hub_route_tables_delete_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "routeTableName": _SERIALIZER.url("route_table_name", route_table_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_hub_route_tables_list_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_routing_intent_create_or_update_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "routingIntentName": _SERIALIZER.url("routing_intent_name", routing_intent_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_routing_intent_get_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "routingIntentName": _SERIALIZER.url("routing_intent_name", routing_intent_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_routing_intent_delete_request_initial( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + "routingIntentName": _SERIALIZER.url("routing_intent_name", routing_intent_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_routing_intent_list_request( + subscription_id: str, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "virtualHubName": _SERIALIZER.url("virtual_hub_name", virtual_hub_name, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_web_application_firewall_policies_list_request( + resource_group_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_web_application_firewall_policies_list_all_request( + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies") # pylint: disable=line-too-long + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_web_application_firewall_policies_get_request( + resource_group_name: str, + policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "policyName": _SERIALIZER.url("policy_name", policy_name, 'str', max_length=128, min_length=0), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="GET", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + + +def build_web_application_firewall_policies_create_or_update_request( + resource_group_name: str, + policy_name: str, + subscription_id: str, + *, + json: JSONType = None, + content: Any = None, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', None) # type: Optional[str] + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "policyName": _SERIALIZER.url("policy_name", policy_name, 'str', max_length=128, min_length=0), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + if content_type is not None: + _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="PUT", + url=_url, + params=_query_parameters, + headers=_header_parameters, + json=json, + content=content, + **kwargs + ) + + +def build_web_application_firewall_policies_delete_request_initial( + resource_group_name: str, + policy_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + accept = "application/json" + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}") # pylint: disable=line-too-long + path_format_arguments = { + "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str'), + "policyName": _SERIALIZER.url("policy_name", policy_name, 'str', max_length=128, min_length=0), + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), + } + + _url = _format_url_section(_url, **path_format_arguments) + + # Construct parameters + _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] + _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') + + # Construct headers + _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] + _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') + + return HttpRequest( + method="DELETE", + url=_url, + params=_query_parameters, + headers=_header_parameters, + **kwargs + ) + +class ApplicationGatewaysOperations(object): # pylint: disable=too-many-public-methods + """ApplicationGatewaysOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_delete_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> "_models.ApplicationGateway": + """Gets the specified application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_get_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + application_gateway_name: str, + parameters: "_models.ApplicationGateway", + **kwargs: Any + ) -> "_models.ApplicationGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ApplicationGateway') + + request = build_application_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + application_gateway_name: str, + parameters: "_models.ApplicationGateway", + **kwargs: Any + ) -> LROPoller["_models.ApplicationGateway"]: + """Creates or updates the specified application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param parameters: Parameters supplied to the create or update application gateway operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ApplicationGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ApplicationGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + application_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ApplicationGateway": + """Updates the specified application gateway tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param parameters: Parameters supplied to update application gateway tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_application_gateways_update_tags_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ApplicationGatewayListResult"]: + """Lists all application gateways in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.ApplicationGatewayListResult"]: + """Gets all the application gateways in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateways_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateways_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGateways"} # type: ignore + + def _start_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_start_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._start_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _start_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/start"} # type: ignore + + + @distributed_trace + def begin_start( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Starts the specified application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._start_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/start"} # type: ignore + + def _stop_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_stop_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._stop_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _stop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/stop"} # type: ignore + + + @distributed_trace + def begin_stop( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Stops the specified application gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._stop_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/stop"} # type: ignore + + def _backend_health_initial( + self, + resource_group_name: str, + application_gateway_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> Optional["_models.ApplicationGatewayBackendHealth"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ApplicationGatewayBackendHealth"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_backend_health_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self._backend_health_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ApplicationGatewayBackendHealth', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _backend_health_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/backendhealth"} # type: ignore + + + @distributed_trace + def begin_backend_health( + self, + resource_group_name: str, + application_gateway_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> LROPoller["_models.ApplicationGatewayBackendHealth"]: + """Gets the backend health of the specified application gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param expand: Expands BackendAddressPool and BackendHttpSettings referenced in backend health. + Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ApplicationGatewayBackendHealth or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealth] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayBackendHealth"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._backend_health_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + expand=expand, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationGatewayBackendHealth', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_backend_health.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/backendhealth"} # type: ignore + + def _backend_health_on_demand_initial( + self, + resource_group_name: str, + application_gateway_name: str, + probe_request: "_models.ApplicationGatewayOnDemandProbe", + expand: Optional[str] = None, + **kwargs: Any + ) -> Optional["_models.ApplicationGatewayBackendHealthOnDemand"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ApplicationGatewayBackendHealthOnDemand"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(probe_request, 'ApplicationGatewayOnDemandProbe') + + request = build_application_gateways_backend_health_on_demand_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + expand=expand, + template_url=self._backend_health_on_demand_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ApplicationGatewayBackendHealthOnDemand', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _backend_health_on_demand_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/getBackendHealthOnDemand"} # type: ignore + + + @distributed_trace + def begin_backend_health_on_demand( + self, + resource_group_name: str, + application_gateway_name: str, + probe_request: "_models.ApplicationGatewayOnDemandProbe", + expand: Optional[str] = None, + **kwargs: Any + ) -> LROPoller["_models.ApplicationGatewayBackendHealthOnDemand"]: + """Gets the backend health for given combination of backend pool and http setting of the specified + application gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param probe_request: Request body for on-demand test probe operation. + :type probe_request: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayOnDemandProbe + :param expand: Expands BackendAddressPool and BackendHttpSettings referenced in backend health. + Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ApplicationGatewayBackendHealthOnDemand + or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayBackendHealthOnDemand] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayBackendHealthOnDemand"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._backend_health_on_demand_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + probe_request=probe_request, + expand=expand, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationGatewayBackendHealthOnDemand', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_backend_health_on_demand.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/getBackendHealthOnDemand"} # type: ignore + + @distributed_trace + def list_available_server_variables( + self, + **kwargs: Any + ) -> List[str]: + """Lists all available server variables. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: list of str, or the result of cls(response) + :rtype: list[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[List[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_server_variables_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_server_variables.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('[str]', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_server_variables.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableServerVariables"} # type: ignore + + + @distributed_trace + def list_available_request_headers( + self, + **kwargs: Any + ) -> List[str]: + """Lists all available request headers. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: list of str, or the result of cls(response) + :rtype: list[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[List[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_request_headers_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_request_headers.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('[str]', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_request_headers.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableRequestHeaders"} # type: ignore + + + @distributed_trace + def list_available_response_headers( + self, + **kwargs: Any + ) -> List[str]: + """Lists all available response headers. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: list of str, or the result of cls(response) + :rtype: list[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[List[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_response_headers_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_response_headers.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('[str]', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_response_headers.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableResponseHeaders"} # type: ignore + + + @distributed_trace + def list_available_waf_rule_sets( + self, + **kwargs: Any + ) -> "_models.ApplicationGatewayAvailableWafRuleSetsResult": + """Lists all available web application firewall rule sets. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGatewayAvailableWafRuleSetsResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAvailableWafRuleSetsResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayAvailableWafRuleSetsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_waf_rule_sets_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_waf_rule_sets.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGatewayAvailableWafRuleSetsResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_waf_rule_sets.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets"} # type: ignore + + + @distributed_trace + def list_available_ssl_options( + self, + **kwargs: Any + ) -> "_models.ApplicationGatewayAvailableSslOptions": + """Lists available Ssl options for configuring Ssl policy. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGatewayAvailableSslOptions, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAvailableSslOptions + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayAvailableSslOptions"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_list_available_ssl_options_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_ssl_options.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGatewayAvailableSslOptions', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_available_ssl_options.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default"} # type: ignore + + + @distributed_trace + def list_available_ssl_predefined_policies( + self, + **kwargs: Any + ) -> Iterable["_models.ApplicationGatewayAvailableSslPredefinedPolicies"]: + """Lists all SSL predefined policies for configuring Ssl policy. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationGatewayAvailableSslPredefinedPolicies + or the result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayAvailableSslPredefinedPolicies] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayAvailableSslPredefinedPolicies"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateways_list_available_ssl_predefined_policies_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_available_ssl_predefined_policies.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateways_list_available_ssl_predefined_policies_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayAvailableSslPredefinedPolicies", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_available_ssl_predefined_policies.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies"} # type: ignore + + @distributed_trace + def get_ssl_predefined_policy( + self, + predefined_policy_name: str, + **kwargs: Any + ) -> "_models.ApplicationGatewaySslPredefinedPolicy": + """Gets Ssl predefined policy with the specified policy name. + + :param predefined_policy_name: Name of Ssl predefined policy. + :type predefined_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGatewaySslPredefinedPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewaySslPredefinedPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewaySslPredefinedPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateways_get_ssl_predefined_policy_request( + subscription_id=self._config.subscription_id, + predefined_policy_name=predefined_policy_name, + api_version=api_version, + template_url=self.get_ssl_predefined_policy.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGatewaySslPredefinedPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_ssl_predefined_policy.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies/{predefinedPolicyName}"} # type: ignore + +class ApplicationGatewayPrivateLinkResourcesOperations(object): + """ApplicationGatewayPrivateLinkResourcesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> Iterable["_models.ApplicationGatewayPrivateLinkResourceListResult"]: + """Lists all private link resources on an application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationGatewayPrivateLinkResourceListResult or + the result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateLinkResourceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayPrivateLinkResourceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateway_private_link_resources_list_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateway_private_link_resources_list_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayPrivateLinkResourceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateLinkResources"} # type: ignore +class ApplicationGatewayPrivateEndpointConnectionsOperations(object): + """ApplicationGatewayPrivateEndpointConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateway_private_endpoint_connections_delete_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified private endpoint connection on application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param connection_name: The name of the application gateway private endpoint connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + def _update_initial( + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + parameters: "_models.ApplicationGatewayPrivateEndpointConnection", + **kwargs: Any + ) -> Optional["_models.ApplicationGatewayPrivateEndpointConnection"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ApplicationGatewayPrivateEndpointConnection"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ApplicationGatewayPrivateEndpointConnection') + + request = build_application_gateway_private_endpoint_connections_update_request_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ApplicationGatewayPrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_update( + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + parameters: "_models.ApplicationGatewayPrivateEndpointConnection", + **kwargs: Any + ) -> LROPoller["_models.ApplicationGatewayPrivateEndpointConnection"]: + """Updates the specified private endpoint connection on application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param connection_name: The name of the application gateway private endpoint connection. + :type connection_name: str + :param parameters: Parameters supplied to update application gateway private endpoint + connection operation. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either + ApplicationGatewayPrivateEndpointConnection or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayPrivateEndpointConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_initial( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationGatewayPrivateEndpointConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + application_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.ApplicationGatewayPrivateEndpointConnection": + """Gets the specified private endpoint connection on application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :param connection_name: The name of the application gateway private endpoint connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationGatewayPrivateEndpointConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayPrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_gateway_private_endpoint_connections_get_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationGatewayPrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + application_gateway_name: str, + **kwargs: Any + ) -> Iterable["_models.ApplicationGatewayPrivateEndpointConnectionListResult"]: + """Lists all private endpoint connections on an application gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_gateway_name: The name of the application gateway. + :type application_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either + ApplicationGatewayPrivateEndpointConnectionListResult or the result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationGatewayPrivateEndpointConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationGatewayPrivateEndpointConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_gateway_private_endpoint_connections_list_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_gateway_private_endpoint_connections_list_request( + resource_group_name=resource_group_name, + application_gateway_name=application_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationGatewayPrivateEndpointConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/privateEndpointConnections"} # type: ignore +class ApplicationSecurityGroupsOperations(object): + """ApplicationSecurityGroupsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_security_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_security_groups_delete_request_initial( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + application_security_group_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified application security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_security_group_name: The name of the application security group. + :type application_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + application_security_group_name: str, + **kwargs: Any + ) -> "_models.ApplicationSecurityGroup": + """Gets information about the specified application security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_security_group_name: The name of the application security group. + :type application_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationSecurityGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_application_security_groups_get_request( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + application_security_group_name: str, + parameters: "_models.ApplicationSecurityGroup", + **kwargs: Any + ) -> "_models.ApplicationSecurityGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ApplicationSecurityGroup') + + request = build_application_security_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + application_security_group_name: str, + parameters: "_models.ApplicationSecurityGroup", + **kwargs: Any + ) -> LROPoller["_models.ApplicationSecurityGroup"]: + """Creates or updates an application security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_security_group_name: The name of the application security group. + :type application_security_group_name: str + :param parameters: Parameters supplied to the create or update ApplicationSecurityGroup + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ApplicationSecurityGroup or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + application_security_group_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ApplicationSecurityGroup": + """Updates an application security group's tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param application_security_group_name: The name of the application security group. + :type application_security_group_name: str + :param parameters: Parameters supplied to update application security group tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ApplicationSecurityGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_application_security_groups_update_tags_request( + resource_group_name=resource_group_name, + application_security_group_name=application_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ApplicationSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups/{applicationSecurityGroupName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.ApplicationSecurityGroupListResult"]: + """Gets all application security groups in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationSecurityGroupListResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_security_groups_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_security_groups_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationSecurityGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationSecurityGroups"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ApplicationSecurityGroupListResult"]: + """Gets all the application security groups in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ApplicationSecurityGroupListResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ApplicationSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ApplicationSecurityGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_application_security_groups_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_application_security_groups_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ApplicationSecurityGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationSecurityGroups"} # type: ignore +class AvailableDelegationsOperations(object): + """AvailableDelegationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> Iterable["_models.AvailableDelegationsResult"]: + """Gets all of the available subnet delegations for this subscription in this region. + + :param location: The location of the subnet. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailableDelegationsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailableDelegationsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableDelegationsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_delegations_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_delegations_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AvailableDelegationsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availableDelegations"} # type: ignore +class AvailableResourceGroupDelegationsOperations(object): + """AvailableResourceGroupDelegationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.AvailableDelegationsResult"]: + """Gets all of the available subnet delegations for this resource group in this region. + + :param location: The location of the domain name. + :type location: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailableDelegationsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailableDelegationsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableDelegationsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_resource_group_delegations_list_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_resource_group_delegations_list_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AvailableDelegationsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availableDelegations"} # type: ignore +class AvailableServiceAliasesOperations(object): + """AvailableServiceAliasesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> Iterable["_models.AvailableServiceAliasesResult"]: + """Gets all available service aliases for this subscription in this region. + + :param location: The location. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailableServiceAliasesResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailableServiceAliasesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableServiceAliasesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_service_aliases_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_service_aliases_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AvailableServiceAliasesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availableServiceAliases"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + location: str, + **kwargs: Any + ) -> Iterable["_models.AvailableServiceAliasesResult"]: + """Gets all available service aliases for this resource group in this region. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param location: The location. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailableServiceAliasesResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailableServiceAliasesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableServiceAliasesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_service_aliases_list_by_resource_group_request( + resource_group_name=resource_group_name, + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_service_aliases_list_by_resource_group_request( + resource_group_name=resource_group_name, + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AvailableServiceAliasesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availableServiceAliases"} # type: ignore +class AzureFirewallsOperations(object): + """AzureFirewallsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + azure_firewall_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_azure_firewalls_delete_request_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + azure_firewall_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified Azure Firewall. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param azure_firewall_name: The name of the Azure Firewall. + :type azure_firewall_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + azure_firewall_name: str, + **kwargs: Any + ) -> "_models.AzureFirewall": + """Gets the specified Azure Firewall. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param azure_firewall_name: The name of the Azure Firewall. + :type azure_firewall_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AzureFirewall, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.AzureFirewall + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewall"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_azure_firewalls_get_request( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('AzureFirewall', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + azure_firewall_name: str, + parameters: "_models.AzureFirewall", + **kwargs: Any + ) -> "_models.AzureFirewall": + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewall"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'AzureFirewall') + + request = build_azure_firewalls_create_or_update_request_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('AzureFirewall', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('AzureFirewall', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + azure_firewall_name: str, + parameters: "_models.AzureFirewall", + **kwargs: Any + ) -> LROPoller["_models.AzureFirewall"]: + """Creates or updates the specified Azure Firewall. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param azure_firewall_name: The name of the Azure Firewall. + :type azure_firewall_name: str + :param parameters: Parameters supplied to the create or update Azure Firewall operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.AzureFirewall + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either AzureFirewall or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.AzureFirewall] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewall"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('AzureFirewall', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + def _update_tags_initial( + self, + resource_group_name: str, + azure_firewall_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.AzureFirewall"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.AzureFirewall"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_azure_firewalls_update_tags_request_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('AzureFirewall', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + + @distributed_trace + def begin_update_tags( + self, + resource_group_name: str, + azure_firewall_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> LROPoller["_models.AzureFirewall"]: + """Updates tags of an Azure Firewall resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param azure_firewall_name: The name of the Azure Firewall. + :type azure_firewall_name: str + :param parameters: Parameters supplied to update azure firewall tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either AzureFirewall or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.AzureFirewall] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewall"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_tags_initial( + resource_group_name=resource_group_name, + azure_firewall_name=azure_firewall_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('AzureFirewall', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.AzureFirewallListResult"]: + """Lists all Azure Firewalls in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AzureFirewallListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AzureFirewallListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewallListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_azure_firewalls_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_azure_firewalls_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AzureFirewallListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.AzureFirewallListResult"]: + """Gets all the Azure Firewalls in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AzureFirewallListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AzureFirewallListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewallListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_azure_firewalls_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_azure_firewalls_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AzureFirewallListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureFirewalls"} # type: ignore +class AzureFirewallFqdnTagsOperations(object): + """AzureFirewallFqdnTagsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.AzureFirewallFqdnTagListResult"]: + """Gets all the Azure Firewall FQDN Tags in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AzureFirewallFqdnTagListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AzureFirewallFqdnTagListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureFirewallFqdnTagListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_azure_firewall_fqdn_tags_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_azure_firewall_fqdn_tags_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AzureFirewallFqdnTagListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureFirewallFqdnTags"} # type: ignore +class WebCategoriesOperations(object): + """WebCategoriesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.AzureWebCategory": + """Gets the specified Azure Web Category. + + :param name: The name of the azureWebCategory. + :type name: str + :param expand: Expands resourceIds back referenced by the azureWebCategory resource. Default + value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: AzureWebCategory, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.AzureWebCategory + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureWebCategory"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_web_categories_get_request( + name=name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('AzureWebCategory', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureWebCategories/{name}"} # type: ignore + + + @distributed_trace + def list_by_subscription( + self, + **kwargs: Any + ) -> Iterable["_models.AzureWebCategoryListResult"]: + """Gets all the Azure Web Categories in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AzureWebCategoryListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AzureWebCategoryListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureWebCategoryListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_web_categories_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_subscription.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_web_categories_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AzureWebCategoryListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_subscription.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureWebCategories"} # type: ignore +class BastionHostsOperations(object): + """BastionHostsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_bastion_hosts_delete_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified Bastion Host. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> "_models.BastionHost": + """Gets the specified Bastion Host. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: BastionHost, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.BastionHost + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHost"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_bastion_hosts_get_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('BastionHost', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + bastion_host_name: str, + parameters: "_models.BastionHost", + **kwargs: Any + ) -> "_models.BastionHost": + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHost"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'BastionHost') + + request = build_bastion_hosts_create_or_update_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('BastionHost', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('BastionHost', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + bastion_host_name: str, + parameters: "_models.BastionHost", + **kwargs: Any + ) -> LROPoller["_models.BastionHost"]: + """Creates or updates the specified Bastion Host. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param parameters: Parameters supplied to the create or update Bastion Host operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.BastionHost + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either BastionHost or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.BastionHost] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHost"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BastionHost', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + def _update_tags_initial( + self, + resource_group_name: str, + bastion_host_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.BastionHost"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BastionHost"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_bastion_hosts_update_tags_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BastionHost', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + + @distributed_trace + def begin_update_tags( + self, + resource_group_name: str, + bastion_host_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> LROPoller["_models.BastionHost"]: + """Updates Tags for BastionHost resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param parameters: Parameters supplied to update BastionHost tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either BastionHost or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.BastionHost] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHost"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_tags_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BastionHost', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.BastionHostListResult"]: + """Lists all Bastion Hosts in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionHostListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionHostListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHostListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_bastion_hosts_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_bastion_hosts_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("BastionHostListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/bastionHosts"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.BastionHostListResult"]: + """Lists all Bastion Hosts in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionHostListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionHostListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionHostListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_bastion_hosts_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_bastion_hosts_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("BastionHostListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts"} # type: ignore +class NetworkManagementClientOperationsMixin(object): + + def _put_bastion_shareable_link_initial( + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> Optional["_models.BastionShareableLinkListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BastionShareableLinkListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_put_bastion_shareable_link_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._put_bastion_shareable_link_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BastionShareableLinkListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _put_bastion_shareable_link_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/createShareableLinks"} # type: ignore + + + @distributed_trace + def begin_put_bastion_shareable_link( + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> LROPoller[ItemPaged["_models.BastionShareableLinkListResult"]]: + """Creates a Bastion Shareable Links for all the VMs specified in the request. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param bsl_request: Post request for all the Bastion Shareable Link endpoints. + :type bsl_request: ~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns an iterator like instance of either + BastionShareableLinkListResult or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListResult]] + :raises: ~azure.core.exceptions.HttpResponseError + """ + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionShareableLinkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_put_bastion_shareable_link_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.begin_put_bastion_shareable_link.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_put_bastion_shareable_link_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("BastionShareableLinkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionShareableLinkListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._put_bastion_shareable_link_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + bsl_request=bsl_request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + def internal_get_next(next_link=None): + if next_link is None: + return pipeline_response + return get_next(next_link) + + return ItemPaged( + internal_get_next, extract_data + ) + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_put_bastion_shareable_link.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/createShareableLinks"} # type: ignore + + + def _delete_bastion_shareable_link_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_delete_bastion_shareable_link_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._delete_bastion_shareable_link_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_bastion_shareable_link_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/deleteShareableLinks"} # type: ignore + + + @distributed_trace + def begin_delete_bastion_shareable_link( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the Bastion Shareable Links for all the VMs specified in the request. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param bsl_request: Post request for all the Bastion Shareable Link endpoints. + :type bsl_request: ~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_bastion_shareable_link_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + bsl_request=bsl_request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete_bastion_shareable_link.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/deleteShareableLinks"} # type: ignore + + @distributed_trace + def get_bastion_shareable_link( + self, + resource_group_name: str, + bastion_host_name: str, + bsl_request: "_models.BastionShareableLinkListRequest", + **kwargs: Any + ) -> Iterable["_models.BastionShareableLinkListResult"]: + """Return the Bastion Shareable Links for all the VMs specified in the request. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param bsl_request: Post request for all the Bastion Shareable Link endpoints. + :type bsl_request: ~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionShareableLinkListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionShareableLinkListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionShareableLinkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_get_bastion_shareable_link_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.get_bastion_shareable_link.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + _json = self._serialize.body(bsl_request, 'BastionShareableLinkListRequest') + + request = build_get_bastion_shareable_link_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("BastionShareableLinkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + get_bastion_shareable_link.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/getShareableLinks"} # type: ignore + + def _get_active_sessions_initial( + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> Optional["_models.BastionActiveSessionListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BastionActiveSessionListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_get_active_sessions_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_active_sessions_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BastionActiveSessionListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_active_sessions_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/getActiveSessions"} # type: ignore + + + @distributed_trace + def begin_get_active_sessions( + self, + resource_group_name: str, + bastion_host_name: str, + **kwargs: Any + ) -> LROPoller[ItemPaged["_models.BastionActiveSessionListResult"]]: + """Returns the list of currently active sessions on the Bastion. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns an iterator like instance of either + BastionActiveSessionListResult or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionActiveSessionListResult]] + :raises: ~azure.core.exceptions.HttpResponseError + """ + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionActiveSessionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_get_active_sessions_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.begin_get_active_sessions.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_get_active_sessions_request_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("BastionActiveSessionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionActiveSessionListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_active_sessions_initial( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + def internal_get_next(next_link=None): + if next_link is None: + return pipeline_response + return get_next(next_link) + + return ItemPaged( + internal_get_next, extract_data + ) + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_active_sessions.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/getActiveSessions"} # type: ignore + + + @distributed_trace + def disconnect_active_sessions( + self, + resource_group_name: str, + bastion_host_name: str, + session_ids: "_models.SessionIds", + **kwargs: Any + ) -> Iterable["_models.BastionSessionDeleteResult"]: + """Returns the list of currently active sessions on the Bastion. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param bastion_host_name: The name of the Bastion Host. + :type bastion_host_name: str + :param session_ids: The list of sessionids to disconnect. + :type session_ids: ~azure.mgmt.network.v2021_08_01.models.SessionIds + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BastionSessionDeleteResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BastionSessionDeleteResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BastionSessionDeleteResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + _json = self._serialize.body(session_ids, 'SessionIds') + + request = build_disconnect_active_sessions_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.disconnect_active_sessions.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + _json = self._serialize.body(session_ids, 'SessionIds') + + request = build_disconnect_active_sessions_request( + resource_group_name=resource_group_name, + bastion_host_name=bastion_host_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("BastionSessionDeleteResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + disconnect_active_sessions.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/disconnectActiveSessions"} # type: ignore + + @distributed_trace + def check_dns_name_availability( + self, + location: str, + domain_name_label: str, + **kwargs: Any + ) -> "_models.DnsNameAvailabilityResult": + """Checks whether a domain name in the cloudapp.azure.com zone is available for use. + + :param location: The location of the domain name. + :type location: str + :param domain_name_label: The domain name to be verified. It must conform to the following + regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$. + :type domain_name_label: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DnsNameAvailabilityResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DnsNameAvailabilityResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DnsNameAvailabilityResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_check_dns_name_availability_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + domain_name_label=domain_name_label, + template_url=self.check_dns_name_availability.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DnsNameAvailabilityResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + check_dns_name_availability.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/CheckDnsNameAvailability"} # type: ignore + + + @distributed_trace + def supported_security_providers( + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> "_models.VirtualWanSecurityProviders": + """Gives the supported security providers for the virtual wan. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN for which supported security providers are + needed. + :type virtual_wan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualWanSecurityProviders, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualWanSecurityProviders + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWanSecurityProviders"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_supported_security_providers_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + template_url=self.supported_security_providers.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualWanSecurityProviders', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + supported_security_providers.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/supportedSecurityProviders"} # type: ignore + + + def _generatevirtualwanvpnserverconfigurationvpnprofile_initial( + self, + resource_group_name: str, + virtual_wan_name: str, + vpn_client_params: "_models.VirtualWanVpnProfileParameters", + **kwargs: Any + ) -> Optional["_models.VpnProfileResponse"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnProfileResponse"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_client_params, 'VirtualWanVpnProfileParameters') + + request = build_generatevirtualwanvpnserverconfigurationvpnprofile_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._generatevirtualwanvpnserverconfigurationvpnprofile_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnProfileResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _generatevirtualwanvpnserverconfigurationvpnprofile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/GenerateVpnProfile"} # type: ignore + + + @distributed_trace + def begin_generatevirtualwanvpnserverconfigurationvpnprofile( + self, + resource_group_name: str, + virtual_wan_name: str, + vpn_client_params: "_models.VirtualWanVpnProfileParameters", + **kwargs: Any + ) -> LROPoller["_models.VpnProfileResponse"]: + """Generates a unique VPN profile for P2S clients for VirtualWan and associated + VpnServerConfiguration combination in the specified resource group. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN whose associated VpnServerConfigurations is + needed. + :type virtual_wan_name: str + :param vpn_client_params: Parameters supplied to the generate VirtualWan VPN profile generation + operation. + :type vpn_client_params: ~azure.mgmt.network.v2021_08_01.models.VirtualWanVpnProfileParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnProfileResponse or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnProfileResponse] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnProfileResponse"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._generatevirtualwanvpnserverconfigurationvpnprofile_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + vpn_client_params=vpn_client_params, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnProfileResponse', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_generatevirtualwanvpnserverconfigurationvpnprofile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/GenerateVpnProfile"} # type: ignore +class NetworkInterfacesOperations(object): + """NetworkInterfacesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list_cloud_service_role_instance_network_interfaces( + self, + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceListResult"]: + """Gets information about all network interfaces in a role instance in a cloud service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :param role_instance_name: The name of role instance. + :type role_instance_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_cloud_service_role_instance_network_interfaces_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_cloud_service_role_instance_network_interfaces.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_cloud_service_role_instance_network_interfaces_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_cloud_service_role_instance_network_interfaces.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces"} # type: ignore + + @distributed_trace + def list_cloud_service_network_interfaces( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceListResult"]: + """Gets all network interfaces in a cloud service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_cloud_service_network_interfaces_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_cloud_service_network_interfaces.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_cloud_service_network_interfaces_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_cloud_service_network_interfaces.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/networkInterfaces"} # type: ignore + + @distributed_trace + def get_cloud_service_network_interface( + self, + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + network_interface_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkInterface": + """Get the specified network interface in a cloud service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :param role_instance_name: The name of role instance. + :type role_instance_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterface, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_get_cloud_service_network_interface_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_cloud_service_network_interface.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_cloud_service_network_interface.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_delete_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_interface_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkInterface": + """Gets information about the specified network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterface, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_get_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + network_interface_name: str, + parameters: "_models.NetworkInterface", + **kwargs: Any + ) -> "_models.NetworkInterface": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkInterface') + + request = build_network_interfaces_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + network_interface_name: str, + parameters: "_models.NetworkInterface", + **kwargs: Any + ) -> LROPoller["_models.NetworkInterface"]: + """Creates or updates a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param parameters: Parameters supplied to the create or update network interface operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either NetworkInterface or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkInterface] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkInterface', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + network_interface_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkInterface": + """Updates a network interface tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param parameters: Parameters supplied to update network interface tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterface, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_interfaces_update_tags_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceListResult"]: + """Gets all network interfaces in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkInterfaces"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceListResult"]: + """Gets all network interfaces in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces"} # type: ignore + + def _get_effective_route_table_initial( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> Optional["_models.EffectiveRouteListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.EffectiveRouteListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_get_effective_route_table_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_effective_route_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('EffectiveRouteListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_effective_route_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveRouteTable"} # type: ignore + + + @distributed_trace + def begin_get_effective_route_table( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> LROPoller["_models.EffectiveRouteListResult"]: + """Gets all route tables applied to a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either EffectiveRouteListResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.EffectiveRouteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.EffectiveRouteListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_effective_route_table_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('EffectiveRouteListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_effective_route_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveRouteTable"} # type: ignore + + def _list_effective_network_security_groups_initial( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> Optional["_models.EffectiveNetworkSecurityGroupListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.EffectiveNetworkSecurityGroupListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interfaces_list_effective_network_security_groups_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_effective_network_security_groups_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('EffectiveNetworkSecurityGroupListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_effective_network_security_groups_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveNetworkSecurityGroups"} # type: ignore + + + @distributed_trace + def begin_list_effective_network_security_groups( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> LROPoller["_models.EffectiveNetworkSecurityGroupListResult"]: + """Gets all network security groups applied to a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either EffectiveNetworkSecurityGroupListResult + or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.EffectiveNetworkSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.EffectiveNetworkSecurityGroupListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_effective_network_security_groups_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('EffectiveNetworkSecurityGroupListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_effective_network_security_groups.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveNetworkSecurityGroups"} # type: ignore + + @distributed_trace + def list_virtual_machine_scale_set_vm_network_interfaces( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceListResult"]: + """Gets information about all network interfaces in a virtual machine in a virtual machine scale + set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_virtual_machine_scale_set_vm_network_interfaces_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_virtual_machine_scale_set_vm_network_interfaces.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_virtual_machine_scale_set_vm_network_interfaces_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_vm_network_interfaces.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces"} # type: ignore + + @distributed_trace + def list_virtual_machine_scale_set_network_interfaces( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceListResult"]: + """Gets all network interfaces in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_virtual_machine_scale_set_network_interfaces_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_virtual_machine_scale_set_network_interfaces.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_virtual_machine_scale_set_network_interfaces_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_network_interfaces.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/networkInterfaces"} # type: ignore + + @distributed_trace + def get_virtual_machine_scale_set_network_interface( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkInterface": + """Get the specified network interface in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterface, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterface + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterface"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + + request = build_network_interfaces_get_virtual_machine_scale_set_network_interface_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_virtual_machine_scale_set_network_interface.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterface', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_virtual_machine_scale_set_network_interface.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}"} # type: ignore + + + @distributed_trace + def list_virtual_machine_scale_set_ip_configurations( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceIPConfigurationListResult"]: + """Get the specified network interface ip configuration in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceIPConfigurationListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceIPConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interfaces_list_virtual_machine_scale_set_ip_configurations_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.list_virtual_machine_scale_set_ip_configurations.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interfaces_list_virtual_machine_scale_set_ip_configurations_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceIPConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_ip_configurations.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipConfigurations"} # type: ignore + + @distributed_trace + def get_virtual_machine_scale_set_ip_configuration( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + ip_configuration_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkInterfaceIPConfiguration": + """Get the specified network interface ip configuration in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param ip_configuration_name: The name of the ip configuration. + :type ip_configuration_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterfaceIPConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceIPConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + + request = build_network_interfaces_get_virtual_machine_scale_set_ip_configuration_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_virtual_machine_scale_set_ip_configuration.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterfaceIPConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_virtual_machine_scale_set_ip_configuration.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipConfigurations/{ipConfigurationName}"} # type: ignore + +class PublicIPAddressesOperations(object): + """PublicIPAddressesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list_cloud_service_public_ip_addresses( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs: Any + ) -> Iterable["_models.PublicIPAddressListResult"]: + """Gets information about all public IP addresses on a cloud service level. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_cloud_service_public_ip_addresses_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_cloud_service_public_ip_addresses.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_cloud_service_public_ip_addresses_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_cloud_service_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/publicipaddresses"} # type: ignore + + @distributed_trace + def list_cloud_service_role_instance_public_ip_addresses( + self, + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + network_interface_name: str, + ip_configuration_name: str, + **kwargs: Any + ) -> Iterable["_models.PublicIPAddressListResult"]: + """Gets information about all public IP addresses in a role instance IP configuration in a cloud + service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :param role_instance_name: The name of role instance. + :type role_instance_name: str + :param network_interface_name: The network interface name. + :type network_interface_name: str + :param ip_configuration_name: The IP configuration name. + :type ip_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_cloud_service_role_instance_public_ip_addresses_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_cloud_service_role_instance_public_ip_addresses.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_cloud_service_role_instance_public_ip_addresses_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_cloud_service_role_instance_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses"} # type: ignore + + @distributed_trace + def get_cloud_service_public_ip_address( + self, + resource_group_name: str, + cloud_service_name: str, + role_instance_name: str, + network_interface_name: str, + ip_configuration_name: str, + public_ip_address_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PublicIPAddress": + """Get the specified public IP address in a cloud service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cloud_service_name: The name of the cloud service. + :type cloud_service_name: str + :param role_instance_name: The role instance name. + :type role_instance_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param ip_configuration_name: The name of the IP configuration. + :type ip_configuration_name: str + :param public_ip_address_name: The name of the public IP Address. + :type public_ip_address_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPAddress, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_addresses_get_cloud_service_public_ip_address_request( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + role_instance_name=role_instance_name, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_cloud_service_public_ip_address.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_cloud_service_public_ip_address.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses/{publicIpAddressName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + public_ip_address_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_addresses_delete_request_initial( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + public_ip_address_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified public IP address. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_address_name: The name of the public IP address. + :type public_ip_address_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + public_ip_address_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PublicIPAddress": + """Gets the specified public IP address in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_address_name: The name of the public IP address. + :type public_ip_address_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPAddress, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_addresses_get_request( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + public_ip_address_name: str, + parameters: "_models.PublicIPAddress", + **kwargs: Any + ) -> "_models.PublicIPAddress": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PublicIPAddress') + + request = build_public_ip_addresses_create_or_update_request_initial( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + public_ip_address_name: str, + parameters: "_models.PublicIPAddress", + **kwargs: Any + ) -> LROPoller["_models.PublicIPAddress"]: + """Creates or updates a static or dynamic public IP address. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_address_name: The name of the public IP address. + :type public_ip_address_name: str + :param parameters: Parameters supplied to the create or update public IP address operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PublicIPAddress or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PublicIPAddress] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + public_ip_address_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.PublicIPAddress": + """Updates public IP address tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_address_name: The name of the public IP address. + :type public_ip_address_name: str + :param parameters: Parameters supplied to update public IP address tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPAddress, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_public_ip_addresses_update_tags_request( + resource_group_name=resource_group_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.PublicIPAddressListResult"]: + """Gets all the public IP addresses in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/publicIPAddresses"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.PublicIPAddressListResult"]: + """Gets all public IP addresses in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses"} # type: ignore + + @distributed_trace + def list_virtual_machine_scale_set_public_ip_addresses( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + **kwargs: Any + ) -> Iterable["_models.PublicIPAddressListResult"]: + """Gets information about all public IP addresses on a virtual machine scale set level. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_virtual_machine_scale_set_public_ip_addresses_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_virtual_machine_scale_set_public_ip_addresses.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_virtual_machine_scale_set_public_ip_addresses_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/publicipaddresses"} # type: ignore + + @distributed_trace + def list_virtual_machine_scale_set_vm_public_ip_addresses( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + ip_configuration_name: str, + **kwargs: Any + ) -> Iterable["_models.PublicIPAddressListResult"]: + """Gets information about all public IP addresses in a virtual machine IP configuration in a + virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The network interface name. + :type network_interface_name: str + :param ip_configuration_name: The IP configuration name. + :type ip_configuration_name: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPAddressListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPAddressListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddressListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_addresses_list_virtual_machine_scale_set_vm_public_ip_addresses_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_virtual_machine_scale_set_vm_public_ip_addresses.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_addresses_list_virtual_machine_scale_set_vm_public_ip_addresses_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPAddressListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_virtual_machine_scale_set_vm_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses"} # type: ignore + + @distributed_trace + def get_virtual_machine_scale_set_public_ip_address( + self, + resource_group_name: str, + virtual_machine_scale_set_name: str, + virtualmachine_index: str, + network_interface_name: str, + ip_configuration_name: str, + public_ip_address_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PublicIPAddress": + """Get the specified public IP address in a virtual machine scale set. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_machine_scale_set_name: The name of the virtual machine scale set. + :type virtual_machine_scale_set_name: str + :param virtualmachine_index: The virtual machine index. + :type virtualmachine_index: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param ip_configuration_name: The name of the IP configuration. + :type ip_configuration_name: str + :param public_ip_address_name: The name of the public IP Address. + :type public_ip_address_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2018-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPAddress, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPAddress + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPAddress"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2018-10-01") # type: str + + + request = build_public_ip_addresses_get_virtual_machine_scale_set_public_ip_address_request( + resource_group_name=resource_group_name, + virtual_machine_scale_set_name=virtual_machine_scale_set_name, + virtualmachine_index=virtualmachine_index, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + public_ip_address_name=public_ip_address_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_virtual_machine_scale_set_public_ip_address.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPAddress', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_virtual_machine_scale_set_public_ip_address.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}/ipconfigurations/{ipConfigurationName}/publicipaddresses/{publicIpAddressName}"} # type: ignore + +class CustomIPPrefixesOperations(object): + """CustomIPPrefixesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + custom_ip_prefix_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_custom_ip_prefixes_delete_request_initial( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + custom_ip_prefix_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified custom IP prefix. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param custom_ip_prefix_name: The name of the CustomIpPrefix. + :type custom_ip_prefix_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + custom_ip_prefix_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.CustomIpPrefix": + """Gets the specified custom IP prefix in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param custom_ip_prefix_name: The name of the custom IP prefix. + :type custom_ip_prefix_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CustomIpPrefix, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_custom_ip_prefixes_get_request( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + custom_ip_prefix_name: str, + parameters: "_models.CustomIpPrefix", + **kwargs: Any + ) -> "_models.CustomIpPrefix": + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'CustomIpPrefix') + + request = build_custom_ip_prefixes_create_or_update_request_initial( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + custom_ip_prefix_name: str, + parameters: "_models.CustomIpPrefix", + **kwargs: Any + ) -> LROPoller["_models.CustomIpPrefix"]: + """Creates or updates a custom IP prefix. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param custom_ip_prefix_name: The name of the custom IP prefix. + :type custom_ip_prefix_name: str + :param parameters: Parameters supplied to the create or update custom IP prefix operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either CustomIpPrefix or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefix"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + custom_ip_prefix_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.CustomIpPrefix": + """Updates custom IP prefix tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param custom_ip_prefix_name: The name of the custom IP prefix. + :type custom_ip_prefix_name: str + :param parameters: Parameters supplied to update custom IP prefix tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CustomIpPrefix, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.CustomIpPrefix + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_custom_ip_prefixes_update_tags_request( + resource_group_name=resource_group_name, + custom_ip_prefix_name=custom_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CustomIpPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.CustomIpPrefixListResult"]: + """Gets all the custom IP prefixes in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CustomIpPrefixListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.CustomIpPrefixListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefixListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_custom_ip_prefixes_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_custom_ip_prefixes_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("CustomIpPrefixListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/customIpPrefixes"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.CustomIpPrefixListResult"]: + """Gets all custom IP prefixes in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CustomIpPrefixListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.CustomIpPrefixListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomIpPrefixListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_custom_ip_prefixes_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_custom_ip_prefixes_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("CustomIpPrefixListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes"} # type: ignore +class DdosCustomPoliciesOperations(object): + """DdosCustomPoliciesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ddos_custom_policy_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ddos_custom_policies_delete_request_initial( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ddos_custom_policy_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified DDoS custom policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_custom_policy_name: The name of the DDoS custom policy. + :type ddos_custom_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + ddos_custom_policy_name: str, + **kwargs: Any + ) -> "_models.DdosCustomPolicy": + """Gets information about the specified DDoS custom policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_custom_policy_name: The name of the DDoS custom policy. + :type ddos_custom_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DdosCustomPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosCustomPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ddos_custom_policies_get_request( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + ddos_custom_policy_name: str, + parameters: "_models.DdosCustomPolicy", + **kwargs: Any + ) -> "_models.DdosCustomPolicy": + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosCustomPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'DdosCustomPolicy') + + request = build_ddos_custom_policies_create_or_update_request_initial( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + ddos_custom_policy_name: str, + parameters: "_models.DdosCustomPolicy", + **kwargs: Any + ) -> LROPoller["_models.DdosCustomPolicy"]: + """Creates or updates a DDoS custom policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_custom_policy_name: The name of the DDoS custom policy. + :type ddos_custom_policy_name: str + :param parameters: Parameters supplied to the create or update operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicy + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either DdosCustomPolicy or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicy] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosCustomPolicy"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + ddos_custom_policy_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.DdosCustomPolicy": + """Update a DDoS custom policy tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_custom_policy_name: The name of the DDoS custom policy. + :type ddos_custom_policy_name: str + :param parameters: Parameters supplied to update DDoS custom policy resource tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DdosCustomPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DdosCustomPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosCustomPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_ddos_custom_policies_update_tags_request( + resource_group_name=resource_group_name, + ddos_custom_policy_name=ddos_custom_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DdosCustomPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies/{ddosCustomPolicyName}"} # type: ignore + +class DdosProtectionPlansOperations(object): + """DdosProtectionPlansOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ddos_protection_plan_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ddos_protection_plans_delete_request_initial( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ddos_protection_plan_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified DDoS protection plan. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_protection_plan_name: The name of the DDoS protection plan. + :type ddos_protection_plan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + ddos_protection_plan_name: str, + **kwargs: Any + ) -> "_models.DdosProtectionPlan": + """Gets information about the specified DDoS protection plan. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_protection_plan_name: The name of the DDoS protection plan. + :type ddos_protection_plan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DdosProtectionPlan, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlan"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ddos_protection_plans_get_request( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + ddos_protection_plan_name: str, + parameters: "_models.DdosProtectionPlan", + **kwargs: Any + ) -> "_models.DdosProtectionPlan": + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlan"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'DdosProtectionPlan') + + request = build_ddos_protection_plans_create_or_update_request_initial( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + ddos_protection_plan_name: str, + parameters: "_models.DdosProtectionPlan", + **kwargs: Any + ) -> LROPoller["_models.DdosProtectionPlan"]: + """Creates or updates a DDoS protection plan. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_protection_plan_name: The name of the DDoS protection plan. + :type ddos_protection_plan_name: str + :param parameters: Parameters supplied to the create or update operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either DdosProtectionPlan or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlan"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + ddos_protection_plan_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.DdosProtectionPlan": + """Update a DDoS protection plan tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ddos_protection_plan_name: The name of the DDoS protection plan. + :type ddos_protection_plan_name: str + :param parameters: Parameters supplied to the update DDoS protection plan resource tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DdosProtectionPlan, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlan + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlan"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_ddos_protection_plans_update_tags_request( + resource_group_name=resource_group_name, + ddos_protection_plan_name=ddos_protection_plan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DdosProtectionPlan', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans/{ddosProtectionPlanName}"} # type: ignore + + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.DdosProtectionPlanListResult"]: + """Gets all DDoS protection plans in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DdosProtectionPlanListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlanListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlanListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ddos_protection_plans_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ddos_protection_plans_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("DdosProtectionPlanListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ddosProtectionPlans"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.DdosProtectionPlanListResult"]: + """Gets all the DDoS protection plans in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DdosProtectionPlanListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.DdosProtectionPlanListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.DdosProtectionPlanListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ddos_protection_plans_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ddos_protection_plans_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("DdosProtectionPlanListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosProtectionPlans"} # type: ignore +class DscpConfigurationOperations(object): + """DscpConfigurationOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + dscp_configuration_name: str, + parameters: "_models.DscpConfiguration", + **kwargs: Any + ) -> "_models.DscpConfiguration": + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'DscpConfiguration') + + request = build_dscp_configuration_create_or_update_request_initial( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('DscpConfiguration', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('DscpConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + dscp_configuration_name: str, + parameters: "_models.DscpConfiguration", + **kwargs: Any + ) -> LROPoller["_models.DscpConfiguration"]: + """Creates or updates a DSCP Configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param dscp_configuration_name: The name of the resource. + :type dscp_configuration_name: str + :param parameters: Parameters supplied to the create or update dscp configuration operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.DscpConfiguration + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either DscpConfiguration or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.DscpConfiguration] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfiguration"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('DscpConfiguration', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + dscp_configuration_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_dscp_configuration_delete_request_initial( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + dscp_configuration_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a DSCP Configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param dscp_configuration_name: The name of the resource. + :type dscp_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + dscp_configuration_name: str, + **kwargs: Any + ) -> "_models.DscpConfiguration": + """Gets a DSCP Configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param dscp_configuration_name: The name of the resource. + :type dscp_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DscpConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.DscpConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_dscp_configuration_get_request( + resource_group_name=resource_group_name, + dscp_configuration_name=dscp_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DscpConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations/{dscpConfigurationName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.DscpConfigurationListResult"]: + """Gets a DSCP Configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DscpConfigurationListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.DscpConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_dscp_configuration_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_dscp_configuration_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("DscpConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dscpConfigurations"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.DscpConfigurationListResult"]: + """Gets all dscp configurations in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DscpConfigurationListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.DscpConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.DscpConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_dscp_configuration_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_dscp_configuration_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("DscpConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/dscpConfigurations"} # type: ignore +class AvailableEndpointServicesOperations(object): + """AvailableEndpointServicesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> Iterable["_models.EndpointServicesListResult"]: + """List what values of endpoint services are available for use. + + :param location: The location to check available endpoint services. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either EndpointServicesListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.EndpointServicesListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.EndpointServicesListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_endpoint_services_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_endpoint_services_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("EndpointServicesListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/virtualNetworkAvailableEndpointServices"} # type: ignore +class ExpressRouteCircuitAuthorizationsOperations(object): + """ExpressRouteCircuitAuthorizationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_authorizations_delete_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified authorization from the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitAuthorization": + """Gets the specified authorization from the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitAuthorization, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitAuthorization"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_authorizations_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitAuthorization', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + authorization_parameters: "_models.ExpressRouteCircuitAuthorization", + **kwargs: Any + ) -> "_models.ExpressRouteCircuitAuthorization": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitAuthorization"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(authorization_parameters, 'ExpressRouteCircuitAuthorization') + + request = build_express_route_circuit_authorizations_create_or_update_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitAuthorization', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCircuitAuthorization', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + circuit_name: str, + authorization_name: str, + authorization_parameters: "_models.ExpressRouteCircuitAuthorization", + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCircuitAuthorization"]: + """Creates or updates an authorization in the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :param authorization_parameters: Parameters supplied to the create or update express route + circuit authorization operation. + :type authorization_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCircuitAuthorization or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitAuthorization] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitAuthorization"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + authorization_name=authorization_name, + authorization_parameters=authorization_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitAuthorization', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> Iterable["_models.AuthorizationListResult"]: + """Gets all authorizations in an express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AuthorizationListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AuthorizationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AuthorizationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuit_authorizations_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuit_authorizations_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AuthorizationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations"} # type: ignore +class ExpressRouteCircuitPeeringsOperations(object): + """ExpressRouteCircuitPeeringsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_peerings_delete_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified peering from the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitPeering": + """Gets the specified peering for the express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitPeering, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_peerings_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + peering_parameters: "_models.ExpressRouteCircuitPeering", + **kwargs: Any + ) -> "_models.ExpressRouteCircuitPeering": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(peering_parameters, 'ExpressRouteCircuitPeering') + + request = build_express_route_circuit_peerings_create_or_update_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitPeering', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCircuitPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + peering_parameters: "_models.ExpressRouteCircuitPeering", + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCircuitPeering"]: + """Creates or updates a peering in the specified express route circuits. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param peering_parameters: Parameters supplied to the create or update express route circuit + peering operation. + :type peering_parameters: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCircuitPeering or the result + of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeering] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitPeering"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + peering_parameters=peering_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitPeering', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> Iterable["_models.ExpressRouteCircuitPeeringListResult"]: + """Gets all peerings in a specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCircuitPeeringListResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitPeeringListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitPeeringListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuit_peerings_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuit_peerings_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCircuitPeeringListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings"} # type: ignore +class ExpressRouteCircuitConnectionsOperations(object): + """ExpressRouteCircuitConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_connections_delete_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified Express Route Circuit Connection from the specified express route + circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param connection_name: The name of the express route circuit connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitConnection": + """Gets the specified Express Route Circuit Connection from the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param connection_name: The name of the express route circuit connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuit_connections_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + express_route_circuit_connection_parameters: "_models.ExpressRouteCircuitConnection", + **kwargs: Any + ) -> "_models.ExpressRouteCircuitConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(express_route_circuit_connection_parameters, 'ExpressRouteCircuitConnection') + + request = build_express_route_circuit_connections_create_or_update_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCircuitConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + express_route_circuit_connection_parameters: "_models.ExpressRouteCircuitConnection", + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCircuitConnection"]: + """Creates or updates a Express Route Circuit Connection in the specified express route circuits. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param connection_name: The name of the express route circuit connection. + :type connection_name: str + :param express_route_circuit_connection_parameters: Parameters supplied to the create or update + express route circuit connection operation. + :type express_route_circuit_connection_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCircuitConnection or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + express_route_circuit_connection_parameters=express_route_circuit_connection_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections/{connectionName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> Iterable["_models.ExpressRouteCircuitConnectionListResult"]: + """Gets all global reach connections associated with a private peering in an express route + circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCircuitConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuit_connections_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuit_connections_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCircuitConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/connections"} # type: ignore +class PeerExpressRouteCircuitConnectionsOperations(object): + """PeerExpressRouteCircuitConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.PeerExpressRouteCircuitConnection": + """Gets the specified Peer Express Route Circuit Connection from the specified express route + circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param connection_name: The name of the peer express route circuit connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PeerExpressRouteCircuitConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PeerExpressRouteCircuitConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PeerExpressRouteCircuitConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_peer_express_route_circuit_connections_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PeerExpressRouteCircuitConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/peerConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> Iterable["_models.PeerExpressRouteCircuitConnectionListResult"]: + """Gets all global reach peer connections associated with a private peering in an express route + circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PeerExpressRouteCircuitConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PeerExpressRouteCircuitConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PeerExpressRouteCircuitConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_peer_express_route_circuit_connections_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_peer_express_route_circuit_connections_list_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PeerExpressRouteCircuitConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/peerConnections"} # type: ignore +class ExpressRouteCircuitsOperations(object): + """ExpressRouteCircuitsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_delete_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuit": + """Gets information about the specified express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of express route circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuit, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuit"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_get_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + circuit_name: str, + parameters: "_models.ExpressRouteCircuit", + **kwargs: Any + ) -> "_models.ExpressRouteCircuit": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuit"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ExpressRouteCircuit') + + request = build_express_route_circuits_create_or_update_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + circuit_name: str, + parameters: "_models.ExpressRouteCircuit", + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCircuit"]: + """Creates or updates an express route circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :param parameters: Parameters supplied to the create or update express route circuit operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCircuit or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuit"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + circuit_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ExpressRouteCircuit": + """Updates an express route circuit tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the circuit. + :type circuit_name: str + :param parameters: Parameters supplied to update express route circuit tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuit, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuit + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuit"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_express_route_circuits_update_tags_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuit', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}"} # type: ignore + + + def _list_arp_table_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsArpTableListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsArpTableListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_list_arp_table_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_arp_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsArpTableListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_arp_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/arpTables/{devicePath}"} # type: ignore + + + @distributed_trace + def begin_list_arp_table( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCircuitsArpTableListResult"]: + """Gets the currently advertised ARP table associated with the express route circuit in a resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCircuitsArpTableListResult or + the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsArpTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsArpTableListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_arp_table_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsArpTableListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_arp_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/arpTables/{devicePath}"} # type: ignore + + def _list_routes_table_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsRoutesTableListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsRoutesTableListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_list_routes_table_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_routes_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_routes_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTables/{devicePath}"} # type: ignore + + + @distributed_trace + def begin_list_routes_table( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCircuitsRoutesTableListResult"]: + """Gets the currently advertised routes table associated with the express route circuit in a + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCircuitsRoutesTableListResult + or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsRoutesTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsRoutesTableListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_routes_table_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_routes_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTables/{devicePath}"} # type: ignore + + def _list_routes_table_summary_initial( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsRoutesTableSummaryListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsRoutesTableSummaryListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_list_routes_table_summary_request_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_routes_table_summary_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableSummaryListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_routes_table_summary_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTablesSummary/{devicePath}"} # type: ignore + + + @distributed_trace + def begin_list_routes_table_summary( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCircuitsRoutesTableSummaryListResult"]: + """Gets the currently advertised routes table summary associated with the express route circuit in + a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either + ExpressRouteCircuitsRoutesTableSummaryListResult or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsRoutesTableSummaryListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsRoutesTableSummaryListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_routes_table_summary_initial( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableSummaryListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_routes_table_summary.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTablesSummary/{devicePath}"} # type: ignore + + @distributed_trace + def get_stats( + self, + resource_group_name: str, + circuit_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitStats": + """Gets all the stats from an express route circuit in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitStats, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitStats + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitStats"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_get_stats_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get_stats.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitStats', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_stats.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/stats"} # type: ignore + + + @distributed_trace + def get_peering_stats( + self, + resource_group_name: str, + circuit_name: str, + peering_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCircuitStats": + """Gets all stats from an express route circuit in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param circuit_name: The name of the express route circuit. + :type circuit_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCircuitStats, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitStats + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitStats"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_circuits_get_peering_stats_request( + resource_group_name=resource_group_name, + circuit_name=circuit_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get_peering_stats.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCircuitStats', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_peering_stats.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/stats"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ExpressRouteCircuitListResult"]: + """Gets all the express route circuits in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCircuitListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuits_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuits_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCircuitListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.ExpressRouteCircuitListResult"]: + """Gets all the express route circuits in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCircuitListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_circuits_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_circuits_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCircuitListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteCircuits"} # type: ignore +class ExpressRouteServiceProvidersOperations(object): + """ExpressRouteServiceProvidersOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ExpressRouteServiceProviderListResult"]: + """Gets all the available express route service providers. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteServiceProviderListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteServiceProviderListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteServiceProviderListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_service_providers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_service_providers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteServiceProviderListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteServiceProviders"} # type: ignore +class ExpressRouteCrossConnectionsOperations(object): + """ExpressRouteCrossConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ExpressRouteCrossConnectionListResult"]: + """Retrieves all the ExpressRouteCrossConnections in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCrossConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_cross_connections_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_cross_connections_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCrossConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteCrossConnections"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ExpressRouteCrossConnectionListResult"]: + """Retrieves all the ExpressRouteCrossConnections in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCrossConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_cross_connections_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_cross_connections_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCrossConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + cross_connection_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnection": + """Gets details about the specified ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group (peering location of the circuit). + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection (service key of the + circuit). + :type cross_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCrossConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connections_get_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCrossConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + cross_connection_name: str, + parameters: "_models.ExpressRouteCrossConnection", + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ExpressRouteCrossConnection') + + request = build_express_route_cross_connections_create_or_update_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCrossConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + cross_connection_name: str, + parameters: "_models.ExpressRouteCrossConnection", + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCrossConnection"]: + """Update the specified ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param parameters: Parameters supplied to the update express route crossConnection operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCrossConnection or the result + of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCrossConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + cross_connection_name: str, + cross_connection_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnection": + """Updates an express route cross connection tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the cross connection. + :type cross_connection_name: str + :param cross_connection_parameters: Parameters supplied to update express route cross + connection tags. + :type cross_connection_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCrossConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(cross_connection_parameters, 'TagsObject') + + request = build_express_route_cross_connections_update_tags_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCrossConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}"} # type: ignore + + + def _list_arp_table_initial( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsArpTableListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsArpTableListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connections_list_arp_table_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_arp_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsArpTableListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_arp_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/arpTables/{devicePath}"} # type: ignore + + + @distributed_trace + def begin_list_arp_table( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCircuitsArpTableListResult"]: + """Gets the currently advertised ARP table associated with the express route cross connection in a + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCircuitsArpTableListResult or + the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsArpTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsArpTableListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_arp_table_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsArpTableListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_arp_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/arpTables/{devicePath}"} # type: ignore + + def _list_routes_table_summary_initial( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connections_list_routes_table_summary_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_routes_table_summary_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCrossConnectionsRoutesTableSummaryListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_routes_table_summary_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTablesSummary/{devicePath}"} # type: ignore + + + @distributed_trace + def begin_list_routes_table_summary( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult"]: + """Gets the route table summary associated with the express route cross connection in a resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either + ExpressRouteCrossConnectionsRoutesTableSummaryListResult or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionsRoutesTableSummaryListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_routes_table_summary_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCrossConnectionsRoutesTableSummaryListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_routes_table_summary.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTablesSummary/{devicePath}"} # type: ignore + + def _list_routes_table_initial( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> Optional["_models.ExpressRouteCircuitsRoutesTableListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteCircuitsRoutesTableListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connections_list_routes_table_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_routes_table_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_routes_table_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTables/{devicePath}"} # type: ignore + + + @distributed_trace + def begin_list_routes_table( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + device_path: str, + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCircuitsRoutesTableListResult"]: + """Gets the currently advertised routes table associated with the express route cross connection + in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param device_path: The path of the device. + :type device_path: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCircuitsRoutesTableListResult + or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCircuitsRoutesTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCircuitsRoutesTableListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_routes_table_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + device_path=device_path, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCircuitsRoutesTableListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_routes_table.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}/routeTables/{devicePath}"} # type: ignore +class ExpressRouteCrossConnectionPeeringsOperations(object): + """ExpressRouteCrossConnectionPeeringsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + cross_connection_name: str, + **kwargs: Any + ) -> Iterable["_models.ExpressRouteCrossConnectionPeeringList"]: + """Gets all peerings in a specified ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteCrossConnectionPeeringList or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeeringList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionPeeringList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_cross_connection_peerings_list_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_cross_connection_peerings_list_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteCrossConnectionPeeringList", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connection_peerings_delete_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified peering from the ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnectionPeering": + """Gets the specified peering for the ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteCrossConnectionPeering, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_cross_connection_peerings_get_request( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteCrossConnectionPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + peering_parameters: "_models.ExpressRouteCrossConnectionPeering", + **kwargs: Any + ) -> "_models.ExpressRouteCrossConnectionPeering": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(peering_parameters, 'ExpressRouteCrossConnectionPeering') + + request = build_express_route_cross_connection_peerings_create_or_update_request_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteCrossConnectionPeering', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteCrossConnectionPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + cross_connection_name: str, + peering_name: str, + peering_parameters: "_models.ExpressRouteCrossConnectionPeering", + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteCrossConnectionPeering"]: + """Creates or updates a peering in the specified ExpressRouteCrossConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param cross_connection_name: The name of the ExpressRouteCrossConnection. + :type cross_connection_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :param peering_parameters: Parameters supplied to the create or update + ExpressRouteCrossConnection peering operation. + :type peering_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteCrossConnectionPeering or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteCrossConnectionPeering] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteCrossConnectionPeering"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + cross_connection_name=cross_connection_name, + peering_name=peering_name, + peering_parameters=peering_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteCrossConnectionPeering', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCrossConnections/{crossConnectionName}/peerings/{peeringName}"} # type: ignore +class ExpressRoutePortsLocationsOperations(object): + """ExpressRoutePortsLocationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ExpressRoutePortsLocationListResult"]: + """Retrieves all ExpressRoutePort peering locations. Does not return available bandwidths for each + location. Available bandwidths can only be obtained when retrieving a specific peering + location. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRoutePortsLocationListResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsLocationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortsLocationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_ports_locations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_ports_locations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRoutePortsLocationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ExpressRoutePortsLocations"} # type: ignore + + @distributed_trace + def get( + self, + location_name: str, + **kwargs: Any + ) -> "_models.ExpressRoutePortsLocation": + """Retrieves a single ExpressRoutePort peering location, including the list of available + bandwidths available at said peering location. + + :param location_name: Name of the requested ExpressRoutePort peering location. + :type location_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRoutePortsLocation, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortsLocation + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortsLocation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_ports_locations_get_request( + subscription_id=self._config.subscription_id, + location_name=location_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRoutePortsLocation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ExpressRoutePortsLocations/{locationName}"} # type: ignore + +class ExpressRoutePortsOperations(object): + """ExpressRoutePortsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_ports_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> "_models.ExpressRoutePort": + """Retrieves the requested ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of ExpressRoutePort. + :type express_route_port_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRoutePort, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePort"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_ports_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + express_route_port_name: str, + parameters: "_models.ExpressRoutePort", + **kwargs: Any + ) -> "_models.ExpressRoutePort": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePort"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ExpressRoutePort') + + request = build_express_route_ports_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + express_route_port_name: str, + parameters: "_models.ExpressRoutePort", + **kwargs: Any + ) -> LROPoller["_models.ExpressRoutePort"]: + """Creates or updates the specified ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :param parameters: Parameters supplied to the create ExpressRoutePort operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRoutePort or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePort"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + express_route_port_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ExpressRoutePort": + """Update ExpressRoutePort tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :param parameters: Parameters supplied to update ExpressRoutePort resource tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRoutePort, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePort + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePort"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_express_route_ports_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRoutePort', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}"} # type: ignore + + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ExpressRoutePortListResult"]: + """List all the ExpressRoutePort resources in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRoutePortListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_ports_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_ports_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRoutePortListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ExpressRoutePortListResult"]: + """List all the ExpressRoutePort resources in the specified subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRoutePortListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_ports_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_ports_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRoutePortListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ExpressRoutePorts"} # type: ignore + + @distributed_trace + def generate_loa( + self, + resource_group_name: str, + express_route_port_name: str, + request: "_models.GenerateExpressRoutePortsLOARequest", + **kwargs: Any + ) -> "_models.GenerateExpressRoutePortsLOAResult": + """Generate a letter of authorization for the requested ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of ExpressRoutePort. + :type express_route_port_name: str + :param request: Request parameters supplied to generate a letter of authorization. + :type request: ~azure.mgmt.network.v2021_08_01.models.GenerateExpressRoutePortsLOARequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: GenerateExpressRoutePortsLOAResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.GenerateExpressRoutePortsLOAResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.GenerateExpressRoutePortsLOAResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'GenerateExpressRoutePortsLOARequest') + + request = build_express_route_ports_generate_loa_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.generate_loa.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('GenerateExpressRoutePortsLOAResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + generate_loa.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/generateLoa"} # type: ignore + +class ExpressRouteLinksOperations(object): + """ExpressRouteLinksOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + express_route_port_name: str, + link_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteLink": + """Retrieves the specified ExpressRouteLink resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :param link_name: The name of the ExpressRouteLink resource. + :type link_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteLink, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteLink + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteLink"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_links_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + link_name=link_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteLink', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}/links/{linkName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> Iterable["_models.ExpressRouteLinkListResult"]: + """Retrieve the ExpressRouteLink sub-resources of the specified ExpressRoutePort resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the ExpressRoutePort resource. + :type express_route_port_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRouteLinkListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRouteLinkListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteLinkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_links_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_links_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRouteLinkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ExpressRoutePorts/{expressRoutePortName}/links"} # type: ignore +class ExpressRoutePortAuthorizationsOperations(object): + """ExpressRoutePortAuthorizationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_port_authorizations_delete_request_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified authorization from the specified express route port. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the express route port. + :type express_route_port_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + **kwargs: Any + ) -> "_models.ExpressRoutePortAuthorization": + """Gets the specified authorization from the specified express route port. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the express route port. + :type express_route_port_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRoutePortAuthorization, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorization + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortAuthorization"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_port_authorizations_get_request( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRoutePortAuthorization', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + authorization_parameters: "_models.ExpressRoutePortAuthorization", + **kwargs: Any + ) -> "_models.ExpressRoutePortAuthorization": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortAuthorization"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(authorization_parameters, 'ExpressRoutePortAuthorization') + + request = build_express_route_port_authorizations_create_or_update_request_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRoutePortAuthorization', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRoutePortAuthorization', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + express_route_port_name: str, + authorization_name: str, + authorization_parameters: "_models.ExpressRoutePortAuthorization", + **kwargs: Any + ) -> LROPoller["_models.ExpressRoutePortAuthorization"]: + """Creates or updates an authorization in the specified express route port. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the express route port. + :type express_route_port_name: str + :param authorization_name: The name of the authorization. + :type authorization_name: str + :param authorization_parameters: Parameters supplied to the create or update express route port + authorization operation. + :type authorization_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorization + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRoutePortAuthorization or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorization] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortAuthorization"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + authorization_name=authorization_name, + authorization_parameters=authorization_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRoutePortAuthorization', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations/{authorizationName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + express_route_port_name: str, + **kwargs: Any + ) -> Iterable["_models.ExpressRoutePortAuthorizationListResult"]: + """Gets all authorizations in an express route port. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_port_name: The name of the express route port. + :type express_route_port_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ExpressRoutePortAuthorizationListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ExpressRoutePortAuthorizationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRoutePortAuthorizationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_express_route_port_authorizations_list_request( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_express_route_port_authorizations_list_request( + resource_group_name=resource_group_name, + express_route_port_name=express_route_port_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ExpressRoutePortAuthorizationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRoutePorts/{expressRoutePortName}/authorizations"} # type: ignore +class FirewallPoliciesOperations(object): + """FirewallPoliciesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policies_delete_request_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified Firewall Policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + firewall_policy_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.FirewallPolicy": + """Gets the specified Firewall Policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FirewallPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policies_get_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.FirewallPolicy", + **kwargs: Any + ) -> "_models.FirewallPolicy": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FirewallPolicy') + + request = build_firewall_policies_create_or_update_request_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.FirewallPolicy", + **kwargs: Any + ) -> LROPoller["_models.FirewallPolicy"]: + """Creates or updates the specified Firewall Policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: Parameters supplied to the create or update Firewall Policy operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicy + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either FirewallPolicy or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.FirewallPolicy] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicy"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.FirewallPolicy": + """Updates tags of a Azure Firewall Policy resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: Parameters supplied to update Azure Firewall Policy tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FirewallPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_firewall_policies_update_tags_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.FirewallPolicyListResult"]: + """Lists all Firewall Policies in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FirewallPolicyListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_firewall_policies_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_firewall_policies_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("FirewallPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.FirewallPolicyListResult"]: + """Gets all the Firewall Policies in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FirewallPolicyListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_firewall_policies_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_firewall_policies_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("FirewallPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/firewallPolicies"} # type: ignore +class FirewallPolicyRuleCollectionGroupsOperations(object): + """FirewallPolicyRuleCollectionGroupsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policy_rule_collection_groups_delete_request_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified FirewallPolicyRuleCollectionGroup. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param rule_collection_group_name: The name of the FirewallPolicyRuleCollectionGroup. + :type rule_collection_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + **kwargs: Any + ) -> "_models.FirewallPolicyRuleCollectionGroup": + """Gets the specified FirewallPolicyRuleCollectionGroup. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param rule_collection_group_name: The name of the FirewallPolicyRuleCollectionGroup. + :type rule_collection_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FirewallPolicyRuleCollectionGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyRuleCollectionGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policy_rule_collection_groups_get_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FirewallPolicyRuleCollectionGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + parameters: "_models.FirewallPolicyRuleCollectionGroup", + **kwargs: Any + ) -> "_models.FirewallPolicyRuleCollectionGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyRuleCollectionGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FirewallPolicyRuleCollectionGroup') + + request = build_firewall_policy_rule_collection_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FirewallPolicyRuleCollectionGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('FirewallPolicyRuleCollectionGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + firewall_policy_name: str, + rule_collection_group_name: str, + parameters: "_models.FirewallPolicyRuleCollectionGroup", + **kwargs: Any + ) -> LROPoller["_models.FirewallPolicyRuleCollectionGroup"]: + """Creates or updates the specified FirewallPolicyRuleCollectionGroup. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param rule_collection_group_name: The name of the FirewallPolicyRuleCollectionGroup. + :type rule_collection_group_name: str + :param parameters: Parameters supplied to the create or update + FirewallPolicyRuleCollectionGroup operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either FirewallPolicyRuleCollectionGroup or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyRuleCollectionGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + rule_collection_group_name=rule_collection_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FirewallPolicyRuleCollectionGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> Iterable["_models.FirewallPolicyRuleCollectionGroupListResult"]: + """Lists all FirewallPolicyRuleCollectionGroups in a FirewallPolicy resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FirewallPolicyRuleCollectionGroupListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.FirewallPolicyRuleCollectionGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.FirewallPolicyRuleCollectionGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_firewall_policy_rule_collection_groups_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_firewall_policy_rule_collection_groups_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("FirewallPolicyRuleCollectionGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups"} # type: ignore +class FirewallPolicyIdpsSignaturesOperations(object): + """FirewallPolicyIdpsSignaturesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.IDPSQueryObject", + **kwargs: Any + ) -> "_models.QueryResults": + """Retrieves the current status of IDPS signatures for the relevant policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: + :type parameters: ~azure.mgmt.network.v2021_08_01.models.IDPSQueryObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: QueryResults, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.QueryResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.QueryResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'IDPSQueryObject') + + request = build_firewall_policy_idps_signatures_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('QueryResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/listIdpsSignatures"} # type: ignore + +class FirewallPolicyIdpsSignaturesOverridesOperations(object): + """FirewallPolicyIdpsSignaturesOverridesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def patch( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.SignaturesOverrides", + **kwargs: Any + ) -> "_models.SignaturesOverrides": + """Will update the status of policy's signature overrides for IDPS. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: Will contain all properties of the object to put. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignaturesOverrides, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignaturesOverrides"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SignaturesOverrides') + + request = build_firewall_policy_idps_signatures_overrides_patch_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.patch.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignaturesOverrides', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + patch.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides/default"} # type: ignore + + + @distributed_trace + def put( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.SignaturesOverrides", + **kwargs: Any + ) -> "_models.SignaturesOverrides": + """Will override/create a new signature overrides for the policy's IDPS. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: Will contain all properties of the object to put. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignaturesOverrides, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignaturesOverrides"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SignaturesOverrides') + + request = build_firewall_policy_idps_signatures_overrides_put_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.put.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignaturesOverrides', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + put.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides/default"} # type: ignore + + + @distributed_trace + def get( + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> "_models.SignaturesOverrides": + """Returns all signatures overrides for a specific policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignaturesOverrides, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverrides + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignaturesOverrides"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policy_idps_signatures_overrides_get_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignaturesOverrides', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides/default"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + firewall_policy_name: str, + **kwargs: Any + ) -> "_models.SignaturesOverridesList": + """Returns all signatures overrides objects for a specific policy as a list containing a single + value. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignaturesOverridesList, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignaturesOverridesList + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignaturesOverridesList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_firewall_policy_idps_signatures_overrides_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignaturesOverridesList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/signatureOverrides"} # type: ignore + +class FirewallPolicyIdpsSignaturesFilterValuesOperations(object): + """FirewallPolicyIdpsSignaturesFilterValuesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + firewall_policy_name: str, + parameters: "_models.SignatureOverridesFilterValuesQuery", + **kwargs: Any + ) -> "_models.SignatureOverridesFilterValuesResponse": + """Retrieves the current filter values for the signatures overrides. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param firewall_policy_name: The name of the Firewall Policy. + :type firewall_policy_name: str + :param parameters: + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SignatureOverridesFilterValuesQuery + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SignatureOverridesFilterValuesResponse, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SignatureOverridesFilterValuesResponse + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SignatureOverridesFilterValuesResponse"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SignatureOverridesFilterValuesQuery') + + request = build_firewall_policy_idps_signatures_filter_values_list_request( + resource_group_name=resource_group_name, + firewall_policy_name=firewall_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SignatureOverridesFilterValuesResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/listIdpsFilterOptions"} # type: ignore + +class IpAllocationsOperations(object): + """IpAllocationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ip_allocation_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ip_allocations_delete_request_initial( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ip_allocation_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified IpAllocation. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_allocation_name: The name of the IpAllocation. + :type ip_allocation_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + ip_allocation_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.IpAllocation": + """Gets the specified IpAllocation by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_allocation_name: The name of the IpAllocation. + :type ip_allocation_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IpAllocation, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IpAllocation + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ip_allocations_get_request( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IpAllocation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + ip_allocation_name: str, + parameters: "_models.IpAllocation", + **kwargs: Any + ) -> "_models.IpAllocation": + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'IpAllocation') + + request = build_ip_allocations_create_or_update_request_initial( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('IpAllocation', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('IpAllocation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + ip_allocation_name: str, + parameters: "_models.IpAllocation", + **kwargs: Any + ) -> LROPoller["_models.IpAllocation"]: + """Creates or updates an IpAllocation in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_allocation_name: The name of the IpAllocation. + :type ip_allocation_name: str + :param parameters: Parameters supplied to the create or update virtual network operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.IpAllocation + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either IpAllocation or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.IpAllocation] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('IpAllocation', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + ip_allocation_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.IpAllocation": + """Updates a IpAllocation tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_allocation_name: The name of the IpAllocation. + :type ip_allocation_name: str + :param parameters: Parameters supplied to update IpAllocation tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IpAllocation, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IpAllocation + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_ip_allocations_update_tags_request( + resource_group_name=resource_group_name, + ip_allocation_name=ip_allocation_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IpAllocation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations/{ipAllocationName}"} # type: ignore + + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.IpAllocationListResult"]: + """Gets all IpAllocations in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either IpAllocationListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.IpAllocationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ip_allocations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ip_allocations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("IpAllocationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/IpAllocations"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.IpAllocationListResult"]: + """Gets all IpAllocations in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either IpAllocationListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.IpAllocationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpAllocationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ip_allocations_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ip_allocations_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("IpAllocationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/IpAllocations"} # type: ignore +class IpGroupsOperations(object): + """IpGroupsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + ip_groups_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.IpGroup": + """Gets the specified ipGroups. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_groups_name: The name of the ipGroups. + :type ip_groups_name: str + :param expand: Expands resourceIds (of Firewalls/Network Security Groups etc.) back referenced + by the IpGroups resource. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IpGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IpGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ip_groups_get_request( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IpGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + ip_groups_name: str, + parameters: "_models.IpGroup", + **kwargs: Any + ) -> "_models.IpGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'IpGroup') + + request = build_ip_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('IpGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('IpGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + ip_groups_name: str, + parameters: "_models.IpGroup", + **kwargs: Any + ) -> LROPoller["_models.IpGroup"]: + """Creates or updates an ipGroups in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_groups_name: The name of the ipGroups. + :type ip_groups_name: str + :param parameters: Parameters supplied to the create or update IpGroups operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.IpGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either IpGroup or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.IpGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('IpGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + @distributed_trace + def update_groups( + self, + resource_group_name: str, + ip_groups_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.IpGroup": + """Updates tags of an IpGroups resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_groups_name: The name of the ipGroups. + :type ip_groups_name: str + :param parameters: Parameters supplied to the update ipGroups operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IpGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IpGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_ip_groups_update_groups_request( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_groups.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IpGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_groups.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ip_groups_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_ip_groups_delete_request_initial( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + ip_groups_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified ipGroups. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param ip_groups_name: The name of the ipGroups. + :type ip_groups_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + ip_groups_name=ip_groups_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups/{ipGroupsName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.IpGroupListResult"]: + """Gets all IpGroups in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either IpGroupListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.IpGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ip_groups_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ip_groups_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("IpGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ipGroups"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.IpGroupListResult"]: + """Gets all IpGroups in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either IpGroupListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.IpGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.IpGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_ip_groups_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_ip_groups_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("IpGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ipGroups"} # type: ignore +class LoadBalancersOperations(object): + """LoadBalancersOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancers_delete_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + load_balancer_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.LoadBalancer": + """Gets the specified load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LoadBalancer, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LoadBalancer + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancer"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancers_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LoadBalancer', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + load_balancer_name: str, + parameters: "_models.LoadBalancer", + **kwargs: Any + ) -> "_models.LoadBalancer": + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancer"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'LoadBalancer') + + request = build_load_balancers_create_or_update_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('LoadBalancer', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('LoadBalancer', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + load_balancer_name: str, + parameters: "_models.LoadBalancer", + **kwargs: Any + ) -> LROPoller["_models.LoadBalancer"]: + """Creates or updates a load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param parameters: Parameters supplied to the create or update load balancer operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.LoadBalancer + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either LoadBalancer or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.LoadBalancer] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancer"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('LoadBalancer', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + load_balancer_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.LoadBalancer": + """Updates a load balancer tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param parameters: Parameters supplied to update load balancer tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LoadBalancer, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LoadBalancer + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancer"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_load_balancers_update_tags_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LoadBalancer', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.LoadBalancerListResult"]: + """Gets all the load balancers in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancers_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancers_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/loadBalancers"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.LoadBalancerListResult"]: + """Gets all the load balancers in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancers_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancers_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers"} # type: ignore + + def _swap_public_ip_addresses_initial( # pylint: disable=inconsistent-return-statements + self, + location: str, + parameters: "_models.LoadBalancerVipSwapRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'LoadBalancerVipSwapRequest') + + request = build_load_balancers_swap_public_ip_addresses_request_initial( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._swap_public_ip_addresses_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _swap_public_ip_addresses_initial.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/setLoadBalancerFrontendPublicIpAddresses"} # type: ignore + + + @distributed_trace + def begin_swap_public_ip_addresses( # pylint: disable=inconsistent-return-statements + self, + location: str, + parameters: "_models.LoadBalancerVipSwapRequest", + **kwargs: Any + ) -> LROPoller[None]: + """Swaps VIPs between two load balancers. + + :param location: The region where load balancers are located at. + :type location: str + :param parameters: Parameters that define which VIPs should be swapped. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.LoadBalancerVipSwapRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._swap_public_ip_addresses_initial( + location=location, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_swap_public_ip_addresses.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/setLoadBalancerFrontendPublicIpAddresses"} # type: ignore + + def _list_inbound_nat_rule_port_mappings_initial( + self, + group_name: str, + load_balancer_name: str, + backend_pool_name: str, + parameters: "_models.QueryInboundNatRulePortMappingRequest", + **kwargs: Any + ) -> "_models.BackendAddressInboundNatRulePortMappings": + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressInboundNatRulePortMappings"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'QueryInboundNatRulePortMappingRequest') + + request = build_load_balancers_list_inbound_nat_rule_port_mappings_request_initial( + group_name=group_name, + load_balancer_name=load_balancer_name, + backend_pool_name=backend_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._list_inbound_nat_rule_port_mappings_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('BackendAddressInboundNatRulePortMappings', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('BackendAddressInboundNatRulePortMappings', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_inbound_nat_rule_port_mappings_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendPoolName}/queryInboundNatRulePortMapping"} # type: ignore + + + @distributed_trace + def begin_list_inbound_nat_rule_port_mappings( + self, + group_name: str, + load_balancer_name: str, + backend_pool_name: str, + parameters: "_models.QueryInboundNatRulePortMappingRequest", + **kwargs: Any + ) -> LROPoller["_models.BackendAddressInboundNatRulePortMappings"]: + """List of inbound NAT rule port mappings. + + :param group_name: The name of the resource group. + :type group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param backend_pool_name: The name of the load balancer backend address pool. + :type backend_pool_name: str + :param parameters: Query inbound NAT rule port mapping request. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.QueryInboundNatRulePortMappingRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either BackendAddressInboundNatRulePortMappings + or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.BackendAddressInboundNatRulePortMappings] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressInboundNatRulePortMappings"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_inbound_nat_rule_port_mappings_initial( + group_name=group_name, + load_balancer_name=load_balancer_name, + backend_pool_name=backend_pool_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BackendAddressInboundNatRulePortMappings', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_inbound_nat_rule_port_mappings.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendPoolName}/queryInboundNatRulePortMapping"} # type: ignore +class LoadBalancerBackendAddressPoolsOperations(object): + """LoadBalancerBackendAddressPoolsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> Iterable["_models.LoadBalancerBackendAddressPoolListResult"]: + """Gets all the load balancer backed address pools. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerBackendAddressPoolListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerBackendAddressPoolListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerBackendAddressPoolListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_backend_address_pools_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_backend_address_pools_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerBackendAddressPoolListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + **kwargs: Any + ) -> "_models.BackendAddressPool": + """Gets load balancer backend address pool. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param backend_address_pool_name: The name of the backend address pool. + :type backend_address_pool_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: BackendAddressPool, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.BackendAddressPool + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressPool"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_backend_address_pools_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('BackendAddressPool', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + parameters: "_models.BackendAddressPool", + **kwargs: Any + ) -> "_models.BackendAddressPool": + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressPool"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'BackendAddressPool') + + request = build_load_balancer_backend_address_pools_create_or_update_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('BackendAddressPool', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('BackendAddressPool', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + parameters: "_models.BackendAddressPool", + **kwargs: Any + ) -> LROPoller["_models.BackendAddressPool"]: + """Creates or updates a load balancer backend address pool. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param backend_address_pool_name: The name of the backend address pool. + :type backend_address_pool_name: str + :param parameters: Parameters supplied to the create or update load balancer backend address + pool operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.BackendAddressPool + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either BackendAddressPool or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.BackendAddressPool] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackendAddressPool"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BackendAddressPool', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_backend_address_pools_delete_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + backend_address_pool_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified load balancer backend address pool. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param backend_address_pool_name: The name of the backend address pool. + :type backend_address_pool_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + backend_address_pool_name=backend_address_pool_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/backendAddressPools/{backendAddressPoolName}"} # type: ignore +class LoadBalancerFrontendIPConfigurationsOperations(object): + """LoadBalancerFrontendIPConfigurationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> Iterable["_models.LoadBalancerFrontendIPConfigurationListResult"]: + """Gets all the load balancer frontend IP configurations. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerFrontendIPConfigurationListResult or + the result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerFrontendIPConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerFrontendIPConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_frontend_ip_configurations_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_frontend_ip_configurations_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerFrontendIPConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/frontendIPConfigurations"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + load_balancer_name: str, + frontend_ip_configuration_name: str, + **kwargs: Any + ) -> "_models.FrontendIPConfiguration": + """Gets load balancer frontend IP configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param frontend_ip_configuration_name: The name of the frontend IP configuration. + :type frontend_ip_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FrontendIPConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FrontendIPConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FrontendIPConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_frontend_ip_configurations_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + frontend_ip_configuration_name=frontend_ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FrontendIPConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/frontendIPConfigurations/{frontendIPConfigurationName}"} # type: ignore + +class InboundNatRulesOperations(object): + """InboundNatRulesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> Iterable["_models.InboundNatRuleListResult"]: + """Gets all the inbound NAT rules in a load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either InboundNatRuleListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.InboundNatRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundNatRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_inbound_nat_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_inbound_nat_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("InboundNatRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_inbound_nat_rules_delete_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified load balancer inbound NAT rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param inbound_nat_rule_name: The name of the inbound NAT rule. + :type inbound_nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.InboundNatRule": + """Gets the specified load balancer inbound NAT rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param inbound_nat_rule_name: The name of the inbound NAT rule. + :type inbound_nat_rule_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: InboundNatRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.InboundNatRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_inbound_nat_rules_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('InboundNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + inbound_nat_rule_parameters: "_models.InboundNatRule", + **kwargs: Any + ) -> "_models.InboundNatRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(inbound_nat_rule_parameters, 'InboundNatRule') + + request = build_inbound_nat_rules_create_or_update_request_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('InboundNatRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('InboundNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + load_balancer_name: str, + inbound_nat_rule_name: str, + inbound_nat_rule_parameters: "_models.InboundNatRule", + **kwargs: Any + ) -> LROPoller["_models.InboundNatRule"]: + """Creates or updates a load balancer inbound NAT rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param inbound_nat_rule_name: The name of the inbound NAT rule. + :type inbound_nat_rule_name: str + :param inbound_nat_rule_parameters: Parameters supplied to the create or update inbound NAT + rule operation. + :type inbound_nat_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.InboundNatRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either InboundNatRule or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.InboundNatRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundNatRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + inbound_nat_rule_name=inbound_nat_rule_name, + inbound_nat_rule_parameters=inbound_nat_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('InboundNatRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/inboundNatRules/{inboundNatRuleName}"} # type: ignore +class LoadBalancerLoadBalancingRulesOperations(object): + """LoadBalancerLoadBalancingRulesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> Iterable["_models.LoadBalancerLoadBalancingRuleListResult"]: + """Gets all the load balancing rules in a load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerLoadBalancingRuleListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerLoadBalancingRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerLoadBalancingRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_load_balancing_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_load_balancing_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerLoadBalancingRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + load_balancer_name: str, + load_balancing_rule_name: str, + **kwargs: Any + ) -> "_models.LoadBalancingRule": + """Gets the specified load balancer load balancing rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param load_balancing_rule_name: The name of the load balancing rule. + :type load_balancing_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LoadBalancingRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LoadBalancingRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancingRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_load_balancing_rules_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + load_balancing_rule_name=load_balancing_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LoadBalancingRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/loadBalancingRules/{loadBalancingRuleName}"} # type: ignore + +class LoadBalancerOutboundRulesOperations(object): + """LoadBalancerOutboundRulesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> Iterable["_models.LoadBalancerOutboundRuleListResult"]: + """Gets all the outbound rules in a load balancer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerOutboundRuleListResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerOutboundRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerOutboundRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_outbound_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_outbound_rules_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerOutboundRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/outboundRules"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + load_balancer_name: str, + outbound_rule_name: str, + **kwargs: Any + ) -> "_models.OutboundRule": + """Gets the specified load balancer outbound rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param outbound_rule_name: The name of the outbound rule. + :type outbound_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: OutboundRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.OutboundRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.OutboundRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_outbound_rules_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + outbound_rule_name=outbound_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('OutboundRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/outboundRules/{outboundRuleName}"} # type: ignore + +class LoadBalancerNetworkInterfacesOperations(object): + """LoadBalancerNetworkInterfacesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceListResult"]: + """Gets associated load balancer network interfaces. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_network_interfaces_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_network_interfaces_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/networkInterfaces"} # type: ignore +class LoadBalancerProbesOperations(object): + """LoadBalancerProbesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + load_balancer_name: str, + **kwargs: Any + ) -> Iterable["_models.LoadBalancerProbeListResult"]: + """Gets all the load balancer probes. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LoadBalancerProbeListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.LoadBalancerProbeListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LoadBalancerProbeListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_load_balancer_probes_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_load_balancer_probes_list_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("LoadBalancerProbeListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + load_balancer_name: str, + probe_name: str, + **kwargs: Any + ) -> "_models.Probe": + """Gets load balancer probe. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param load_balancer_name: The name of the load balancer. + :type load_balancer_name: str + :param probe_name: The name of the probe. + :type probe_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Probe, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.Probe + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Probe"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_load_balancer_probes_get_request( + resource_group_name=resource_group_name, + load_balancer_name=load_balancer_name, + probe_name=probe_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Probe', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}"} # type: ignore + +class NatGatewaysOperations(object): + """NatGatewaysOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + nat_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_nat_gateways_delete_request_initial( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + nat_gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified nat gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param nat_gateway_name: The name of the nat gateway. + :type nat_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + nat_gateway_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NatGateway": + """Gets the specified nat gateway in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param nat_gateway_name: The name of the nat gateway. + :type nat_gateway_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NatGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NatGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_nat_gateways_get_request( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NatGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + nat_gateway_name: str, + parameters: "_models.NatGateway", + **kwargs: Any + ) -> Optional["_models.NatGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.NatGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NatGateway') + + request = build_nat_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('NatGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NatGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + nat_gateway_name: str, + parameters: "_models.NatGateway", + **kwargs: Any + ) -> LROPoller["_models.NatGateway"]: + """Creates or updates a nat gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param nat_gateway_name: The name of the nat gateway. + :type nat_gateway_name: str + :param parameters: Parameters supplied to the create or update nat gateway operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NatGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either NatGateway or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.NatGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NatGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + nat_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NatGateway": + """Updates nat gateway tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param nat_gateway_name: The name of the nat gateway. + :type nat_gateway_name: str + :param parameters: Parameters supplied to update nat gateway tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NatGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NatGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_nat_gateways_update_tags_request( + resource_group_name=resource_group_name, + nat_gateway_name=nat_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NatGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways/{natGatewayName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.NatGatewayListResult"]: + """Gets all the Nat Gateways in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NatGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NatGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_nat_gateways_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_nat_gateways_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NatGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/natGateways"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.NatGatewayListResult"]: + """Gets all nat gateways in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NatGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NatGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NatGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_nat_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_nat_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NatGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/natGateways"} # type: ignore +class NetworkInterfaceIPConfigurationsOperations(object): + """NetworkInterfaceIPConfigurationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceIPConfigurationListResult"]: + """Get all ip configurations in a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceIPConfigurationListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceIPConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interface_ip_configurations_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interface_ip_configurations_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceIPConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/ipConfigurations"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_interface_name: str, + ip_configuration_name: str, + **kwargs: Any + ) -> "_models.NetworkInterfaceIPConfiguration": + """Gets the specified network interface ip configuration. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param ip_configuration_name: The name of the ip configuration name. + :type ip_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterfaceIPConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceIPConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceIPConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interface_ip_configurations_get_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + ip_configuration_name=ip_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterfaceIPConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/ipConfigurations/{ipConfigurationName}"} # type: ignore + +class NetworkInterfaceLoadBalancersOperations(object): + """NetworkInterfaceLoadBalancersOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceLoadBalancerListResult"]: + """List all load balancers in a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceLoadBalancerListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceLoadBalancerListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceLoadBalancerListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interface_load_balancers_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interface_load_balancers_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceLoadBalancerListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/loadBalancers"} # type: ignore +class NetworkInterfaceTapConfigurationsOperations(object): + """NetworkInterfaceTapConfigurationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interface_tap_configurations_delete_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified tap configuration from the NetworkInterface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param tap_configuration_name: The name of the tap configuration. + :type tap_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + **kwargs: Any + ) -> "_models.NetworkInterfaceTapConfiguration": + """Get the specified tap configuration on a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param tap_configuration_name: The name of the tap configuration. + :type tap_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkInterfaceTapConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceTapConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_interface_tap_configurations_get_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkInterfaceTapConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + tap_configuration_parameters: "_models.NetworkInterfaceTapConfiguration", + **kwargs: Any + ) -> "_models.NetworkInterfaceTapConfiguration": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceTapConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(tap_configuration_parameters, 'NetworkInterfaceTapConfiguration') + + request = build_network_interface_tap_configurations_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkInterfaceTapConfiguration', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkInterfaceTapConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + network_interface_name: str, + tap_configuration_name: str, + tap_configuration_parameters: "_models.NetworkInterfaceTapConfiguration", + **kwargs: Any + ) -> LROPoller["_models.NetworkInterfaceTapConfiguration"]: + """Creates or updates a Tap configuration in the specified NetworkInterface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :param tap_configuration_name: The name of the tap configuration. + :type tap_configuration_name: str + :param tap_configuration_parameters: Parameters supplied to the create or update tap + configuration operation. + :type tap_configuration_parameters: + ~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either NetworkInterfaceTapConfiguration or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfiguration] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceTapConfiguration"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + tap_configuration_name=tap_configuration_name, + tap_configuration_parameters=tap_configuration_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkInterfaceTapConfiguration', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations/{tapConfigurationName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_interface_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkInterfaceTapConfigurationListResult"]: + """Get all Tap configurations in a network interface. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_interface_name: The name of the network interface. + :type network_interface_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkInterfaceTapConfigurationListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkInterfaceTapConfigurationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkInterfaceTapConfigurationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_interface_tap_configurations_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_interface_tap_configurations_list_request( + resource_group_name=resource_group_name, + network_interface_name=network_interface_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkInterfaceTapConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/tapConfigurations"} # type: ignore +class NetworkProfilesOperations(object): + """NetworkProfilesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_profile_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_profiles_delete_request_initial( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_profile_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified network profile. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_profile_name: The name of the NetworkProfile. + :type network_profile_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_profile_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkProfile": + """Gets the specified network profile in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_profile_name: The name of the public IP prefix. + :type network_profile_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkProfile, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkProfile + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfile"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_profiles_get_request( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkProfile', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + + @distributed_trace + def create_or_update( + self, + resource_group_name: str, + network_profile_name: str, + parameters: "_models.NetworkProfile", + **kwargs: Any + ) -> "_models.NetworkProfile": + """Creates or updates a network profile. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_profile_name: The name of the network profile. + :type network_profile_name: str + :param parameters: Parameters supplied to the create or update network profile operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkProfile + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkProfile, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkProfile + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfile"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkProfile') + + request = build_network_profiles_create_or_update_request( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.create_or_update.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkProfile', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkProfile', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + network_profile_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkProfile": + """Updates network profile tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_profile_name: The name of the network profile. + :type network_profile_name: str + :param parameters: Parameters supplied to update network profile tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkProfile, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkProfile + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfile"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_profiles_update_tags_request( + resource_group_name=resource_group_name, + network_profile_name=network_profile_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkProfile', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.NetworkProfileListResult"]: + """Gets all the network profiles in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkProfileListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkProfileListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfileListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_profiles_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_profiles_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkProfileListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkProfiles"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkProfileListResult"]: + """Gets all network profiles in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkProfileListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkProfileListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkProfileListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_profiles_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_profiles_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkProfileListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles"} # type: ignore +class NetworkSecurityGroupsOperations(object): + """NetworkSecurityGroupsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_security_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_security_groups_delete_request_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_security_group_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_security_group_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkSecurityGroup": + """Gets the specified network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkSecurityGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_security_groups_get_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + network_security_group_name: str, + parameters: "_models.NetworkSecurityGroup", + **kwargs: Any + ) -> "_models.NetworkSecurityGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkSecurityGroup') + + request = build_network_security_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + network_security_group_name: str, + parameters: "_models.NetworkSecurityGroup", + **kwargs: Any + ) -> LROPoller["_models.NetworkSecurityGroup"]: + """Creates or updates a network security group in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param parameters: Parameters supplied to the create or update network security group + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either NetworkSecurityGroup or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + network_security_group_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkSecurityGroup": + """Updates a network security group tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param parameters: Parameters supplied to update network security group tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkSecurityGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_security_groups_update_tags_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkSecurityGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.NetworkSecurityGroupListResult"]: + """Gets all network security groups in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkSecurityGroupListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_security_groups_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_security_groups_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkSecurityGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkSecurityGroups"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkSecurityGroupListResult"]: + """Gets all network security groups in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkSecurityGroupListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkSecurityGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkSecurityGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_security_groups_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_security_groups_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkSecurityGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups"} # type: ignore +class SecurityRulesOperations(object): + """SecurityRulesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_security_rules_delete_request_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified network security rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param security_rule_name: The name of the security rule. + :type security_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + **kwargs: Any + ) -> "_models.SecurityRule": + """Get the specified network security rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param security_rule_name: The name of the security rule. + :type security_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SecurityRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SecurityRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_security_rules_get_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SecurityRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + security_rule_parameters: "_models.SecurityRule", + **kwargs: Any + ) -> "_models.SecurityRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(security_rule_parameters, 'SecurityRule') + + request = build_security_rules_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('SecurityRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('SecurityRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + network_security_group_name: str, + security_rule_name: str, + security_rule_parameters: "_models.SecurityRule", + **kwargs: Any + ) -> LROPoller["_models.SecurityRule"]: + """Creates or updates a security rule in the specified network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param security_rule_name: The name of the security rule. + :type security_rule_name: str + :param security_rule_parameters: Parameters supplied to the create or update network security + rule operation. + :type security_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.SecurityRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either SecurityRule or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.SecurityRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + security_rule_name=security_rule_name, + security_rule_parameters=security_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('SecurityRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_security_group_name: str, + **kwargs: Any + ) -> Iterable["_models.SecurityRuleListResult"]: + """Gets all security rules in a network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SecurityRuleListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.SecurityRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_security_rules_list_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_security_rules_list_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("SecurityRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules"} # type: ignore +class DefaultSecurityRulesOperations(object): + """DefaultSecurityRulesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + network_security_group_name: str, + **kwargs: Any + ) -> Iterable["_models.SecurityRuleListResult"]: + """Gets all default security rules in a network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SecurityRuleListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.SecurityRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_default_security_rules_list_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_default_security_rules_list_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("SecurityRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/defaultSecurityRules"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_security_group_name: str, + default_security_rule_name: str, + **kwargs: Any + ) -> "_models.SecurityRule": + """Get the specified default network security rule. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_security_group_name: The name of the network security group. + :type network_security_group_name: str + :param default_security_rule_name: The name of the default security rule. + :type default_security_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SecurityRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SecurityRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_default_security_rules_get_request( + resource_group_name=resource_group_name, + network_security_group_name=network_security_group_name, + default_security_rule_name=default_security_rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SecurityRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/defaultSecurityRules/{defaultSecurityRuleName}"} # type: ignore + +class NetworkVirtualAppliancesOperations(object): + """NetworkVirtualAppliancesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_virtual_appliance_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_virtual_appliances_delete_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_virtual_appliance_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified Network Virtual Appliance. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of Network Virtual Appliance. + :type network_virtual_appliance_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.NetworkVirtualAppliance": + """Gets the specified Network Virtual Appliance. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkVirtualAppliance, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualAppliance"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_virtual_appliances_get_request( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkVirtualAppliance": + """Updates a Network Virtual Appliance. + + :param resource_group_name: The resource group name of Network Virtual Appliance. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of Network Virtual Appliance being updated. + :type network_virtual_appliance_name: str + :param parameters: Parameters supplied to Update Network Virtual Appliance Tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkVirtualAppliance, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualAppliance"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_virtual_appliances_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + parameters: "_models.NetworkVirtualAppliance", + **kwargs: Any + ) -> "_models.NetworkVirtualAppliance": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualAppliance"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkVirtualAppliance') + + request = build_network_virtual_appliances_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + parameters: "_models.NetworkVirtualAppliance", + **kwargs: Any + ) -> LROPoller["_models.NetworkVirtualAppliance"]: + """Creates or updates the specified Network Virtual Appliance. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param parameters: Parameters supplied to the create or update Network Virtual Appliance. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either NetworkVirtualAppliance or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualAppliance] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualAppliance"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkVirtualAppliance', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkVirtualApplianceListResult"]: + """Lists all Network Virtual Appliances in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkVirtualApplianceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_virtual_appliances_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_virtual_appliances_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkVirtualApplianceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.NetworkVirtualApplianceListResult"]: + """Gets all Network Virtual Appliances in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkVirtualApplianceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_virtual_appliances_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_virtual_appliances_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkVirtualApplianceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkVirtualAppliances"} # type: ignore +class VirtualApplianceSitesOperations(object): + """VirtualApplianceSitesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_appliance_sites_delete_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified site from a Virtual Appliance. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param site_name: The name of the site. + :type site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + **kwargs: Any + ) -> "_models.VirtualApplianceSite": + """Gets the specified Virtual Appliance Site. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param site_name: The name of the site. + :type site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualApplianceSite, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSite + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualApplianceSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_appliance_sites_get_request( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualApplianceSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + parameters: "_models.VirtualApplianceSite", + **kwargs: Any + ) -> "_models.VirtualApplianceSite": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualApplianceSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualApplianceSite') + + request = build_virtual_appliance_sites_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualApplianceSite', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualApplianceSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + site_name: str, + parameters: "_models.VirtualApplianceSite", + **kwargs: Any + ) -> LROPoller["_models.VirtualApplianceSite"]: + """Creates or updates the specified Network Virtual Appliance Site. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param site_name: The name of the site. + :type site_name: str + :param parameters: Parameters supplied to the create or update Network Virtual Appliance Site + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSite + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualApplianceSite or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualApplianceSite] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualApplianceSite"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + site_name=site_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualApplianceSite', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites/{siteName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkVirtualApplianceSiteListResult"]: + """Lists all Network Virtual Appliance Sites in a Network Virtual Appliance resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkVirtualApplianceSiteListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSiteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceSiteListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_appliance_sites_list_request( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_appliance_sites_list_request( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkVirtualApplianceSiteListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/virtualApplianceSites"} # type: ignore +class VirtualApplianceSkusOperations(object): + """VirtualApplianceSkusOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.NetworkVirtualApplianceSkuListResult"]: + """List all SKUs available for a virtual appliance. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkVirtualApplianceSkuListResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSkuListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceSkuListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_appliance_skus_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_appliance_skus_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkVirtualApplianceSkuListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkVirtualApplianceSkus"} # type: ignore + + @distributed_trace + def get( + self, + sku_name: str, + **kwargs: Any + ) -> "_models.NetworkVirtualApplianceSku": + """Retrieves a single available sku for network virtual appliance. + + :param sku_name: Name of the Sku. + :type sku_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkVirtualApplianceSku, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkVirtualApplianceSku + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkVirtualApplianceSku"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_appliance_skus_get_request( + subscription_id=self._config.subscription_id, + sku_name=sku_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkVirtualApplianceSku', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkVirtualApplianceSkus/{skuName}"} # type: ignore + +class InboundSecurityRuleOperations(object): + """InboundSecurityRuleOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + rule_collection_name: str, + parameters: "_models.InboundSecurityRule", + **kwargs: Any + ) -> "_models.InboundSecurityRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundSecurityRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'InboundSecurityRule') + + request = build_inbound_security_rule_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + rule_collection_name=rule_collection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('InboundSecurityRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('InboundSecurityRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/inboundSecurityRules/{ruleCollectionName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + network_virtual_appliance_name: str, + rule_collection_name: str, + parameters: "_models.InboundSecurityRule", + **kwargs: Any + ) -> LROPoller["_models.InboundSecurityRule"]: + """Creates or updates the specified Network Virtual Appliance Inbound Security Rules. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_virtual_appliance_name: The name of the Network Virtual Appliance. + :type network_virtual_appliance_name: str + :param rule_collection_name: The name of security rule collection. + :type rule_collection_name: str + :param parameters: Parameters supplied to the create or update Network Virtual Appliance + Inbound Security Rules operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.InboundSecurityRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either InboundSecurityRule or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.InboundSecurityRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.InboundSecurityRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + network_virtual_appliance_name=network_virtual_appliance_name, + rule_collection_name=rule_collection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('InboundSecurityRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName}/inboundSecurityRules/{ruleCollectionName}"} # type: ignore +class NetworkWatchersOperations(object): # pylint: disable=too-many-public-methods + """NetworkWatchersOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def create_or_update( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NetworkWatcher", + **kwargs: Any + ) -> "_models.NetworkWatcher": + """Creates or updates a network watcher in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the network watcher resource. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NetworkWatcher + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkWatcher, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkWatcher + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcher"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkWatcher') + + request = build_network_watchers_create_or_update_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.create_or_update.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkWatcher', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('NetworkWatcher', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + + @distributed_trace + def get( + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> "_models.NetworkWatcher": + """Gets the specified network watcher by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkWatcher, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkWatcher + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcher"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_watchers_get_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkWatcher', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_network_watchers_delete_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified network watcher resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.NetworkWatcher": + """Updates a network watcher tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters supplied to update network watcher tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: NetworkWatcher, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.NetworkWatcher + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcher"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_network_watchers_update_tags_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('NetworkWatcher', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.NetworkWatcherListResult"]: + """Gets all network watchers by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkWatcherListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkWatcherListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcherListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_watchers_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_watchers_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkWatcherListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.NetworkWatcherListResult"]: + """Gets all network watchers by subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either NetworkWatcherListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.NetworkWatcherListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkWatcherListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_network_watchers_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_network_watchers_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("NetworkWatcherListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkWatchers"} # type: ignore + + @distributed_trace + def get_topology( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.TopologyParameters", + **kwargs: Any + ) -> "_models.Topology": + """Gets the current network topology by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the representation of topology. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TopologyParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Topology, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.Topology + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Topology"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TopologyParameters') + + request = build_network_watchers_get_topology_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.get_topology.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Topology', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_topology.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/topology"} # type: ignore + + + def _verify_ip_flow_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.VerificationIPFlowParameters", + **kwargs: Any + ) -> "_models.VerificationIPFlowResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VerificationIPFlowResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VerificationIPFlowParameters') + + request = build_network_watchers_verify_ip_flow_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._verify_ip_flow_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VerificationIPFlowResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('VerificationIPFlowResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _verify_ip_flow_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/ipFlowVerify"} # type: ignore + + + @distributed_trace + def begin_verify_ip_flow( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.VerificationIPFlowParameters", + **kwargs: Any + ) -> LROPoller["_models.VerificationIPFlowResult"]: + """Verify IP flow from the specified VM to a location given the currently configured NSG rules. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the IP flow to be verified. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VerificationIPFlowParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VerificationIPFlowResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VerificationIPFlowResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VerificationIPFlowResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._verify_ip_flow_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VerificationIPFlowResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_verify_ip_flow.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/ipFlowVerify"} # type: ignore + + def _get_next_hop_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NextHopParameters", + **kwargs: Any + ) -> "_models.NextHopResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NextHopResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NextHopParameters') + + request = build_network_watchers_get_next_hop_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_next_hop_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NextHopResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('NextHopResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_next_hop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/nextHop"} # type: ignore + + + @distributed_trace + def begin_get_next_hop( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NextHopParameters", + **kwargs: Any + ) -> LROPoller["_models.NextHopResult"]: + """Gets the next hop from the specified VM. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the source and destination endpoint. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.NextHopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either NextHopResult or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.NextHopResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NextHopResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_next_hop_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NextHopResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_next_hop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/nextHop"} # type: ignore + + def _get_vm_security_rules_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.SecurityGroupViewParameters", + **kwargs: Any + ) -> "_models.SecurityGroupViewResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityGroupViewResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SecurityGroupViewParameters') + + request = build_network_watchers_get_vm_security_rules_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_vm_security_rules_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('SecurityGroupViewResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('SecurityGroupViewResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_vm_security_rules_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/securityGroupView"} # type: ignore + + + @distributed_trace + def begin_get_vm_security_rules( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.SecurityGroupViewParameters", + **kwargs: Any + ) -> LROPoller["_models.SecurityGroupViewResult"]: + """Gets the configured and effective security group rules on the specified VM. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters that define the VM to check security groups for. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SecurityGroupViewParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either SecurityGroupViewResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.SecurityGroupViewResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityGroupViewResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_vm_security_rules_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('SecurityGroupViewResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_vm_security_rules.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/securityGroupView"} # type: ignore + + def _get_troubleshooting_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.TroubleshootingParameters", + **kwargs: Any + ) -> "_models.TroubleshootingResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.TroubleshootingResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TroubleshootingParameters') + + request = build_network_watchers_get_troubleshooting_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_troubleshooting_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_troubleshooting_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/troubleshoot"} # type: ignore + + + @distributed_trace + def begin_get_troubleshooting( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.TroubleshootingParameters", + **kwargs: Any + ) -> LROPoller["_models.TroubleshootingResult"]: + """Initiate troubleshooting on a specified resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that define the resource to troubleshoot. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TroubleshootingParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either TroubleshootingResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.TroubleshootingResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.TroubleshootingResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_troubleshooting_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_troubleshooting.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/troubleshoot"} # type: ignore + + def _get_troubleshooting_result_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.QueryTroubleshootingParameters", + **kwargs: Any + ) -> "_models.TroubleshootingResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.TroubleshootingResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'QueryTroubleshootingParameters') + + request = build_network_watchers_get_troubleshooting_result_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_troubleshooting_result_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_troubleshooting_result_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryTroubleshootResult"} # type: ignore + + + @distributed_trace + def begin_get_troubleshooting_result( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.QueryTroubleshootingParameters", + **kwargs: Any + ) -> LROPoller["_models.TroubleshootingResult"]: + """Get the last completed troubleshooting result on a specified resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that define the resource to query the troubleshooting result. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.QueryTroubleshootingParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either TroubleshootingResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.TroubleshootingResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.TroubleshootingResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_troubleshooting_result_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('TroubleshootingResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_troubleshooting_result.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryTroubleshootResult"} # type: ignore + + def _set_flow_log_configuration_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.FlowLogInformation", + **kwargs: Any + ) -> "_models.FlowLogInformation": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogInformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FlowLogInformation') + + request = build_network_watchers_set_flow_log_configuration_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._set_flow_log_configuration_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _set_flow_log_configuration_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/configureFlowLog"} # type: ignore + + + @distributed_trace + def begin_set_flow_log_configuration( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.FlowLogInformation", + **kwargs: Any + ) -> LROPoller["_models.FlowLogInformation"]: + """Configures flow log and traffic analytics (optional) on a specified resource. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that define the configuration of flow log. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FlowLogInformation + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either FlowLogInformation or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.FlowLogInformation] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogInformation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._set_flow_log_configuration_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_set_flow_log_configuration.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/configureFlowLog"} # type: ignore + + def _get_flow_log_status_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.FlowLogStatusParameters", + **kwargs: Any + ) -> "_models.FlowLogInformation": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogInformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FlowLogStatusParameters') + + request = build_network_watchers_get_flow_log_status_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_flow_log_status_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_flow_log_status_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryFlowLogStatus"} # type: ignore + + + @distributed_trace + def begin_get_flow_log_status( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.FlowLogStatusParameters", + **kwargs: Any + ) -> LROPoller["_models.FlowLogInformation"]: + """Queries status of flow log and traffic analytics (optional) on a specified resource. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that define a resource to query flow log and traffic analytics + (optional) status. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FlowLogStatusParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either FlowLogInformation or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.FlowLogInformation] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogInformation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_flow_log_status_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FlowLogInformation', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_flow_log_status.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/queryFlowLogStatus"} # type: ignore + + def _check_connectivity_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.ConnectivityParameters", + **kwargs: Any + ) -> "_models.ConnectivityInformation": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectivityInformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ConnectivityParameters') + + request = build_network_watchers_check_connectivity_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._check_connectivity_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ConnectivityInformation', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ConnectivityInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _check_connectivity_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectivityCheck"} # type: ignore + + + @distributed_trace + def begin_check_connectivity( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.ConnectivityParameters", + **kwargs: Any + ) -> LROPoller["_models.ConnectivityInformation"]: + """Verifies the possibility of establishing a direct TCP connection from a virtual machine to a + given endpoint including another VM or an arbitrary remote server. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that determine how the connectivity check will be performed. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ConnectivityParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ConnectivityInformation or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectivityInformation] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectivityInformation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._check_connectivity_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectivityInformation', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_check_connectivity.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectivityCheck"} # type: ignore + + def _get_azure_reachability_report_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.AzureReachabilityReportParameters", + **kwargs: Any + ) -> "_models.AzureReachabilityReport": + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureReachabilityReport"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'AzureReachabilityReportParameters') + + request = build_network_watchers_get_azure_reachability_report_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_azure_reachability_report_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('AzureReachabilityReport', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('AzureReachabilityReport', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_azure_reachability_report_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/azureReachabilityReport"} # type: ignore + + + @distributed_trace + def begin_get_azure_reachability_report( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.AzureReachabilityReportParameters", + **kwargs: Any + ) -> LROPoller["_models.AzureReachabilityReport"]: + """NOTE: This feature is currently in preview and still being tested for stability. Gets the + relative latency score for internet service providers from a specified location to Azure + regions. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that determine Azure reachability report configuration. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReportParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either AzureReachabilityReport or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.AzureReachabilityReport] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AzureReachabilityReport"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_azure_reachability_report_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('AzureReachabilityReport', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_azure_reachability_report.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/azureReachabilityReport"} # type: ignore + + def _list_available_providers_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.AvailableProvidersListParameters", + **kwargs: Any + ) -> "_models.AvailableProvidersList": + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableProvidersList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'AvailableProvidersListParameters') + + request = build_network_watchers_list_available_providers_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._list_available_providers_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('AvailableProvidersList', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('AvailableProvidersList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_available_providers_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/availableProvidersList"} # type: ignore + + + @distributed_trace + def begin_list_available_providers( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.AvailableProvidersListParameters", + **kwargs: Any + ) -> LROPoller["_models.AvailableProvidersList"]: + """NOTE: This feature is currently in preview and still being tested for stability. Lists all + available internet service providers for a specified Azure region. + + :param resource_group_name: The name of the network watcher resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher resource. + :type network_watcher_name: str + :param parameters: Parameters that scope the list of available providers. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.AvailableProvidersListParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either AvailableProvidersList or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.AvailableProvidersList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailableProvidersList"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_available_providers_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('AvailableProvidersList', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_available_providers.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/availableProvidersList"} # type: ignore + + def _get_network_configuration_diagnostic_initial( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NetworkConfigurationDiagnosticParameters", + **kwargs: Any + ) -> "_models.NetworkConfigurationDiagnosticResponse": + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkConfigurationDiagnosticResponse"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'NetworkConfigurationDiagnosticParameters') + + request = build_network_watchers_get_network_configuration_diagnostic_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_network_configuration_diagnostic_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('NetworkConfigurationDiagnosticResponse', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('NetworkConfigurationDiagnosticResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_network_configuration_diagnostic_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/networkConfigurationDiagnostic"} # type: ignore + + + @distributed_trace + def begin_get_network_configuration_diagnostic( + self, + resource_group_name: str, + network_watcher_name: str, + parameters: "_models.NetworkConfigurationDiagnosticParameters", + **kwargs: Any + ) -> LROPoller["_models.NetworkConfigurationDiagnosticResponse"]: + """Gets Network Configuration Diagnostic data to help customers understand and debug network + behavior. It provides detailed information on what security rules were applied to a specified + traffic flow and the result of evaluating these rules. Customers must provide details of a flow + like source, destination, protocol, etc. The API returns whether traffic was allowed or denied, + the rules evaluated for the specified flow and the evaluation results. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param parameters: Parameters to get network configuration diagnostic. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.NetworkConfigurationDiagnosticParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either NetworkConfigurationDiagnosticResponse or + the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.NetworkConfigurationDiagnosticResponse] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.NetworkConfigurationDiagnosticResponse"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_network_configuration_diagnostic_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('NetworkConfigurationDiagnosticResponse', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_network_configuration_diagnostic.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/networkConfigurationDiagnostic"} # type: ignore +class PacketCapturesOperations(object): + """PacketCapturesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_initial( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + parameters: "_models.PacketCapture", + **kwargs: Any + ) -> "_models.PacketCaptureResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PacketCapture') + + request = build_packet_captures_create_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PacketCaptureResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + + @distributed_trace + def begin_create( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + parameters: "_models.PacketCapture", + **kwargs: Any + ) -> LROPoller["_models.PacketCaptureResult"]: + """Create and start a packet capture on the specified VM. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param packet_capture_name: The name of the packet capture session. + :type packet_capture_name: str + :param parameters: Parameters that define the create packet capture operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PacketCapture + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PacketCaptureResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PacketCaptureResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PacketCaptureResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> "_models.PacketCaptureResult": + """Gets a packet capture session by name. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param packet_capture_name: The name of the packet capture session. + :type packet_capture_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PacketCaptureResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PacketCaptureResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_packet_captures_get_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PacketCaptureResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_packet_captures_delete_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified packet capture session. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param packet_capture_name: The name of the packet capture session. + :type packet_capture_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}"} # type: ignore + + def _stop_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_packet_captures_stop_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._stop_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _stop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/stop"} # type: ignore + + + @distributed_trace + def begin_stop( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Stops a specified packet capture session. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param packet_capture_name: The name of the packet capture session. + :type packet_capture_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._stop_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/stop"} # type: ignore + + def _get_status_initial( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> "_models.PacketCaptureQueryStatusResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureQueryStatusResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_packet_captures_get_status_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_status_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PacketCaptureQueryStatusResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('PacketCaptureQueryStatusResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_status_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/queryStatus"} # type: ignore + + + @distributed_trace + def begin_get_status( + self, + resource_group_name: str, + network_watcher_name: str, + packet_capture_name: str, + **kwargs: Any + ) -> LROPoller["_models.PacketCaptureQueryStatusResult"]: + """Query the status of a running packet capture session. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param packet_capture_name: The name given to the packet capture session. + :type packet_capture_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PacketCaptureQueryStatusResult or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PacketCaptureQueryStatusResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureQueryStatusResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_status_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + packet_capture_name=packet_capture_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PacketCaptureQueryStatusResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_status.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures/{packetCaptureName}/queryStatus"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> Iterable["_models.PacketCaptureListResult"]: + """Lists all packet capture sessions within the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PacketCaptureListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PacketCaptureListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PacketCaptureListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_packet_captures_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_packet_captures_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PacketCaptureListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/packetCaptures"} # type: ignore +class ConnectionMonitorsOperations(object): + """ConnectionMonitorsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + parameters: "_models.ConnectionMonitor", + migrate: Optional[str] = None, + **kwargs: Any + ) -> "_models.ConnectionMonitorResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ConnectionMonitor') + + request = build_connection_monitors_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + migrate=migrate, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + parameters: "_models.ConnectionMonitor", + migrate: Optional[str] = None, + **kwargs: Any + ) -> LROPoller["_models.ConnectionMonitorResult"]: + """Create or update a connection monitor. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :param parameters: Parameters that define the operation to create a connection monitor. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitor + :param migrate: Value indicating whether connection monitor V1 should be migrated to V2 format. + Default value is None. + :type migrate: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ConnectionMonitorResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + parameters=parameters, + migrate=migrate, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> "_models.ConnectionMonitorResult": + """Gets a connection monitor by name. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ConnectionMonitorResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_get_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_delete_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified connection monitor. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ConnectionMonitorResult": + """Update tags of the specified connection monitor. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :param parameters: Parameters supplied to update connection monitor tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ConnectionMonitorResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_connection_monitors_update_tags_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ConnectionMonitorResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}"} # type: ignore + + + def _stop_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_stop_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._stop_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _stop_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/stop"} # type: ignore + + + @distributed_trace + def begin_stop( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Stops the specified connection monitor. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._stop_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/stop"} # type: ignore + + def _start_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_start_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._start_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _start_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/start"} # type: ignore + + + @distributed_trace + def begin_start( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Starts the specified connection monitor. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name of the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._start_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/start"} # type: ignore + + def _query_initial( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> "_models.ConnectionMonitorQueryResult": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorQueryResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_connection_monitors_query_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._query_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ConnectionMonitorQueryResult', pipeline_response) + + if response.status_code == 202: + deserialized = self._deserialize('ConnectionMonitorQueryResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _query_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/query"} # type: ignore + + + @distributed_trace + def begin_query( + self, + resource_group_name: str, + network_watcher_name: str, + connection_monitor_name: str, + **kwargs: Any + ) -> LROPoller["_models.ConnectionMonitorQueryResult"]: + """Query a snapshot of the most recent connection states. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :param connection_monitor_name: The name given to the connection monitor. + :type connection_monitor_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ConnectionMonitorQueryResult or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorQueryResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorQueryResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._query_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + connection_monitor_name=connection_monitor_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectionMonitorQueryResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_query.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors/{connectionMonitorName}/query"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> Iterable["_models.ConnectionMonitorListResult"]: + """Lists all connection monitors for the specified Network Watcher. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ConnectionMonitorListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ConnectionMonitorListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionMonitorListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_connection_monitors_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_connection_monitors_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ConnectionMonitorListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/connectionMonitors"} # type: ignore +class FlowLogsOperations(object): + """FlowLogsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + parameters: "_models.FlowLog", + **kwargs: Any + ) -> "_models.FlowLog": + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLog"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'FlowLog') + + request = build_flow_logs_create_or_update_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('FlowLog', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('FlowLog', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + parameters: "_models.FlowLog", + **kwargs: Any + ) -> LROPoller["_models.FlowLog"]: + """Create or update a flow log for the specified network security group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param flow_log_name: The name of the flow log. + :type flow_log_name: str + :param parameters: Parameters that define the create or update flow log resource. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.FlowLog + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either FlowLog or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.FlowLog] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLog"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('FlowLog', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.FlowLog": + """Update tags of the specified flow log. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param flow_log_name: The name of the flow log. + :type flow_log_name: str + :param parameters: Parameters supplied to update flow log tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FlowLog, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FlowLog + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLog"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_flow_logs_update_tags_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FlowLog', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + + @distributed_trace + def get( + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + **kwargs: Any + ) -> "_models.FlowLog": + """Gets a flow log resource by name. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param flow_log_name: The name of the flow log resource. + :type flow_log_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: FlowLog, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.FlowLog + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLog"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_flow_logs_get_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('FlowLog', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_flow_logs_delete_request_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + network_watcher_name: str, + flow_log_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified flow log resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param network_watcher_name: The name of the network watcher. + :type network_watcher_name: str + :param flow_log_name: The name of the flow log resource. + :type flow_log_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + flow_log_name=flow_log_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs/{flowLogName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + network_watcher_name: str, + **kwargs: Any + ) -> Iterable["_models.FlowLogListResult"]: + """Lists all flow log resources for the specified Network Watcher. + + :param resource_group_name: The name of the resource group containing Network Watcher. + :type resource_group_name: str + :param network_watcher_name: The name of the Network Watcher resource. + :type network_watcher_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FlowLogListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.FlowLogListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.FlowLogListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_flow_logs_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_flow_logs_list_request( + resource_group_name=resource_group_name, + network_watcher_name=network_watcher_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("FlowLogListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkWatchers/{networkWatcherName}/flowLogs"} # type: ignore +class Operations(object): + """Operations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.OperationListResult"]: + """Lists all of the available Network Rest API operations. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OperationListResult or the result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.OperationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_operations_list_request( + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_operations_list_request( + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("OperationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/providers/Microsoft.Network/operations"} # type: ignore +class PrivateEndpointsOperations(object): + """PrivateEndpointsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + private_endpoint_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_endpoints_delete_request_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + private_endpoint_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified private endpoint. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + private_endpoint_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PrivateEndpoint": + """Gets the specified private endpoint by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpoint, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_endpoints_get_request( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + private_endpoint_name: str, + parameters: "_models.PrivateEndpoint", + **kwargs: Any + ) -> "_models.PrivateEndpoint": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpoint"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PrivateEndpoint') + + request = build_private_endpoints_create_or_update_request_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PrivateEndpoint', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PrivateEndpoint', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + private_endpoint_name: str, + parameters: "_models.PrivateEndpoint", + **kwargs: Any + ) -> LROPoller["_models.PrivateEndpoint"]: + """Creates or updates an private endpoint in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param parameters: Parameters supplied to the create or update private endpoint operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PrivateEndpoint or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateEndpoint] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpoint"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateEndpoint', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.PrivateEndpointListResult"]: + """Gets all private endpoints in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_endpoints_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_endpoints_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateEndpointListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints"} # type: ignore + + @distributed_trace + def list_by_subscription( + self, + **kwargs: Any + ) -> Iterable["_models.PrivateEndpointListResult"]: + """Gets all private endpoints in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_endpoints_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_subscription.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_endpoints_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateEndpointListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_subscription.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/privateEndpoints"} # type: ignore +class AvailablePrivateEndpointTypesOperations(object): + """AvailablePrivateEndpointTypesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> Iterable["_models.AvailablePrivateEndpointTypesResult"]: + """Returns all of the resource types that can be linked to a Private Endpoint in this subscription + in this region. + + :param location: The location of the domain name. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailablePrivateEndpointTypesResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailablePrivateEndpointTypesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailablePrivateEndpointTypesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_private_endpoint_types_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_private_endpoint_types_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AvailablePrivateEndpointTypesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availablePrivateEndpointTypes"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + location: str, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.AvailablePrivateEndpointTypesResult"]: + """Returns all of the resource types that can be linked to a Private Endpoint in this subscription + in this region. + + :param location: The location of the domain name. + :type location: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AvailablePrivateEndpointTypesResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AvailablePrivateEndpointTypesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AvailablePrivateEndpointTypesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_available_private_endpoint_types_list_by_resource_group_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_available_private_endpoint_types_list_by_resource_group_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AvailablePrivateEndpointTypesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availablePrivateEndpointTypes"} # type: ignore +class PrivateDnsZoneGroupsOperations(object): + """PrivateDnsZoneGroupsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_dns_zone_groups_delete_request_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified private dns zone group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param private_dns_zone_group_name: The name of the private dns zone group. + :type private_dns_zone_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + **kwargs: Any + ) -> "_models.PrivateDnsZoneGroup": + """Gets the private dns zone group resource by specified private dns zone group name. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param private_dns_zone_group_name: The name of the private dns zone group. + :type private_dns_zone_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateDnsZoneGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateDnsZoneGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_dns_zone_groups_get_request( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateDnsZoneGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + parameters: "_models.PrivateDnsZoneGroup", + **kwargs: Any + ) -> "_models.PrivateDnsZoneGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateDnsZoneGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PrivateDnsZoneGroup') + + request = build_private_dns_zone_groups_create_or_update_request_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PrivateDnsZoneGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PrivateDnsZoneGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + private_endpoint_name: str, + private_dns_zone_group_name: str, + parameters: "_models.PrivateDnsZoneGroup", + **kwargs: Any + ) -> LROPoller["_models.PrivateDnsZoneGroup"]: + """Creates or updates a private dns zone group in the specified private endpoint. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param private_dns_zone_group_name: The name of the private dns zone group. + :type private_dns_zone_group_name: str + :param parameters: Parameters supplied to the create or update private dns zone group + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PrivateDnsZoneGroup or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateDnsZoneGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + private_endpoint_name=private_endpoint_name, + private_dns_zone_group_name=private_dns_zone_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateDnsZoneGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups/{privateDnsZoneGroupName}"} # type: ignore + + @distributed_trace + def list( + self, + private_endpoint_name: str, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.PrivateDnsZoneGroupListResult"]: + """Gets all private dns zone groups in a private endpoint. + + :param private_endpoint_name: The name of the private endpoint. + :type private_endpoint_name: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateDnsZoneGroupListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateDnsZoneGroupListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateDnsZoneGroupListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_dns_zone_groups_list_request( + private_endpoint_name=private_endpoint_name, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_dns_zone_groups_list_request( + private_endpoint_name=private_endpoint_name, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateDnsZoneGroupListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}/privateDnsZoneGroups"} # type: ignore +class PrivateLinkServicesOperations(object): + """PrivateLinkServicesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_link_services_delete_request_initial( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified private link service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + service_name=service_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + service_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PrivateLinkService": + """Gets the specified private link service by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateLinkService, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateLinkService + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_link_services_get_request( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateLinkService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + service_name: str, + parameters: "_models.PrivateLinkService", + **kwargs: Any + ) -> "_models.PrivateLinkService": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PrivateLinkService') + + request = build_private_link_services_create_or_update_request_initial( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PrivateLinkService', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PrivateLinkService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + service_name: str, + parameters: "_models.PrivateLinkService", + **kwargs: Any + ) -> LROPoller["_models.PrivateLinkService"]: + """Creates or updates an private link service in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param parameters: Parameters supplied to the create or update private link service operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PrivateLinkService + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PrivateLinkService or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateLinkService] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkService"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + service_name=service_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateLinkService', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.PrivateLinkServiceListResult"]: + """Gets all private link services in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateLinkServiceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkServiceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateLinkServiceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices"} # type: ignore + + @distributed_trace + def list_by_subscription( + self, + **kwargs: Any + ) -> Iterable["_models.PrivateLinkServiceListResult"]: + """Gets all private link service in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateLinkServiceListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkServiceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_subscription.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateLinkServiceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_subscription.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/privateLinkServices"} # type: ignore + + @distributed_trace + def get_private_endpoint_connection( + self, + resource_group_name: str, + service_name: str, + pe_connection_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PrivateEndpointConnection": + """Get the specific private end point connection by specific private link service in the resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param pe_connection_name: The name of the private end point connection. + :type pe_connection_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpointConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_link_services_get_private_endpoint_connection_request( + resource_group_name=resource_group_name, + service_name=service_name, + pe_connection_name=pe_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get_private_endpoint_connection.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_private_endpoint_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}"} # type: ignore + + + @distributed_trace + def update_private_endpoint_connection( + self, + resource_group_name: str, + service_name: str, + pe_connection_name: str, + parameters: "_models.PrivateEndpointConnection", + **kwargs: Any + ) -> "_models.PrivateEndpointConnection": + """Approve or reject private end point connection for a private link service in a subscription. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param pe_connection_name: The name of the private end point connection. + :type pe_connection_name: str + :param parameters: Parameters supplied to approve or reject the private end point connection. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PrivateEndpointConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PrivateEndpointConnection') + + request = build_private_link_services_update_private_endpoint_connection_request( + resource_group_name=resource_group_name, + service_name=service_name, + pe_connection_name=pe_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_private_endpoint_connection.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_private_endpoint_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}"} # type: ignore + + + def _delete_private_endpoint_connection_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_name: str, + pe_connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_private_link_services_delete_private_endpoint_connection_request_initial( + resource_group_name=resource_group_name, + service_name=service_name, + pe_connection_name=pe_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_private_endpoint_connection_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_private_endpoint_connection_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}"} # type: ignore + + + @distributed_trace + def begin_delete_private_endpoint_connection( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_name: str, + pe_connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Delete private end point connection for a private link service in a subscription. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :param pe_connection_name: The name of the private end point connection. + :type pe_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_private_endpoint_connection_initial( + resource_group_name=resource_group_name, + service_name=service_name, + pe_connection_name=pe_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete_private_endpoint_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections/{peConnectionName}"} # type: ignore + + @distributed_trace + def list_private_endpoint_connections( + self, + resource_group_name: str, + service_name: str, + **kwargs: Any + ) -> Iterable["_models.PrivateEndpointConnectionListResult"]: + """Gets all private end point connections for a specific private link service. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_name: The name of the private link service. + :type service_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PrivateEndpointConnectionListResult or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PrivateEndpointConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_private_endpoint_connections_request( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_private_endpoint_connections.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_private_endpoint_connections_request( + resource_group_name=resource_group_name, + service_name=service_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PrivateEndpointConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_private_endpoint_connections.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateLinkServices/{serviceName}/privateEndpointConnections"} # type: ignore + + def _check_private_link_service_visibility_initial( + self, + location: str, + parameters: "_models.CheckPrivateLinkServiceVisibilityRequest", + **kwargs: Any + ) -> Optional["_models.PrivateLinkServiceVisibility"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.PrivateLinkServiceVisibility"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'CheckPrivateLinkServiceVisibilityRequest') + + request = build_private_link_services_check_private_link_service_visibility_request_initial( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._check_private_link_service_visibility_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PrivateLinkServiceVisibility', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _check_private_link_service_visibility_initial.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility"} # type: ignore + + + @distributed_trace + def begin_check_private_link_service_visibility( + self, + location: str, + parameters: "_models.CheckPrivateLinkServiceVisibilityRequest", + **kwargs: Any + ) -> LROPoller["_models.PrivateLinkServiceVisibility"]: + """Checks whether the subscription is visible to private link service. + + :param location: The location of the domain name. + :type location: str + :param parameters: The request body of CheckPrivateLinkService API call. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.CheckPrivateLinkServiceVisibilityRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PrivateLinkServiceVisibility or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceVisibility] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkServiceVisibility"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._check_private_link_service_visibility_initial( + location=location, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateLinkServiceVisibility', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_check_private_link_service_visibility.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility"} # type: ignore + + def _check_private_link_service_visibility_by_resource_group_initial( + self, + location: str, + resource_group_name: str, + parameters: "_models.CheckPrivateLinkServiceVisibilityRequest", + **kwargs: Any + ) -> Optional["_models.PrivateLinkServiceVisibility"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.PrivateLinkServiceVisibility"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'CheckPrivateLinkServiceVisibilityRequest') + + request = build_private_link_services_check_private_link_service_visibility_by_resource_group_request_initial( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._check_private_link_service_visibility_by_resource_group_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PrivateLinkServiceVisibility', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _check_private_link_service_visibility_by_resource_group_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility"} # type: ignore + + + @distributed_trace + def begin_check_private_link_service_visibility_by_resource_group( + self, + location: str, + resource_group_name: str, + parameters: "_models.CheckPrivateLinkServiceVisibilityRequest", + **kwargs: Any + ) -> LROPoller["_models.PrivateLinkServiceVisibility"]: + """Checks whether the subscription is visible to private link service in the specified resource + group. + + :param location: The location of the domain name. + :type location: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param parameters: The request body of CheckPrivateLinkService API call. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.CheckPrivateLinkServiceVisibilityRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PrivateLinkServiceVisibility or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PrivateLinkServiceVisibility] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkServiceVisibility"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._check_private_link_service_visibility_by_resource_group_initial( + location=location, + resource_group_name=resource_group_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PrivateLinkServiceVisibility', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_check_private_link_service_visibility_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/checkPrivateLinkServiceVisibility"} # type: ignore + + @distributed_trace + def list_auto_approved_private_link_services( + self, + location: str, + **kwargs: Any + ) -> Iterable["_models.AutoApprovedPrivateLinkServicesResult"]: + """Returns all of the private link service ids that can be linked to a Private Endpoint with auto + approved in this subscription in this region. + + :param location: The location of the domain name. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AutoApprovedPrivateLinkServicesResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AutoApprovedPrivateLinkServicesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AutoApprovedPrivateLinkServicesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_auto_approved_private_link_services_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_auto_approved_private_link_services.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_auto_approved_private_link_services_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AutoApprovedPrivateLinkServicesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_auto_approved_private_link_services.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/autoApprovedPrivateLinkServices"} # type: ignore + + @distributed_trace + def list_auto_approved_private_link_services_by_resource_group( + self, + location: str, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.AutoApprovedPrivateLinkServicesResult"]: + """Returns all of the private link service ids that can be linked to a Private Endpoint with auto + approved in this subscription in this region. + + :param location: The location of the domain name. + :type location: str + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either AutoApprovedPrivateLinkServicesResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.AutoApprovedPrivateLinkServicesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.AutoApprovedPrivateLinkServicesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_private_link_services_list_auto_approved_private_link_services_by_resource_group_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_auto_approved_private_link_services_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_private_link_services_list_auto_approved_private_link_services_by_resource_group_request( + location=location, + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AutoApprovedPrivateLinkServicesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_auto_approved_private_link_services_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/autoApprovedPrivateLinkServices"} # type: ignore +class PublicIPPrefixesOperations(object): + """PublicIPPrefixesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + public_ip_prefix_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_prefixes_delete_request_initial( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + public_ip_prefix_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified public IP prefix. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_prefix_name: The name of the PublicIpPrefix. + :type public_ip_prefix_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + public_ip_prefix_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.PublicIPPrefix": + """Gets the specified public IP prefix in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_prefix_name: The name of the public IP prefix. + :type public_ip_prefix_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPPrefix, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_public_ip_prefixes_get_request( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + public_ip_prefix_name: str, + parameters: "_models.PublicIPPrefix", + **kwargs: Any + ) -> "_models.PublicIPPrefix": + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'PublicIPPrefix') + + request = build_public_ip_prefixes_create_or_update_request_initial( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + public_ip_prefix_name: str, + parameters: "_models.PublicIPPrefix", + **kwargs: Any + ) -> LROPoller["_models.PublicIPPrefix"]: + """Creates or updates a static or dynamic public IP prefix. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_prefix_name: The name of the public IP prefix. + :type public_ip_prefix_name: str + :param parameters: Parameters supplied to the create or update public IP prefix operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PublicIPPrefix or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefix"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + public_ip_prefix_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.PublicIPPrefix": + """Updates public IP prefix tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param public_ip_prefix_name: The name of the public IP prefix. + :type public_ip_prefix_name: str + :param parameters: Parameters supplied to update public IP prefix tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: PublicIPPrefix, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.PublicIPPrefix + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefix"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_public_ip_prefixes_update_tags_request( + resource_group_name=resource_group_name, + public_ip_prefix_name=public_ip_prefix_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('PublicIPPrefix', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.PublicIPPrefixListResult"]: + """Gets all the public IP prefixes in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPPrefixListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefixListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_prefixes_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_prefixes_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPPrefixListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/publicIPPrefixes"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.PublicIPPrefixListResult"]: + """Gets all public IP prefixes in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either PublicIPPrefixListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.PublicIPPrefixListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.PublicIPPrefixListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_public_ip_prefixes_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_public_ip_prefixes_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("PublicIPPrefixListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes"} # type: ignore +class RouteFiltersOperations(object): + """RouteFiltersOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_filter_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_filters_delete_request_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_filter_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + route_filter_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.RouteFilter": + """Gets the specified route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param expand: Expands referenced express route bgp peering resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteFilter, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteFilter + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_filters_get_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteFilter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + route_filter_name: str, + route_filter_parameters: "_models.RouteFilter", + **kwargs: Any + ) -> "_models.RouteFilter": + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(route_filter_parameters, 'RouteFilter') + + request = build_route_filters_create_or_update_request_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('RouteFilter', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('RouteFilter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + route_filter_name: str, + route_filter_parameters: "_models.RouteFilter", + **kwargs: Any + ) -> LROPoller["_models.RouteFilter"]: + """Creates or updates a route filter in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param route_filter_parameters: Parameters supplied to the create or update route filter + operation. + :type route_filter_parameters: ~azure.mgmt.network.v2021_08_01.models.RouteFilter + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either RouteFilter or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.RouteFilter] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilter"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + route_filter_parameters=route_filter_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('RouteFilter', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + route_filter_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.RouteFilter": + """Updates tags of a route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param parameters: Parameters supplied to update route filter tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteFilter, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteFilter + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_route_filters_update_tags_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteFilter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}"} # type: ignore + + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.RouteFilterListResult"]: + """Gets all route filters in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteFilterListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteFilterListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_filters_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_filters_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("RouteFilterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.RouteFilterListResult"]: + """Gets all route filters in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteFilterListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteFilterListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_filters_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_filters_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("RouteFilterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/routeFilters"} # type: ignore +class RouteFilterRulesOperations(object): + """RouteFilterRulesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_filter_rules_delete_request_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified rule from a route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param rule_name: The name of the rule. + :type rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + **kwargs: Any + ) -> "_models.RouteFilterRule": + """Gets the specified rule from a route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param rule_name: The name of the rule. + :type rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteFilterRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteFilterRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_filter_rules_get_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteFilterRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + route_filter_rule_parameters: "_models.RouteFilterRule", + **kwargs: Any + ) -> "_models.RouteFilterRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(route_filter_rule_parameters, 'RouteFilterRule') + + request = build_route_filter_rules_create_or_update_request_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('RouteFilterRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('RouteFilterRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + route_filter_name: str, + rule_name: str, + route_filter_rule_parameters: "_models.RouteFilterRule", + **kwargs: Any + ) -> LROPoller["_models.RouteFilterRule"]: + """Creates or updates a route in the specified route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :param rule_name: The name of the route filter rule. + :type rule_name: str + :param route_filter_rule_parameters: Parameters supplied to the create or update route filter + rule operation. + :type route_filter_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.RouteFilterRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either RouteFilterRule or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.RouteFilterRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + rule_name=rule_name, + route_filter_rule_parameters=route_filter_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('RouteFilterRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules/{ruleName}"} # type: ignore + + @distributed_trace + def list_by_route_filter( + self, + resource_group_name: str, + route_filter_name: str, + **kwargs: Any + ) -> Iterable["_models.RouteFilterRuleListResult"]: + """Gets all RouteFilterRules in a route filter. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_filter_name: The name of the route filter. + :type route_filter_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteFilterRuleListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteFilterRuleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteFilterRuleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_filter_rules_list_by_route_filter_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_route_filter.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_filter_rules_list_by_route_filter_request( + resource_group_name=resource_group_name, + route_filter_name=route_filter_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("RouteFilterRuleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_route_filter.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName}/routeFilterRules"} # type: ignore +class RouteTablesOperations(object): + """RouteTablesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_table_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_tables_delete_request_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_table_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + route_table_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.RouteTable": + """Gets the specified route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteTable, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteTable + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_route_tables_get_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + route_table_name: str, + parameters: "_models.RouteTable", + **kwargs: Any + ) -> "_models.RouteTable": + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'RouteTable') + + request = build_route_tables_create_or_update_request_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('RouteTable', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('RouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + route_table_name: str, + parameters: "_models.RouteTable", + **kwargs: Any + ) -> LROPoller["_models.RouteTable"]: + """Create or updates a route table in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param parameters: Parameters supplied to the create or update route table operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.RouteTable + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either RouteTable or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.RouteTable] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTable"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('RouteTable', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + route_table_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.RouteTable": + """Updates a route table tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param parameters: Parameters supplied to update route table tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RouteTable, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RouteTable + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_route_tables_update_tags_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.RouteTableListResult"]: + """Gets all route tables in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteTableListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTableListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_tables_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_tables_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("RouteTableListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.RouteTableListResult"]: + """Gets all route tables in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteTableListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteTableListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteTableListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_route_tables_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_route_tables_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("RouteTableListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/routeTables"} # type: ignore +class RoutesOperations(object): + """RoutesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_routes_delete_request_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified route from a route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param route_name: The name of the route. + :type route_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + **kwargs: Any + ) -> "_models.Route": + """Gets the specified route from a route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param route_name: The name of the route. + :type route_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Route, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.Route + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Route"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_routes_get_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Route', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + route_parameters: "_models.Route", + **kwargs: Any + ) -> "_models.Route": + cls = kwargs.pop('cls', None) # type: ClsType["_models.Route"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(route_parameters, 'Route') + + request = build_routes_create_or_update_request_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('Route', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('Route', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + route_table_name: str, + route_name: str, + route_parameters: "_models.Route", + **kwargs: Any + ) -> LROPoller["_models.Route"]: + """Creates or updates a route in the specified route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :param route_name: The name of the route. + :type route_name: str + :param route_parameters: Parameters supplied to the create or update route operation. + :type route_parameters: ~azure.mgmt.network.v2021_08_01.models.Route + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either Route or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.Route] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.Route"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + route_name=route_name, + route_parameters=route_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('Route', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + route_table_name: str, + **kwargs: Any + ) -> Iterable["_models.RouteListResult"]: + """Gets all routes in a route table. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param route_table_name: The name of the route table. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RouteListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.RouteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.RouteListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_routes_list_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_routes_list_request( + resource_group_name=resource_group_name, + route_table_name=route_table_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("RouteListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes"} # type: ignore +class SecurityPartnerProvidersOperations(object): + """SecurityPartnerProvidersOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + security_partner_provider_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_security_partner_providers_delete_request_initial( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + security_partner_provider_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified Security Partner Provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param security_partner_provider_name: The name of the Security Partner Provider. + :type security_partner_provider_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + security_partner_provider_name: str, + **kwargs: Any + ) -> "_models.SecurityPartnerProvider": + """Gets the specified Security Partner Provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param security_partner_provider_name: The name of the Security Partner Provider. + :type security_partner_provider_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SecurityPartnerProvider, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProvider"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_security_partner_providers_get_request( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + security_partner_provider_name: str, + parameters: "_models.SecurityPartnerProvider", + **kwargs: Any + ) -> "_models.SecurityPartnerProvider": + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProvider"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'SecurityPartnerProvider') + + request = build_security_partner_providers_create_or_update_request_initial( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + security_partner_provider_name: str, + parameters: "_models.SecurityPartnerProvider", + **kwargs: Any + ) -> LROPoller["_models.SecurityPartnerProvider"]: + """Creates or updates the specified Security Partner Provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param security_partner_provider_name: The name of the Security Partner Provider. + :type security_partner_provider_name: str + :param parameters: Parameters supplied to the create or update Security Partner Provider + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either SecurityPartnerProvider or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProvider"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + security_partner_provider_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.SecurityPartnerProvider": + """Updates tags of a Security Partner Provider resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param security_partner_provider_name: The name of the Security Partner Provider. + :type security_partner_provider_name: str + :param parameters: Parameters supplied to update Security Partner Provider tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SecurityPartnerProvider, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProvider + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProvider"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_security_partner_providers_update_tags_request( + resource_group_name=resource_group_name, + security_partner_provider_name=security_partner_provider_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SecurityPartnerProvider', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName}"} # type: ignore + + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.SecurityPartnerProviderListResult"]: + """Lists all Security Partner Providers in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SecurityPartnerProviderListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProviderListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProviderListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_security_partner_providers_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_security_partner_providers_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("SecurityPartnerProviderListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.SecurityPartnerProviderListResult"]: + """Gets all the Security Partner Providers in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SecurityPartnerProviderListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.SecurityPartnerProviderListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SecurityPartnerProviderListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_security_partner_providers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_security_partner_providers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("SecurityPartnerProviderListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/securityPartnerProviders"} # type: ignore +class BgpServiceCommunitiesOperations(object): + """BgpServiceCommunitiesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.BgpServiceCommunityListResult"]: + """Gets all the available bgp service communities. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either BgpServiceCommunityListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.BgpServiceCommunityListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpServiceCommunityListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_bgp_service_communities_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_bgp_service_communities_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("BgpServiceCommunityListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/bgpServiceCommunities"} # type: ignore +class ServiceEndpointPoliciesOperations(object): + """ServiceEndpointPoliciesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_endpoint_policy_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_endpoint_policies_delete_request_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_endpoint_policy_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified service endpoint policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.ServiceEndpointPolicy": + """Gets the specified service Endpoint Policies in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceEndpointPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_endpoint_policies_get_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + parameters: "_models.ServiceEndpointPolicy", + **kwargs: Any + ) -> "_models.ServiceEndpointPolicy": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ServiceEndpointPolicy') + + request = build_service_endpoint_policies_create_or_update_request_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + parameters: "_models.ServiceEndpointPolicy", + **kwargs: Any + ) -> LROPoller["_models.ServiceEndpointPolicy"]: + """Creates or updates a service Endpoint Policies. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :param parameters: Parameters supplied to the create or update service endpoint policy + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ServiceEndpointPolicy or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicy"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.ServiceEndpointPolicy": + """Updates tags of a service endpoint policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :param parameters: Parameters supplied to update service endpoint policy tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceEndpointPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_service_endpoint_policies_update_tags_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceEndpointPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}"} # type: ignore + + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ServiceEndpointPolicyListResult"]: + """Gets all the service endpoint policies in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServiceEndpointPolicyListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_service_endpoint_policies_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_service_endpoint_policies_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ServiceEndpointPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ServiceEndpointPolicies"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ServiceEndpointPolicyListResult"]: + """Gets all service endpoint Policies in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServiceEndpointPolicyListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_service_endpoint_policies_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_service_endpoint_policies_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ServiceEndpointPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies"} # type: ignore +class ServiceEndpointPolicyDefinitionsOperations(object): + """ServiceEndpointPolicyDefinitionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_endpoint_policy_definitions_delete_request_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified ServiceEndpoint policy definitions. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the Service Endpoint Policy. + :type service_endpoint_policy_name: str + :param service_endpoint_policy_definition_name: The name of the service endpoint policy + definition. + :type service_endpoint_policy_definition_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + **kwargs: Any + ) -> "_models.ServiceEndpointPolicyDefinition": + """Get the specified service endpoint policy definitions from service endpoint policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy name. + :type service_endpoint_policy_name: str + :param service_endpoint_policy_definition_name: The name of the service endpoint policy + definition name. + :type service_endpoint_policy_definition_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceEndpointPolicyDefinition, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyDefinition"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_endpoint_policy_definitions_get_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceEndpointPolicyDefinition', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + service_endpoint_policy_definitions: "_models.ServiceEndpointPolicyDefinition", + **kwargs: Any + ) -> "_models.ServiceEndpointPolicyDefinition": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyDefinition"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(service_endpoint_policy_definitions, 'ServiceEndpointPolicyDefinition') + + request = build_service_endpoint_policy_definitions_create_or_update_request_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ServiceEndpointPolicyDefinition', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ServiceEndpointPolicyDefinition', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + service_endpoint_policy_definition_name: str, + service_endpoint_policy_definitions: "_models.ServiceEndpointPolicyDefinition", + **kwargs: Any + ) -> LROPoller["_models.ServiceEndpointPolicyDefinition"]: + """Creates or updates a service endpoint policy definition in the specified service endpoint + policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy. + :type service_endpoint_policy_name: str + :param service_endpoint_policy_definition_name: The name of the service endpoint policy + definition name. + :type service_endpoint_policy_definition_name: str + :param service_endpoint_policy_definitions: Parameters supplied to the create or update service + endpoint policy operation. + :type service_endpoint_policy_definitions: + ~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ServiceEndpointPolicyDefinition or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinition] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyDefinition"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + service_endpoint_policy_definition_name=service_endpoint_policy_definition_name, + service_endpoint_policy_definitions=service_endpoint_policy_definitions, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ServiceEndpointPolicyDefinition', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions/{serviceEndpointPolicyDefinitionName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + service_endpoint_policy_name: str, + **kwargs: Any + ) -> Iterable["_models.ServiceEndpointPolicyDefinitionListResult"]: + """Gets all service endpoint policy definitions in a service end point policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param service_endpoint_policy_name: The name of the service endpoint policy name. + :type service_endpoint_policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServiceEndpointPolicyDefinitionListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ServiceEndpointPolicyDefinitionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceEndpointPolicyDefinitionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_service_endpoint_policy_definitions_list_by_resource_group_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_service_endpoint_policy_definitions_list_by_resource_group_request( + resource_group_name=resource_group_name, + service_endpoint_policy_name=service_endpoint_policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ServiceEndpointPolicyDefinitionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/serviceEndpointPolicies/{serviceEndpointPolicyName}/serviceEndpointPolicyDefinitions"} # type: ignore +class ServiceTagsOperations(object): + """ServiceTagsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> "_models.ServiceTagsListResult": + """Gets a list of service tag information resources. + + :param location: The location that will be used as a reference for version (not as a filter + based on location, you will get the list of service tags with prefix details across all regions + but limited to the cloud that your subscription belongs to). + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceTagsListResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceTagsListResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceTagsListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_tags_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceTagsListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/serviceTags"} # type: ignore + +class ServiceTagInformationOperations(object): + """ServiceTagInformationOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + no_address_prefixes: Optional[bool] = None, + tag_name: Optional[str] = None, + **kwargs: Any + ) -> Iterable["_models.ServiceTagInformationListResult"]: + """Gets a list of service tag information resources with pagination. + + :param location: The location that will be used as a reference for cloud (not as a filter based + on location, you will get the list of service tags with prefix details across all regions but + limited to the cloud that your subscription belongs to). + :type location: str + :param no_address_prefixes: Do not return address prefixes for the tag(s). Default value is + None. + :type no_address_prefixes: bool + :param tag_name: Return tag information for a particular tag. Default value is None. + :type tag_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ServiceTagInformationListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ServiceTagInformationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceTagInformationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_service_tag_information_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + no_address_prefixes=no_address_prefixes, + tag_name=tag_name, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_service_tag_information_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + no_address_prefixes=no_address_prefixes, + tag_name=tag_name, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ServiceTagInformationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/serviceTagDetails"} # type: ignore +class UsagesOperations(object): + """UsagesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + location: str, + **kwargs: Any + ) -> Iterable["_models.UsagesListResult"]: + """List network usages for a subscription. + + :param location: The location where resource usage is queried. + :type location: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either UsagesListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.UsagesListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.UsagesListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_usages_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_usages_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("UsagesListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/usages"} # type: ignore +class VirtualNetworksOperations(object): + """VirtualNetworksOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_networks_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_network_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.VirtualNetwork": + """Gets the specified virtual network by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetwork, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetwork + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_networks_get_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_name: str, + parameters: "_models.VirtualNetwork", + **kwargs: Any + ) -> "_models.VirtualNetwork": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualNetwork') + + request = build_virtual_networks_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_name: str, + parameters: "_models.VirtualNetwork", + **kwargs: Any + ) -> LROPoller["_models.VirtualNetwork"]: + """Creates or updates a virtual network in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param parameters: Parameters supplied to the create or update virtual network operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetwork + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualNetwork or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetwork] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + virtual_network_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VirtualNetwork": + """Updates a virtual network tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param parameters: Parameters supplied to update virtual network tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetwork, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetwork + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_virtual_networks_update_tags_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetwork', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.VirtualNetworkListResult"]: + """Gets all virtual networks in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_networks_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_networks_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualNetworks"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.VirtualNetworkListResult"]: + """Gets all virtual networks in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_networks_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_networks_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks"} # type: ignore + + @distributed_trace + def check_ip_address_availability( + self, + resource_group_name: str, + virtual_network_name: str, + ip_address: str, + **kwargs: Any + ) -> "_models.IPAddressAvailabilityResult": + """Checks whether a private IP address is available for use. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param ip_address: The private IP address to be verified. + :type ip_address: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IPAddressAvailabilityResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.IPAddressAvailabilityResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.IPAddressAvailabilityResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_networks_check_ip_address_availability_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + ip_address=ip_address, + template_url=self.check_ip_address_availability.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('IPAddressAvailabilityResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + check_ip_address_availability.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/CheckIPAddressAvailability"} # type: ignore + + + @distributed_trace + def list_usage( + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> Iterable["_models.VirtualNetworkListUsageResult"]: + """Lists usage stats. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkListUsageResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkListUsageResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkListUsageResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_networks_list_usage_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_usage.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_networks_list_usage_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkListUsageResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_usage.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/usages"} # type: ignore +class SubnetsOperations(object): + """SubnetsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_subnets_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified subnet. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.Subnet": + """Gets the specified subnet by virtual network and resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Subnet, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.Subnet + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.Subnet"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_subnets_get_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Subnet', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subnet_parameters: "_models.Subnet", + **kwargs: Any + ) -> "_models.Subnet": + cls = kwargs.pop('cls', None) # type: ClsType["_models.Subnet"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(subnet_parameters, 'Subnet') + + request = build_subnets_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('Subnet', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('Subnet', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + subnet_parameters: "_models.Subnet", + **kwargs: Any + ) -> LROPoller["_models.Subnet"]: + """Creates or updates a subnet in the specified virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :param subnet_parameters: Parameters supplied to the create or update subnet operation. + :type subnet_parameters: ~azure.mgmt.network.v2021_08_01.models.Subnet + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either Subnet or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.Subnet] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.Subnet"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subnet_parameters=subnet_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('Subnet', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}"} # type: ignore + + def _prepare_network_policies_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + prepare_network_policies_request_parameters: "_models.PrepareNetworkPoliciesRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(prepare_network_policies_request_parameters, 'PrepareNetworkPoliciesRequest') + + request = build_subnets_prepare_network_policies_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._prepare_network_policies_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _prepare_network_policies_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/PrepareNetworkPolicies"} # type: ignore + + + @distributed_trace + def begin_prepare_network_policies( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + prepare_network_policies_request_parameters: "_models.PrepareNetworkPoliciesRequest", + **kwargs: Any + ) -> LROPoller[None]: + """Prepares a subnet by applying network intent policies. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :param prepare_network_policies_request_parameters: Parameters supplied to prepare subnet by + applying network intent policies. + :type prepare_network_policies_request_parameters: + ~azure.mgmt.network.v2021_08_01.models.PrepareNetworkPoliciesRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._prepare_network_policies_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + prepare_network_policies_request_parameters=prepare_network_policies_request_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_prepare_network_policies.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/PrepareNetworkPolicies"} # type: ignore + + def _unprepare_network_policies_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + unprepare_network_policies_request_parameters: "_models.UnprepareNetworkPoliciesRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(unprepare_network_policies_request_parameters, 'UnprepareNetworkPoliciesRequest') + + request = build_subnets_unprepare_network_policies_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._unprepare_network_policies_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _unprepare_network_policies_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/UnprepareNetworkPolicies"} # type: ignore + + + @distributed_trace + def begin_unprepare_network_policies( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + unprepare_network_policies_request_parameters: "_models.UnprepareNetworkPoliciesRequest", + **kwargs: Any + ) -> LROPoller[None]: + """Unprepares a subnet by removing network intent policies. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :param unprepare_network_policies_request_parameters: Parameters supplied to unprepare subnet + to remove network intent policies. + :type unprepare_network_policies_request_parameters: + ~azure.mgmt.network.v2021_08_01.models.UnprepareNetworkPoliciesRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._unprepare_network_policies_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + unprepare_network_policies_request_parameters=unprepare_network_policies_request_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_unprepare_network_policies.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/UnprepareNetworkPolicies"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> Iterable["_models.SubnetListResult"]: + """Gets all subnets in a virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either SubnetListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.SubnetListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.SubnetListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_subnets_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_subnets_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("SubnetListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets"} # type: ignore +class ResourceNavigationLinksOperations(object): + """ResourceNavigationLinksOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + **kwargs: Any + ) -> "_models.ResourceNavigationLinksListResult": + """Gets a list of resource navigation links for a subnet. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ResourceNavigationLinksListResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ResourceNavigationLinksListResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourceNavigationLinksListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_resource_navigation_links_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ResourceNavigationLinksListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/ResourceNavigationLinks"} # type: ignore + +class ServiceAssociationLinksOperations(object): + """ServiceAssociationLinksOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_network_name: str, + subnet_name: str, + **kwargs: Any + ) -> "_models.ServiceAssociationLinksListResult": + """Gets a list of service association links for a subnet. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param subnet_name: The name of the subnet. + :type subnet_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ServiceAssociationLinksListResult, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ServiceAssociationLinksListResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ServiceAssociationLinksListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_service_association_links_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subnet_name=subnet_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ServiceAssociationLinksListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}/ServiceAssociationLinks"} # type: ignore + +class VirtualNetworkPeeringsOperations(object): + """VirtualNetworkPeeringsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_peerings_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified virtual network peering. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param virtual_network_peering_name: The name of the virtual network peering. + :type virtual_network_peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkPeering": + """Gets the specified virtual network peering. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param virtual_network_peering_name: The name of the virtual network peering. + :type virtual_network_peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkPeering, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_peerings_get_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + virtual_network_peering_parameters: "_models.VirtualNetworkPeering", + sync_remote_address_space: Optional[Union[str, "_models.SyncRemoteAddressSpace"]] = None, + **kwargs: Any + ) -> "_models.VirtualNetworkPeering": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(virtual_network_peering_parameters, 'VirtualNetworkPeering') + + request = build_virtual_network_peerings_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + sync_remote_address_space=sync_remote_address_space, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkPeering', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_name: str, + virtual_network_peering_name: str, + virtual_network_peering_parameters: "_models.VirtualNetworkPeering", + sync_remote_address_space: Optional[Union[str, "_models.SyncRemoteAddressSpace"]] = None, + **kwargs: Any + ) -> LROPoller["_models.VirtualNetworkPeering"]: + """Creates or updates a peering in the specified virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :param virtual_network_peering_name: The name of the peering. + :type virtual_network_peering_name: str + :param virtual_network_peering_parameters: Parameters supplied to the create or update virtual + network peering operation. + :type virtual_network_peering_parameters: + ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering + :param sync_remote_address_space: Parameter indicates the intention to sync the peering with + the current address space on the remote vNet after it's updated. Default value is None. + :type sync_remote_address_space: str or + ~azure.mgmt.network.v2021_08_01.models.SyncRemoteAddressSpace + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualNetworkPeering or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeering] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkPeering"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + virtual_network_peering_name=virtual_network_peering_name, + virtual_network_peering_parameters=virtual_network_peering_parameters, + sync_remote_address_space=sync_remote_address_space, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkPeering', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_network_name: str, + **kwargs: Any + ) -> Iterable["_models.VirtualNetworkPeeringListResult"]: + """Gets all virtual network peerings in a virtual network. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_name: The name of the virtual network. + :type virtual_network_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkPeeringListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkPeeringListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkPeeringListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_peerings_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_peerings_list_request( + resource_group_name=resource_group_name, + virtual_network_name=virtual_network_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkPeeringListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings"} # type: ignore +class VirtualNetworkGatewaysOperations(object): # pylint: disable=too-many-public-methods + """VirtualNetworkGatewaysOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VirtualNetworkGateway", + **kwargs: Any + ) -> "_models.VirtualNetworkGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualNetworkGateway') + + request = build_virtual_network_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VirtualNetworkGateway", + **kwargs: Any + ) -> LROPoller["_models.VirtualNetworkGateway"]: + """Creates or updates a virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Parameters supplied to create or update virtual network gateway operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualNetworkGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkGateway": + """Gets the specified virtual network gateway by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_request( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified virtual network gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + def _update_tags_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.VirtualNetworkGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VirtualNetworkGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_virtual_network_gateways_update_tags_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + + @distributed_trace + def begin_update_tags( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> LROPoller["_models.VirtualNetworkGateway"]: + """Updates a virtual network gateway tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Parameters supplied to update virtual network gateway tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualNetworkGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_tags_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.VirtualNetworkGatewayListResult"]: + """Gets all virtual network gateways by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways"} # type: ignore + + @distributed_trace + def list_connections( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> Iterable["_models.VirtualNetworkGatewayListConnectionsResult"]: + """Gets all the connections in a virtual network gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkGatewayListConnectionsResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayListConnectionsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayListConnectionsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_gateways_list_connections_request( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_connections.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_gateways_list_connections_request( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkGatewayListConnectionsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_connections.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/connections"} # type: ignore + + def _reset_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + gateway_vip: Optional[str] = None, + **kwargs: Any + ) -> Optional["_models.VirtualNetworkGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VirtualNetworkGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_reset_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + gateway_vip=gateway_vip, + template_url=self._reset_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _reset_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/reset"} # type: ignore + + + @distributed_trace + def begin_reset( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + gateway_vip: Optional[str] = None, + **kwargs: Any + ) -> LROPoller["_models.VirtualNetworkGateway"]: + """Resets the primary of the virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param gateway_vip: Virtual network gateway vip address supplied to the begin reset of the + active-active feature enabled gateway. Default value is None. + :type gateway_vip: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualNetworkGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._reset_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + gateway_vip=gateway_vip, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/reset"} # type: ignore + + def _reset_vpn_client_shared_key_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_reset_vpn_client_shared_key_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._reset_vpn_client_shared_key_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reset_vpn_client_shared_key_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/resetvpnclientsharedkey"} # type: ignore + + + @distributed_trace + def begin_reset_vpn_client_shared_key( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Resets the VPN client shared key of the virtual network gateway in the specified resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._reset_vpn_client_shared_key_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset_vpn_client_shared_key.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/resetvpnclientsharedkey"} # type: ignore + + def _generatevpnclientpackage_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnClientParameters", + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnClientParameters') + + request = build_virtual_network_gateways_generatevpnclientpackage_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._generatevpnclientpackage_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _generatevpnclientpackage_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnclientpackage"} # type: ignore + + + @distributed_trace + def begin_generatevpnclientpackage( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnClientParameters", + **kwargs: Any + ) -> LROPoller[str]: + """Generates VPN client package for P2S client of the virtual network gateway in the specified + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Parameters supplied to the generate virtual network gateway VPN client + package operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnClientParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._generatevpnclientpackage_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_generatevpnclientpackage.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnclientpackage"} # type: ignore + + def _generate_vpn_profile_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnClientParameters", + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnClientParameters') + + request = build_virtual_network_gateways_generate_vpn_profile_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._generate_vpn_profile_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _generate_vpn_profile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile"} # type: ignore + + + @distributed_trace + def begin_generate_vpn_profile( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnClientParameters", + **kwargs: Any + ) -> LROPoller[str]: + """Generates VPN profile for P2S client of the virtual network gateway in the specified resource + group. Used for IKEV2 and radius based authentication. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Parameters supplied to the generate virtual network gateway VPN client + package operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnClientParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._generate_vpn_profile_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_generate_vpn_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile"} # type: ignore + + def _get_vpn_profile_package_url_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_vpn_profile_package_url_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_vpn_profile_package_url_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_vpn_profile_package_url_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl"} # type: ignore + + + @distributed_trace + def begin_get_vpn_profile_package_url( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> LROPoller[str]: + """Gets pre-generated VPN profile for P2S client of the virtual network gateway in the specified + resource group. The profile needs to be generated first using generateVpnProfile. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_vpn_profile_package_url_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_vpn_profile_package_url.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl"} # type: ignore + + def _get_bgp_peer_status_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + peer: Optional[str] = None, + **kwargs: Any + ) -> Optional["_models.BgpPeerStatusListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BgpPeerStatusListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_bgp_peer_status_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + peer=peer, + template_url=self._get_bgp_peer_status_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BgpPeerStatusListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_bgp_peer_status_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getBgpPeerStatus"} # type: ignore + + + @distributed_trace + def begin_get_bgp_peer_status( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + peer: Optional[str] = None, + **kwargs: Any + ) -> LROPoller["_models.BgpPeerStatusListResult"]: + """The GetBgpPeerStatus operation retrieves the status of all BGP peers. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param peer: The IP address of the peer to retrieve the status of. Default value is None. + :type peer: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either BgpPeerStatusListResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.BgpPeerStatusListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpPeerStatusListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_bgp_peer_status_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + peer=peer, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BgpPeerStatusListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_bgp_peer_status.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getBgpPeerStatus"} # type: ignore + + @distributed_trace + def supported_vpn_devices( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> str: + """Gets a xml format representation for supported vpn devices. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: str, or the result of cls(response) + :rtype: str + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[str] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_supported_vpn_devices_request( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.supported_vpn_devices.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + supported_vpn_devices.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/supportedvpndevices"} # type: ignore + + + def _get_learned_routes_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> Optional["_models.GatewayRouteListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.GatewayRouteListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_learned_routes_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_learned_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('GatewayRouteListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_learned_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getLearnedRoutes"} # type: ignore + + + @distributed_trace + def begin_get_learned_routes( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> LROPoller["_models.GatewayRouteListResult"]: + """This operation retrieves a list of routes the virtual network gateway has learned, including + routes learned from BGP peers. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either GatewayRouteListResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.GatewayRouteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.GatewayRouteListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_learned_routes_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('GatewayRouteListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_learned_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getLearnedRoutes"} # type: ignore + + def _get_advertised_routes_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + peer: str, + **kwargs: Any + ) -> Optional["_models.GatewayRouteListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.GatewayRouteListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_advertised_routes_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + peer=peer, + template_url=self._get_advertised_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('GatewayRouteListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_advertised_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getAdvertisedRoutes"} # type: ignore + + + @distributed_trace + def begin_get_advertised_routes( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + peer: str, + **kwargs: Any + ) -> LROPoller["_models.GatewayRouteListResult"]: + """This operation retrieves a list of routes the virtual network gateway is advertising to the + specified peer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param peer: The IP address of the peer. + :type peer: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either GatewayRouteListResult or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.GatewayRouteListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.GatewayRouteListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_advertised_routes_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + peer=peer, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('GatewayRouteListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_advertised_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getAdvertisedRoutes"} # type: ignore + + def _set_vpnclient_ipsec_parameters_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + vpnclient_ipsec_params: "_models.VpnClientIPsecParameters", + **kwargs: Any + ) -> Optional["_models.VpnClientIPsecParameters"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnClientIPsecParameters"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpnclient_ipsec_params, 'VpnClientIPsecParameters') + + request = build_virtual_network_gateways_set_vpnclient_ipsec_parameters_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._set_vpnclient_ipsec_parameters_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnClientIPsecParameters', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _set_vpnclient_ipsec_parameters_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/setvpnclientipsecparameters"} # type: ignore + + + @distributed_trace + def begin_set_vpnclient_ipsec_parameters( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + vpnclient_ipsec_params: "_models.VpnClientIPsecParameters", + **kwargs: Any + ) -> LROPoller["_models.VpnClientIPsecParameters"]: + """The Set VpnclientIpsecParameters operation sets the vpnclient ipsec policy for P2S client of + virtual network gateway in the specified resource group through Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param vpnclient_ipsec_params: Parameters supplied to the Begin Set vpnclient ipsec parameters + of Virtual Network Gateway P2S client operation through Network resource provider. + :type vpnclient_ipsec_params: ~azure.mgmt.network.v2021_08_01.models.VpnClientIPsecParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnClientIPsecParameters or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnClientIPsecParameters] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnClientIPsecParameters"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._set_vpnclient_ipsec_parameters_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + vpnclient_ipsec_params=vpnclient_ipsec_params, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnClientIPsecParameters', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_set_vpnclient_ipsec_parameters.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/setvpnclientipsecparameters"} # type: ignore + + def _get_vpnclient_ipsec_parameters_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> "_models.VpnClientIPsecParameters": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnClientIPsecParameters"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_vpnclient_ipsec_parameters_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_vpnclient_ipsec_parameters_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnClientIPsecParameters', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_vpnclient_ipsec_parameters_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnclientipsecparameters"} # type: ignore + + + @distributed_trace + def begin_get_vpnclient_ipsec_parameters( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> LROPoller["_models.VpnClientIPsecParameters"]: + """The Get VpnclientIpsecParameters operation retrieves information about the vpnclient ipsec + policy for P2S client of virtual network gateway in the specified resource group through + Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The virtual network gateway name. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnClientIPsecParameters or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnClientIPsecParameters] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnClientIPsecParameters"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_vpnclient_ipsec_parameters_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnClientIPsecParameters', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_vpnclient_ipsec_parameters.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnclientipsecparameters"} # type: ignore + + @distributed_trace + def vpn_device_configuration_script( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VpnDeviceScriptParameters", + **kwargs: Any + ) -> str: + """Gets a xml format representation for vpn device configuration script. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection for which the configuration script is generated. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to the generate vpn device script operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnDeviceScriptParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: str, or the result of cls(response) + :rtype: str + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[str] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnDeviceScriptParameters') + + request = build_virtual_network_gateways_vpn_device_configuration_script_request( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.vpn_device_configuration_script.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + vpn_device_configuration_script.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/vpndeviceconfigurationscript"} # type: ignore + + + def _start_packet_capture_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: Optional["_models.VpnPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnPacketCaptureStartParameters') + else: + _json = None + + request = build_virtual_network_gateways_start_packet_capture_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._start_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _start_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/startPacketCapture"} # type: ignore + + + @distributed_trace + def begin_start_packet_capture( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: Optional["_models.VpnPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> LROPoller[str]: + """Starts packet capture on virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Virtual network gateway packet capture parameters supplied to start packet + capture on gateway. Default value is None. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnPacketCaptureStartParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._start_packet_capture_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/startPacketCapture"} # type: ignore + + def _stop_packet_capture_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnPacketCaptureStopParameters", + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnPacketCaptureStopParameters') + + request = build_virtual_network_gateways_stop_packet_capture_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._stop_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _stop_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/stopPacketCapture"} # type: ignore + + + @distributed_trace + def begin_stop_packet_capture( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + parameters: "_models.VpnPacketCaptureStopParameters", + **kwargs: Any + ) -> LROPoller[str]: + """Stops packet capture on virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param parameters: Virtual network gateway packet capture parameters supplied to stop packet + capture on gateway. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnPacketCaptureStopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._stop_packet_capture_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/stopPacketCapture"} # type: ignore + + def _get_vpnclient_connection_health_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> Optional["_models.VpnClientConnectionHealthDetailListResult"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnClientConnectionHealthDetailListResult"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateways_get_vpnclient_connection_health_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_vpnclient_connection_health_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnClientConnectionHealthDetailListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_vpnclient_connection_health_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getVpnClientConnectionHealth"} # type: ignore + + + @distributed_trace + def begin_get_vpnclient_connection_health( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> LROPoller["_models.VpnClientConnectionHealthDetailListResult"]: + """Get VPN client connection health detail per P2S client connection of the virtual network + gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnClientConnectionHealthDetailListResult + or the result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnClientConnectionHealthDetailListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnClientConnectionHealthDetailListResult"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_vpnclient_connection_health_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnClientConnectionHealthDetailListResult', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_vpnclient_connection_health.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getVpnClientConnectionHealth"} # type: ignore + + def _disconnect_virtual_network_gateway_vpn_connections_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + request: "_models.P2SVpnConnectionRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'P2SVpnConnectionRequest') + + request = build_virtual_network_gateways_disconnect_virtual_network_gateway_vpn_connections_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._disconnect_virtual_network_gateway_vpn_connections_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _disconnect_virtual_network_gateway_vpn_connections_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/disconnectVirtualNetworkGatewayVpnConnections"} # type: ignore + + + @distributed_trace + def begin_disconnect_virtual_network_gateway_vpn_connections( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + request: "_models.P2SVpnConnectionRequest", + **kwargs: Any + ) -> LROPoller[None]: + """Disconnect vpn connections of virtual network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the virtual network gateway. + :type virtual_network_gateway_name: str + :param request: The parameters are supplied to disconnect vpn connections. + :type request: ~azure.mgmt.network.v2021_08_01.models.P2SVpnConnectionRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._disconnect_virtual_network_gateway_vpn_connections_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + request=request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_disconnect_virtual_network_gateway_vpn_connections.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/disconnectVirtualNetworkGatewayVpnConnections"} # type: ignore +class VirtualNetworkGatewayConnectionsOperations(object): # pylint: disable=too-many-public-methods + """VirtualNetworkGatewayConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VirtualNetworkGatewayConnection", + **kwargs: Any + ) -> "_models.VirtualNetworkGatewayConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualNetworkGatewayConnection') + + request = build_virtual_network_gateway_connections_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VirtualNetworkGatewayConnection", + **kwargs: Any + ) -> LROPoller["_models.VirtualNetworkGatewayConnection"]: + """Creates or updates a virtual network gateway connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to the create or update virtual network gateway + connection operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualNetworkGatewayConnection or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkGatewayConnection": + """Gets the specified virtual network gateway connection by resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkGatewayConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_get_request( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_delete_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified virtual network Gateway connection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + def _update_tags_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.VirtualNetworkGatewayConnection"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VirtualNetworkGatewayConnection"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_virtual_network_gateway_connections_update_tags_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + + @distributed_trace + def begin_update_tags( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> LROPoller["_models.VirtualNetworkGatewayConnection"]: + """Updates a virtual network gateway connection tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to update virtual network gateway connection tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualNetworkGatewayConnection or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_tags_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGatewayConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}"} # type: ignore + + def _set_shared_key_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.ConnectionSharedKey", + **kwargs: Any + ) -> "_models.ConnectionSharedKey": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionSharedKey"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ConnectionSharedKey') + + request = build_virtual_network_gateway_connections_set_shared_key_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._set_shared_key_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ConnectionSharedKey', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ConnectionSharedKey', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _set_shared_key_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey"} # type: ignore + + + @distributed_trace + def begin_set_shared_key( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.ConnectionSharedKey", + **kwargs: Any + ) -> LROPoller["_models.ConnectionSharedKey"]: + """The Put VirtualNetworkGatewayConnectionSharedKey operation sets the virtual network gateway + connection shared key for passed virtual network gateway connection in the specified resource + group through Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The virtual network gateway connection name. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to the Begin Set Virtual Network Gateway connection + Shared key operation throughNetwork resource provider. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ConnectionSharedKey + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ConnectionSharedKey or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectionSharedKey] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionSharedKey"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._set_shared_key_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectionSharedKey', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_set_shared_key.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey"} # type: ignore + + @distributed_trace + def get_shared_key( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> "_models.ConnectionSharedKey": + """The Get VirtualNetworkGatewayConnectionSharedKey operation retrieves information about the + specified virtual network gateway connection shared key through Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The virtual network gateway connection shared + key name. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ConnectionSharedKey, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ConnectionSharedKey + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionSharedKey"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_get_shared_key_request( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get_shared_key.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ConnectionSharedKey', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get_shared_key.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.VirtualNetworkGatewayConnectionListResult"]: + """The List VirtualNetworkGatewayConnections operation retrieves all the virtual network gateways + connections created. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkGatewayConnectionListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayConnectionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayConnectionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_gateway_connections_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_gateway_connections_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkGatewayConnectionListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections"} # type: ignore + + def _reset_shared_key_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.ConnectionResetSharedKey", + **kwargs: Any + ) -> Optional["_models.ConnectionResetSharedKey"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ConnectionResetSharedKey"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'ConnectionResetSharedKey') + + request = build_virtual_network_gateway_connections_reset_shared_key_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._reset_shared_key_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ConnectionResetSharedKey', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _reset_shared_key_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey/reset"} # type: ignore + + + @distributed_trace + def begin_reset_shared_key( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.ConnectionResetSharedKey", + **kwargs: Any + ) -> LROPoller["_models.ConnectionResetSharedKey"]: + """The VirtualNetworkGatewayConnectionResetSharedKey operation resets the virtual network gateway + connection shared key for passed virtual network gateway connection in the specified resource + group through Network resource provider. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The virtual network gateway connection reset + shared key Name. + :type virtual_network_gateway_connection_name: str + :param parameters: Parameters supplied to the begin reset virtual network gateway connection + shared key operation through network resource provider. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.ConnectionResetSharedKey + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ConnectionResetSharedKey or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ConnectionResetSharedKey] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ConnectionResetSharedKey"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._reset_shared_key_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ConnectionResetSharedKey', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset_shared_key.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey/reset"} # type: ignore + + def _start_packet_capture_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: Optional["_models.VpnPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnPacketCaptureStartParameters') + else: + _json = None + + request = build_virtual_network_gateway_connections_start_packet_capture_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._start_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _start_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/startPacketCapture"} # type: ignore + + + @distributed_trace + def begin_start_packet_capture( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: Optional["_models.VpnPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> LROPoller[str]: + """Starts packet capture on virtual network gateway connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + connection. + :type virtual_network_gateway_connection_name: str + :param parameters: Virtual network gateway packet capture parameters supplied to start packet + capture on gateway connection. Default value is None. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnPacketCaptureStartParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._start_packet_capture_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/startPacketCapture"} # type: ignore + + def _stop_packet_capture_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VpnPacketCaptureStopParameters", + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VpnPacketCaptureStopParameters') + + request = build_virtual_network_gateway_connections_stop_packet_capture_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._stop_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _stop_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/stopPacketCapture"} # type: ignore + + + @distributed_trace + def begin_stop_packet_capture( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + parameters: "_models.VpnPacketCaptureStopParameters", + **kwargs: Any + ) -> LROPoller[str]: + """Stops packet capture on virtual network gateway connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + Connection. + :type virtual_network_gateway_connection_name: str + :param parameters: Virtual network gateway packet capture parameters supplied to stop packet + capture on gateway connection. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnPacketCaptureStopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._stop_packet_capture_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/stopPacketCapture"} # type: ignore + + def _get_ike_sas_initial( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_get_ike_sas_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_ike_sas_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_ike_sas_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/getikesas"} # type: ignore + + + @distributed_trace + def begin_get_ike_sas( + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> LROPoller[str]: + """Lists IKE Security Associations for the virtual network gateway connection in the specified + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + Connection. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_ike_sas_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_ike_sas.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/getikesas"} # type: ignore + + def _reset_connection_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_connections_reset_connection_request_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._reset_connection_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reset_connection_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/resetconnection"} # type: ignore + + + @distributed_trace + def begin_reset_connection( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Resets the virtual network gateway connection specified. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_network_gateway_connection_name: The name of the virtual network gateway + Connection. + :type virtual_network_gateway_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._reset_connection_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/resetconnection"} # type: ignore +class LocalNetworkGatewaysOperations(object): + """LocalNetworkGatewaysOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + local_network_gateway_name: str, + parameters: "_models.LocalNetworkGateway", + **kwargs: Any + ) -> "_models.LocalNetworkGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'LocalNetworkGateway') + + request = build_local_network_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + local_network_gateway_name: str, + parameters: "_models.LocalNetworkGateway", + **kwargs: Any + ) -> LROPoller["_models.LocalNetworkGateway"]: + """Creates or updates a local network gateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param local_network_gateway_name: The name of the local network gateway. + :type local_network_gateway_name: str + :param parameters: Parameters supplied to the create or update local network gateway operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either LocalNetworkGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + local_network_gateway_name: str, + **kwargs: Any + ) -> "_models.LocalNetworkGateway": + """Gets the specified local network gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param local_network_gateway_name: The name of the local network gateway. + :type local_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LocalNetworkGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_local_network_gateways_get_request( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + local_network_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_local_network_gateways_delete_request_initial( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + local_network_gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified local network gateway. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param local_network_gateway_name: The name of the local network gateway. + :type local_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + local_network_gateway_name: str, + parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.LocalNetworkGateway": + """Updates a local network gateway tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param local_network_gateway_name: The name of the local network gateway. + :type local_network_gateway_name: str + :param parameters: Parameters supplied to update local network gateway tags. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LocalNetworkGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.LocalNetworkGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'TagsObject') + + request = build_local_network_gateways_update_tags_request( + resource_group_name=resource_group_name, + local_network_gateway_name=local_network_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LocalNetworkGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.LocalNetworkGatewayListResult"]: + """Gets all the local network gateways in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LocalNetworkGatewayListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.LocalNetworkGatewayListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocalNetworkGatewayListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_local_network_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_local_network_gateways_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("LocalNetworkGatewayListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways"} # type: ignore +class VirtualNetworkGatewayNatRulesOperations(object): + """VirtualNetworkGatewayNatRulesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkGatewayNatRule": + """Retrieves the details of a nat rule. + + :param resource_group_name: The resource group name of the Virtual Network Gateway. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the gateway. + :type virtual_network_gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkGatewayNatRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_nat_rules_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkGatewayNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + nat_rule_parameters: "_models.VirtualNetworkGatewayNatRule", + **kwargs: Any + ) -> "_models.VirtualNetworkGatewayNatRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(nat_rule_parameters, 'VirtualNetworkGatewayNatRule') + + request = build_virtual_network_gateway_nat_rules_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkGatewayNatRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkGatewayNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + nat_rule_parameters: "_models.VirtualNetworkGatewayNatRule", + **kwargs: Any + ) -> LROPoller["_models.VirtualNetworkGatewayNatRule"]: + """Creates a nat rule to a scalable virtual network gateway if it doesn't exist else updates the + existing nat rules. + + :param resource_group_name: The resource group name of the Virtual Network Gateway. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the gateway. + :type virtual_network_gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :param nat_rule_parameters: Parameters supplied to create or Update a Nat Rule. + :type nat_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualNetworkGatewayNatRule or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkGatewayNatRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkGatewayNatRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + nat_rule_parameters=nat_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkGatewayNatRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_gateway_nat_rules_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_network_gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a nat rule. + + :param resource_group_name: The resource group name of the Virtual Network Gateway. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the gateway. + :type virtual_network_gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules/{natRuleName}"} # type: ignore + + @distributed_trace + def list_by_virtual_network_gateway( + self, + resource_group_name: str, + virtual_network_gateway_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVirtualNetworkGatewayNatRulesResult"]: + """Retrieves all nat rules for a particular virtual network gateway. + + :param resource_group_name: The resource group name of the virtual network gateway. + :type resource_group_name: str + :param virtual_network_gateway_name: The name of the gateway. + :type virtual_network_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualNetworkGatewayNatRulesResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualNetworkGatewayNatRulesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualNetworkGatewayNatRulesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_gateway_nat_rules_list_by_virtual_network_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + template_url=self.list_by_virtual_network_gateway.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_gateway_nat_rules_list_by_virtual_network_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_network_gateway_name=virtual_network_gateway_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualNetworkGatewayNatRulesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_virtual_network_gateway.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/natRules"} # type: ignore +class VirtualNetworkTapsOperations(object): + """VirtualNetworkTapsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + tap_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_taps_delete_request_initial( + resource_group_name=resource_group_name, + tap_name=tap_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + tap_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified virtual network tap. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param tap_name: The name of the virtual network tap. + :type tap_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + tap_name=tap_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + tap_name: str, + **kwargs: Any + ) -> "_models.VirtualNetworkTap": + """Gets information about the specified virtual network tap. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param tap_name: The name of virtual network tap. + :type tap_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkTap, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTap"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_network_taps_get_request( + resource_group_name=resource_group_name, + tap_name=tap_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + tap_name: str, + parameters: "_models.VirtualNetworkTap", + **kwargs: Any + ) -> "_models.VirtualNetworkTap": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTap"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualNetworkTap') + + request = build_virtual_network_taps_create_or_update_request_initial( + resource_group_name=resource_group_name, + tap_name=tap_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + tap_name: str, + parameters: "_models.VirtualNetworkTap", + **kwargs: Any + ) -> LROPoller["_models.VirtualNetworkTap"]: + """Creates or updates a Virtual Network Tap. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param tap_name: The name of the virtual network tap. + :type tap_name: str + :param parameters: Parameters supplied to the create or update virtual network tap operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualNetworkTap or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTap"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + tap_name=tap_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + tap_name: str, + tap_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VirtualNetworkTap": + """Updates an VirtualNetworkTap tags. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param tap_name: The name of the tap. + :type tap_name: str + :param tap_parameters: Parameters supplied to update VirtualNetworkTap tags. + :type tap_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualNetworkTap, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTap + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTap"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(tap_parameters, 'TagsObject') + + request = build_virtual_network_taps_update_tags_request( + resource_group_name=resource_group_name, + tap_name=tap_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualNetworkTap', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps/{tapName}"} # type: ignore + + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.VirtualNetworkTapListResult"]: + """Gets all the VirtualNetworkTaps in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkTapListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTapListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTapListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_taps_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_taps_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkTapListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualNetworkTaps"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.VirtualNetworkTapListResult"]: + """Gets all the VirtualNetworkTaps in a subscription. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualNetworkTapListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualNetworkTapListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworkTapListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_network_taps_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_network_taps_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualNetworkTapListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkTaps"} # type: ignore +class VirtualRoutersOperations(object): + """VirtualRoutersOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_router_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_routers_delete_request_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_router_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified Virtual Router. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_router_name: str, + expand: Optional[str] = None, + **kwargs: Any + ) -> "_models.VirtualRouter": + """Gets the specified Virtual Router. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param expand: Expands referenced resources. Default value is None. + :type expand: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualRouter, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualRouter + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_routers_get_request( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + expand=expand, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualRouter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_router_name: str, + parameters: "_models.VirtualRouter", + **kwargs: Any + ) -> "_models.VirtualRouter": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouter"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualRouter') + + request = build_virtual_routers_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualRouter', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualRouter', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_router_name: str, + parameters: "_models.VirtualRouter", + **kwargs: Any + ) -> LROPoller["_models.VirtualRouter"]: + """Creates or updates the specified Virtual Router. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param parameters: Parameters supplied to the create or update Virtual Router. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualRouter + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualRouter or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualRouter] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouter"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualRouter', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.VirtualRouterListResult"]: + """Lists all Virtual Routers in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualRouterListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualRouterListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_routers_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_routers_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualRouterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.VirtualRouterListResult"]: + """Gets all the Virtual Routers in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualRouterListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualRouterListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_routers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_routers_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualRouterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualRouters"} # type: ignore +class VirtualRouterPeeringsOperations(object): + """VirtualRouterPeeringsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_router_peerings_delete_request_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified peering from a Virtual Router. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param peering_name: The name of the peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + **kwargs: Any + ) -> "_models.VirtualRouterPeering": + """Gets the specified Virtual Router Peering. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param peering_name: The name of the Virtual Router Peering. + :type peering_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualRouterPeering, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeering + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_router_peerings_get_request( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualRouterPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + parameters: "_models.VirtualRouterPeering", + **kwargs: Any + ) -> "_models.VirtualRouterPeering": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterPeering"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'VirtualRouterPeering') + + request = build_virtual_router_peerings_create_or_update_request_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualRouterPeering', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualRouterPeering', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_router_name: str, + peering_name: str, + parameters: "_models.VirtualRouterPeering", + **kwargs: Any + ) -> LROPoller["_models.VirtualRouterPeering"]: + """Creates or updates the specified Virtual Router Peering. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :param peering_name: The name of the Virtual Router Peering. + :type peering_name: str + :param parameters: Parameters supplied to the create or update Virtual Router Peering + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeering + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualRouterPeering or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeering] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterPeering"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + peering_name=peering_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualRouterPeering', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings/{peeringName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_router_name: str, + **kwargs: Any + ) -> Iterable["_models.VirtualRouterPeeringListResult"]: + """Lists all Virtual Router Peerings in a Virtual Router resource. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param virtual_router_name: The name of the Virtual Router. + :type virtual_router_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either VirtualRouterPeeringListResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.VirtualRouterPeeringListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualRouterPeeringListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_router_peerings_list_request( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_router_peerings_list_request( + resource_group_name=resource_group_name, + virtual_router_name=virtual_router_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("VirtualRouterPeeringListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualRouters/{virtualRouterName}/peerings"} # type: ignore +class VirtualWansOperations(object): + """VirtualWansOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> "_models.VirtualWAN": + """Retrieves the details of a VirtualWAN. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN being retrieved. + :type virtual_wan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualWAN, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualWAN + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWAN"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_wans_get_request( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualWAN', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_wan_name: str, + wan_parameters: "_models.VirtualWAN", + **kwargs: Any + ) -> "_models.VirtualWAN": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWAN"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(wan_parameters, 'VirtualWAN') + + request = build_virtual_wans_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualWAN', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualWAN', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_wan_name: str, + wan_parameters: "_models.VirtualWAN", + **kwargs: Any + ) -> LROPoller["_models.VirtualWAN"]: + """Creates a VirtualWAN resource if it doesn't exist else updates the existing VirtualWAN. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN being created or updated. + :type virtual_wan_name: str + :param wan_parameters: Parameters supplied to create or update VirtualWAN. + :type wan_parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualWAN + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualWAN or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualWAN] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWAN"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + wan_parameters=wan_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualWAN', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + virtual_wan_name: str, + wan_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VirtualWAN": + """Updates a VirtualWAN tags. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN being updated. + :type virtual_wan_name: str + :param wan_parameters: Parameters supplied to Update VirtualWAN tags. + :type wan_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualWAN, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualWAN + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualWAN"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(wan_parameters, 'TagsObject') + + request = build_virtual_wans_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualWAN', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_wans_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a VirtualWAN. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN being deleted. + :type virtual_wan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{VirtualWANName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVirtualWANsResult"]: + """Lists all the VirtualWANs in a resource group. + + :param resource_group_name: The resource group name of the VirtualWan. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualWANsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualWANsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualWANsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_wans_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_wans_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualWANsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ListVirtualWANsResult"]: + """Lists all the VirtualWANs in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualWANsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualWANsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualWANsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_wans_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_wans_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualWANsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualWans"} # type: ignore +class VpnSitesOperations(object): + """VpnSitesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any + ) -> "_models.VpnSite": + """Retrieves the details of a VPN site. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite being retrieved. + :type vpn_site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnSite, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnSite + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_sites_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + vpn_site_name: str, + vpn_site_parameters: "_models.VpnSite", + **kwargs: Any + ) -> "_models.VpnSite": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_site_parameters, 'VpnSite') + + request = build_vpn_sites_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnSite', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + vpn_site_name: str, + vpn_site_parameters: "_models.VpnSite", + **kwargs: Any + ) -> LROPoller["_models.VpnSite"]: + """Creates a VpnSite resource if it doesn't exist else updates the existing VpnSite. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite being created or updated. + :type vpn_site_name: str + :param vpn_site_parameters: Parameters supplied to create or update VpnSite. + :type vpn_site_parameters: ~azure.mgmt.network.v2021_08_01.models.VpnSite + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnSite or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnSite] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSite"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + vpn_site_parameters=vpn_site_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnSite', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + vpn_site_name: str, + vpn_site_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VpnSite": + """Updates VpnSite tags. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite being updated. + :type vpn_site_name: str + :param vpn_site_parameters: Parameters supplied to update VpnSite tags. + :type vpn_site_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnSite, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnSite + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSite"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_site_parameters, 'TagsObject') + + request = build_vpn_sites_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnSite', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_sites_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a VpnSite. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite being deleted. + :type vpn_site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVpnSitesResult"]: + """Lists all the vpnSites in a resource group. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnSitesResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnSitesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnSitesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_sites_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_sites_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnSitesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ListVpnSitesResult"]: + """Lists all the VpnSites in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnSitesResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnSitesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnSitesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_sites_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_sites_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnSitesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/vpnSites"} # type: ignore +class VpnSiteLinksOperations(object): + """VpnSiteLinksOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + vpn_site_name: str, + vpn_site_link_name: str, + **kwargs: Any + ) -> "_models.VpnSiteLink": + """Retrieves the details of a VPN site link. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite. + :type vpn_site_name: str + :param vpn_site_link_name: The name of the VpnSiteLink being retrieved. + :type vpn_site_link_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnSiteLink, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnSiteLink + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSiteLink"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_site_links_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + vpn_site_link_name=vpn_site_link_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnSiteLink', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}/vpnSiteLinks/{vpnSiteLinkName}"} # type: ignore + + + @distributed_trace + def list_by_vpn_site( + self, + resource_group_name: str, + vpn_site_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVpnSiteLinksResult"]: + """Lists all the vpnSiteLinks in a resource group for a vpn site. + + :param resource_group_name: The resource group name of the VpnSite. + :type resource_group_name: str + :param vpn_site_name: The name of the VpnSite. + :type vpn_site_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnSiteLinksResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnSiteLinksResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnSiteLinksResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_site_links_list_by_vpn_site_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + template_url=self.list_by_vpn_site.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_site_links_list_by_vpn_site_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_site_name=vpn_site_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnSiteLinksResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_vpn_site.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnSites/{vpnSiteName}/vpnSiteLinks"} # type: ignore +class VpnSitesConfigurationOperations(object): + """VpnSitesConfigurationOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _download_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_wan_name: str, + request: "_models.GetVpnSitesConfigurationRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'GetVpnSitesConfigurationRequest') + + request = build_vpn_sites_configuration_download_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._download_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _download_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnConfiguration"} # type: ignore + + + @distributed_trace + def begin_download( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_wan_name: str, + request: "_models.GetVpnSitesConfigurationRequest", + **kwargs: Any + ) -> LROPoller[None]: + """Gives the sas-url to download the configurations for vpn-sites in a resource group. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN for which configuration of all vpn-sites is + needed. + :type virtual_wan_name: str + :param request: Parameters supplied to download vpn-sites configuration. + :type request: ~azure.mgmt.network.v2021_08_01.models.GetVpnSitesConfigurationRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._download_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + request=request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_download.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnConfiguration"} # type: ignore +class VpnServerConfigurationsOperations(object): + """VpnServerConfigurationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any + ) -> "_models.VpnServerConfiguration": + """Retrieves the details of a VpnServerConfiguration. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration being retrieved. + :type vpn_server_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnServerConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_server_configurations_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + vpn_server_configuration_parameters: "_models.VpnServerConfiguration", + **kwargs: Any + ) -> "_models.VpnServerConfiguration": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_server_configuration_parameters, 'VpnServerConfiguration') + + request = build_vpn_server_configurations_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + vpn_server_configuration_parameters: "_models.VpnServerConfiguration", + **kwargs: Any + ) -> LROPoller["_models.VpnServerConfiguration"]: + """Creates a VpnServerConfiguration resource if it doesn't exist else updates the existing + VpnServerConfiguration. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration being created or + updated. + :type vpn_server_configuration_name: str + :param vpn_server_configuration_parameters: Parameters supplied to create or update + VpnServerConfiguration. + :type vpn_server_configuration_parameters: + ~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnServerConfiguration or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfiguration"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + vpn_server_configuration_parameters=vpn_server_configuration_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + vpn_server_configuration_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VpnServerConfiguration": + """Updates VpnServerConfiguration tags. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration being updated. + :type vpn_server_configuration_name: str + :param vpn_server_configuration_parameters: Parameters supplied to update + VpnServerConfiguration tags. + :type vpn_server_configuration_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnServerConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnServerConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_server_configuration_parameters, 'TagsObject') + + request = build_vpn_server_configurations_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnServerConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_server_configurations_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a VpnServerConfiguration. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration being deleted. + :type vpn_server_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVpnServerConfigurationsResult"]: + """Lists all the vpnServerConfigurations in a resource group. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnServerConfigurationsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnServerConfigurationsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnServerConfigurationsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_server_configurations_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_server_configurations_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnServerConfigurationsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ListVpnServerConfigurationsResult"]: + """Lists all the VpnServerConfigurations in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnServerConfigurationsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnServerConfigurationsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnServerConfigurationsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_server_configurations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_server_configurations_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnServerConfigurationsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/vpnServerConfigurations"} # type: ignore +class ConfigurationPolicyGroupsOperations(object): + """ConfigurationPolicyGroupsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + vpn_server_configuration_policy_group_parameters: "_models.VpnServerConfigurationPolicyGroup", + **kwargs: Any + ) -> "_models.VpnServerConfigurationPolicyGroup": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfigurationPolicyGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_server_configuration_policy_group_parameters, 'VpnServerConfigurationPolicyGroup') + + request = build_configuration_policy_groups_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnServerConfigurationPolicyGroup', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnServerConfigurationPolicyGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + vpn_server_configuration_policy_group_parameters: "_models.VpnServerConfigurationPolicyGroup", + **kwargs: Any + ) -> LROPoller["_models.VpnServerConfigurationPolicyGroup"]: + """Creates a ConfigurationPolicyGroup if it doesn't exist else updates the existing one. + + :param resource_group_name: The resource group name of the ConfigurationPolicyGroup. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration. + :type vpn_server_configuration_name: str + :param configuration_policy_group_name: The name of the ConfigurationPolicyGroup. + :type configuration_policy_group_name: str + :param vpn_server_configuration_policy_group_parameters: Parameters supplied to create or + update a VpnServerConfiguration PolicyGroup. + :type vpn_server_configuration_policy_group_parameters: + ~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnServerConfigurationPolicyGroup or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfigurationPolicyGroup"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + vpn_server_configuration_policy_group_parameters=vpn_server_configuration_policy_group_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnServerConfigurationPolicyGroup', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_configuration_policy_groups_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a ConfigurationPolicyGroup. + + :param resource_group_name: The resource group name of the ConfigurationPolicyGroup. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration. + :type vpn_server_configuration_name: str + :param configuration_policy_group_name: The name of the ConfigurationPolicyGroup. + :type configuration_policy_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + configuration_policy_group_name: str, + **kwargs: Any + ) -> "_models.VpnServerConfigurationPolicyGroup": + """Retrieves the details of a ConfigurationPolicyGroup. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration. + :type vpn_server_configuration_name: str + :param configuration_policy_group_name: The name of the ConfigurationPolicyGroup being + retrieved. + :type configuration_policy_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnServerConfigurationPolicyGroup, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationPolicyGroup + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfigurationPolicyGroup"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_configuration_policy_groups_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + configuration_policy_group_name=configuration_policy_group_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnServerConfigurationPolicyGroup', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups/{configurationPolicyGroupName}"} # type: ignore + + + @distributed_trace + def list_by_vpn_server_configuration( + self, + resource_group_name: str, + vpn_server_configuration_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVpnServerConfigurationPolicyGroupsResult"]: + """Lists all the configurationPolicyGroups in a resource group for a vpnServerConfiguration. + + :param resource_group_name: The resource group name of the VpnServerConfiguration. + :type resource_group_name: str + :param vpn_server_configuration_name: The name of the VpnServerConfiguration. + :type vpn_server_configuration_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnServerConfigurationPolicyGroupsResult or + the result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnServerConfigurationPolicyGroupsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnServerConfigurationPolicyGroupsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_configuration_policy_groups_list_by_vpn_server_configuration_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + template_url=self.list_by_vpn_server_configuration.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_configuration_policy_groups_list_by_vpn_server_configuration_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + vpn_server_configuration_name=vpn_server_configuration_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnServerConfigurationPolicyGroupsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_vpn_server_configuration.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName}/configurationPolicyGroups"} # type: ignore +class VirtualHubsOperations(object): + """VirtualHubsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> "_models.VirtualHub": + """Retrieves the details of a VirtualHub. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualHub, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualHub + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHub"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hubs_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualHub', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + virtual_hub_parameters: "_models.VirtualHub", + **kwargs: Any + ) -> "_models.VirtualHub": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHub"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(virtual_hub_parameters, 'VirtualHub') + + request = build_virtual_hubs_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualHub', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualHub', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + virtual_hub_parameters: "_models.VirtualHub", + **kwargs: Any + ) -> LROPoller["_models.VirtualHub"]: + """Creates a VirtualHub resource if it doesn't exist else updates the existing VirtualHub. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param virtual_hub_parameters: Parameters supplied to create or update VirtualHub. + :type virtual_hub_parameters: ~azure.mgmt.network.v2021_08_01.models.VirtualHub + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualHub or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualHub] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHub"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + virtual_hub_parameters=virtual_hub_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualHub', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + virtual_hub_name: str, + virtual_hub_parameters: "_models.TagsObject", + **kwargs: Any + ) -> "_models.VirtualHub": + """Updates VirtualHub tags. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param virtual_hub_parameters: Parameters supplied to update VirtualHub tags. + :type virtual_hub_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualHub, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualHub + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHub"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(virtual_hub_parameters, 'TagsObject') + + request = build_virtual_hubs_update_tags_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.update_tags.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualHub', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hubs_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a VirtualHub. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVirtualHubsResult"]: + """Lists all the VirtualHubs in a resource group. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hubs_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hubs_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ListVirtualHubsResult"]: + """Lists all the VirtualHubs in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hubs_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hubs_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualHubs"} # type: ignore + + def _get_effective_virtual_hub_routes_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + effective_routes_parameters: Optional["_models.EffectiveRoutesParameters"] = None, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if effective_routes_parameters is not None: + _json = self._serialize.body(effective_routes_parameters, 'EffectiveRoutesParameters') + else: + _json = None + + request = build_virtual_hubs_get_effective_virtual_hub_routes_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_effective_virtual_hub_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _get_effective_virtual_hub_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/effectiveRoutes"} # type: ignore + + + @distributed_trace + def begin_get_effective_virtual_hub_routes( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + effective_routes_parameters: Optional["_models.EffectiveRoutesParameters"] = None, + **kwargs: Any + ) -> LROPoller[None]: + """Gets the effective routes configured for the Virtual Hub resource or the specified resource . + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param effective_routes_parameters: Parameters supplied to get the effective routes for a + specific resource. Default value is None. + :type effective_routes_parameters: + ~azure.mgmt.network.v2021_08_01.models.EffectiveRoutesParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_effective_virtual_hub_routes_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + effective_routes_parameters=effective_routes_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_effective_virtual_hub_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/effectiveRoutes"} # type: ignore +class HubVirtualNetworkConnectionsOperations(object): + """HubVirtualNetworkConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + hub_virtual_network_connection_parameters: "_models.HubVirtualNetworkConnection", + **kwargs: Any + ) -> "_models.HubVirtualNetworkConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubVirtualNetworkConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(hub_virtual_network_connection_parameters, 'HubVirtualNetworkConnection') + + request = build_hub_virtual_network_connections_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('HubVirtualNetworkConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('HubVirtualNetworkConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + hub_virtual_network_connection_parameters: "_models.HubVirtualNetworkConnection", + **kwargs: Any + ) -> LROPoller["_models.HubVirtualNetworkConnection"]: + """Creates a hub virtual network connection if it doesn't exist else updates the existing one. + + :param resource_group_name: The resource group name of the HubVirtualNetworkConnection. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the HubVirtualNetworkConnection. + :type connection_name: str + :param hub_virtual_network_connection_parameters: Parameters supplied to create or update a hub + virtual network connection. + :type hub_virtual_network_connection_parameters: + ~azure.mgmt.network.v2021_08_01.models.HubVirtualNetworkConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either HubVirtualNetworkConnection or the result + of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.HubVirtualNetworkConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubVirtualNetworkConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + hub_virtual_network_connection_parameters=hub_virtual_network_connection_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('HubVirtualNetworkConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_hub_virtual_network_connections_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a HubVirtualNetworkConnection. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the HubVirtualNetworkConnection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.HubVirtualNetworkConnection": + """Retrieves the details of a HubVirtualNetworkConnection. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: HubVirtualNetworkConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.HubVirtualNetworkConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubVirtualNetworkConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_hub_virtual_network_connections_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('HubVirtualNetworkConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> Iterable["_models.ListHubVirtualNetworkConnectionsResult"]: + """Retrieves the details of all HubVirtualNetworkConnections. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListHubVirtualNetworkConnectionsResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListHubVirtualNetworkConnectionsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListHubVirtualNetworkConnectionsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_hub_virtual_network_connections_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_hub_virtual_network_connections_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListHubVirtualNetworkConnectionsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubVirtualNetworkConnections"} # type: ignore +class VpnGatewaysOperations(object): + """VpnGatewaysOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> "_models.VpnGateway": + """Retrieves the details of a virtual wan vpn gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_gateways_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + gateway_name: str, + vpn_gateway_parameters: "_models.VpnGateway", + **kwargs: Any + ) -> "_models.VpnGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_gateway_parameters, 'VpnGateway') + + request = build_vpn_gateways_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + gateway_name: str, + vpn_gateway_parameters: "_models.VpnGateway", + **kwargs: Any + ) -> LROPoller["_models.VpnGateway"]: + """Creates a virtual wan vpn gateway if it doesn't exist else updates the existing gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param vpn_gateway_parameters: Parameters supplied to create or Update a virtual wan vpn + gateway. + :type vpn_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.VpnGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnGateway or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_gateway_parameters=vpn_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + def _update_tags_initial( + self, + resource_group_name: str, + gateway_name: str, + vpn_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.VpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_gateway_parameters, 'TagsObject') + + request = build_vpn_gateways_update_tags_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace + def begin_update_tags( + self, + resource_group_name: str, + gateway_name: str, + vpn_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> LROPoller["_models.VpnGateway"]: + """Updates virtual wan vpn gateway tags. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param vpn_gateway_parameters: Parameters supplied to update a virtual wan vpn gateway tags. + :type vpn_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnGateway or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_tags_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_gateway_parameters=vpn_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_gateways_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a virtual wan vpn gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}"} # type: ignore + + def _reset_initial( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> Optional["_models.VpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_gateways_reset_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._reset_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _reset_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/reset"} # type: ignore + + + @distributed_trace + def begin_reset( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> LROPoller["_models.VpnGateway"]: + """Resets the primary of the vpn gateway in the specified resource group. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnGateway or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._reset_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/reset"} # type: ignore + + def _start_packet_capture_initial( + self, + resource_group_name: str, + gateway_name: str, + parameters: Optional["_models.VpnGatewayPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnGatewayPacketCaptureStartParameters') + else: + _json = None + + request = build_vpn_gateways_start_packet_capture_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._start_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _start_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/startpacketcapture"} # type: ignore + + + @distributed_trace + def begin_start_packet_capture( + self, + resource_group_name: str, + gateway_name: str, + parameters: Optional["_models.VpnGatewayPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> LROPoller[str]: + """Starts packet capture on vpn gateway in the specified resource group. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param parameters: Vpn gateway packet capture parameters supplied to start packet capture on + vpn gateway. Default value is None. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnGatewayPacketCaptureStartParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._start_packet_capture_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/startpacketcapture"} # type: ignore + + def _stop_packet_capture_initial( + self, + resource_group_name: str, + gateway_name: str, + parameters: Optional["_models.VpnGatewayPacketCaptureStopParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnGatewayPacketCaptureStopParameters') + else: + _json = None + + request = build_vpn_gateways_stop_packet_capture_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._stop_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _stop_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/stoppacketcapture"} # type: ignore + + + @distributed_trace + def begin_stop_packet_capture( + self, + resource_group_name: str, + gateway_name: str, + parameters: Optional["_models.VpnGatewayPacketCaptureStopParameters"] = None, + **kwargs: Any + ) -> LROPoller[str]: + """Stops packet capture on vpn gateway in the specified resource group. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param parameters: Vpn gateway packet capture parameters supplied to stop packet capture on vpn + gateway. Default value is None. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.VpnGatewayPacketCaptureStopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._stop_packet_capture_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/stoppacketcapture"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVpnGatewaysResult"]: + """Lists all the VpnGateways in a resource group. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnGatewaysResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnGatewaysResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnGatewaysResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_gateways_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_gateways_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnGatewaysResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ListVpnGatewaysResult"]: + """Lists all the VpnGateways in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnGatewaysResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnGatewaysResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnGatewaysResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_gateways_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_gateways_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnGatewaysResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/vpnGateways"} # type: ignore +class VpnLinkConnectionsOperations(object): + """VpnLinkConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _reset_connection_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_link_connections_reset_connection_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + template_url=self._reset_connection_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reset_connection_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/resetconnection"} # type: ignore + + + @distributed_trace + def begin_reset_connection( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Resets the VpnLink connection specified. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :param link_connection_name: The name of the vpn link connection. + :type link_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._reset_connection_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/resetconnection"} # type: ignore + + def _get_ike_sas_initial( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_link_connections_get_ike_sas_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + template_url=self._get_ike_sas_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_ike_sas_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/getikesas"} # type: ignore + + + @distributed_trace + def begin_get_ike_sas( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> LROPoller[str]: + """Lists IKE Security Associations for Vpn Site Link Connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :param link_connection_name: The name of the vpn link connection. + :type link_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_ike_sas_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_ike_sas.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/getikesas"} # type: ignore + + @distributed_trace + def list_by_vpn_connection( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVpnSiteLinkConnectionsResult"]: + """Retrieves all vpn site link connections for a particular virtual wan vpn gateway vpn + connection. + + :param resource_group_name: The resource group name of the vpn gateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnSiteLinkConnectionsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnSiteLinkConnectionsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnSiteLinkConnectionsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_link_connections_list_by_vpn_connection_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + template_url=self.list_by_vpn_connection.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_link_connections_list_by_vpn_connection_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnSiteLinkConnectionsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_vpn_connection.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections"} # type: ignore +class VpnConnectionsOperations(object): + """VpnConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.VpnConnection": + """Retrieves the details of a vpn connection. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_connections_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + vpn_connection_parameters: "_models.VpnConnection", + **kwargs: Any + ) -> "_models.VpnConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(vpn_connection_parameters, 'VpnConnection') + + request = build_vpn_connections_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + vpn_connection_parameters: "_models.VpnConnection", + **kwargs: Any + ) -> LROPoller["_models.VpnConnection"]: + """Creates a vpn connection to a scalable vpn gateway if it doesn't exist else updates the + existing connection. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :param vpn_connection_parameters: Parameters supplied to create or Update a VPN Connection. + :type vpn_connection_parameters: ~azure.mgmt.network.v2021_08_01.models.VpnConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnConnection or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + vpn_connection_parameters=vpn_connection_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_connections_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a vpn connection. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}"} # type: ignore + + def _start_packet_capture_initial( + self, + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + parameters: Optional["_models.VpnConnectionPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnConnectionPacketCaptureStartParameters') + else: + _json = None + + request = build_vpn_connections_start_packet_capture_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_connection_name=vpn_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._start_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _start_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/startpacketcapture"} # type: ignore + + + @distributed_trace + def begin_start_packet_capture( + self, + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + parameters: Optional["_models.VpnConnectionPacketCaptureStartParameters"] = None, + **kwargs: Any + ) -> LROPoller[str]: + """Starts packet capture on Vpn connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param vpn_connection_name: The name of the vpn connection. + :type vpn_connection_name: str + :param parameters: Vpn Connection packet capture parameters supplied to start packet capture on + gateway connection. Default value is None. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.VpnConnectionPacketCaptureStartParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._start_packet_capture_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_connection_name=vpn_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_start_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/startpacketcapture"} # type: ignore + + def _stop_packet_capture_initial( + self, + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + parameters: Optional["_models.VpnConnectionPacketCaptureStopParameters"] = None, + **kwargs: Any + ) -> Optional[str]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional[str]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + if parameters is not None: + _json = self._serialize.body(parameters, 'VpnConnectionPacketCaptureStopParameters') + else: + _json = None + + request = build_vpn_connections_stop_packet_capture_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_connection_name=vpn_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._stop_packet_capture_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('str', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _stop_packet_capture_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/stoppacketcapture"} # type: ignore + + + @distributed_trace + def begin_stop_packet_capture( + self, + resource_group_name: str, + gateway_name: str, + vpn_connection_name: str, + parameters: Optional["_models.VpnConnectionPacketCaptureStopParameters"] = None, + **kwargs: Any + ) -> LROPoller[str]: + """Stops packet capture on Vpn connection in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param vpn_connection_name: The name of the vpn connection. + :type vpn_connection_name: str + :param parameters: Vpn Connection packet capture parameters supplied to stop packet capture on + gateway connection. Default value is None. + :type parameters: + ~azure.mgmt.network.v2021_08_01.models.VpnConnectionPacketCaptureStopParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either str or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[str] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[str] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._stop_packet_capture_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + vpn_connection_name=vpn_connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('str', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_stop_packet_capture.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/stoppacketcapture"} # type: ignore + + @distributed_trace + def list_by_vpn_gateway( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVpnConnectionsResult"]: + """Retrieves all vpn connections for a particular virtual wan vpn gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnConnectionsResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnConnectionsResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnConnectionsResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_vpn_connections_list_by_vpn_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self.list_by_vpn_gateway.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_vpn_connections_list_by_vpn_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnConnectionsResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_vpn_gateway.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections"} # type: ignore +class VpnSiteLinkConnectionsOperations(object): + """VpnSiteLinkConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + gateway_name: str, + connection_name: str, + link_connection_name: str, + **kwargs: Any + ) -> "_models.VpnSiteLinkConnection": + """Retrieves the details of a vpn site link connection. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param connection_name: The name of the vpn connection. + :type connection_name: str + :param link_connection_name: The name of the vpn connection. + :type link_connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnSiteLinkConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnSiteLinkConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnSiteLinkConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_site_link_connections_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + connection_name=connection_name, + link_connection_name=link_connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnSiteLinkConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}"} # type: ignore + +class NatRulesOperations(object): + """NatRulesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> "_models.VpnGatewayNatRule": + """Retrieves the details of a nat ruleGet. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VpnGatewayNatRule, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGatewayNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_nat_rules_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VpnGatewayNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + nat_rule_parameters: "_models.VpnGatewayNatRule", + **kwargs: Any + ) -> "_models.VpnGatewayNatRule": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGatewayNatRule"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(nat_rule_parameters, 'VpnGatewayNatRule') + + request = build_nat_rules_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VpnGatewayNatRule', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VpnGatewayNatRule', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + nat_rule_parameters: "_models.VpnGatewayNatRule", + **kwargs: Any + ) -> LROPoller["_models.VpnGatewayNatRule"]: + """Creates a nat rule to a scalable vpn gateway if it doesn't exist else updates the existing nat + rules. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :param nat_rule_parameters: Parameters supplied to create or Update a Nat Rule. + :type nat_rule_parameters: ~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnGatewayNatRule or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnGatewayNatRule] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnGatewayNatRule"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + nat_rule_parameters=nat_rule_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnGatewayNatRule', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_nat_rules_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + nat_rule_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a nat rule. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param nat_rule_name: The name of the nat rule. + :type nat_rule_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + nat_rule_name=nat_rule_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules/{natRuleName}"} # type: ignore + + @distributed_trace + def list_by_vpn_gateway( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVpnGatewayNatRulesResult"]: + """Retrieves all nat rules for a particular virtual wan vpn gateway. + + :param resource_group_name: The resource group name of the VpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVpnGatewayNatRulesResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVpnGatewayNatRulesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVpnGatewayNatRulesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_nat_rules_list_by_vpn_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self.list_by_vpn_gateway.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_nat_rules_list_by_vpn_gateway_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVpnGatewayNatRulesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_vpn_gateway.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/natRules"} # type: ignore +class P2SVpnGatewaysOperations(object): + """P2SVpnGatewaysOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> "_models.P2SVpnGateway": + """Retrieves the details of a virtual wan p2s vpn gateway. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: P2SVpnGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_p2_svpn_gateways_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + gateway_name: str, + p2_s_vpn_gateway_parameters: "_models.P2SVpnGateway", + **kwargs: Any + ) -> "_models.P2SVpnGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(p2_s_vpn_gateway_parameters, 'P2SVpnGateway') + + request = build_p2_svpn_gateways_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + gateway_name: str, + p2_s_vpn_gateway_parameters: "_models.P2SVpnGateway", + **kwargs: Any + ) -> LROPoller["_models.P2SVpnGateway"]: + """Creates a virtual wan p2s vpn gateway if it doesn't exist else updates the existing gateway. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param p2_s_vpn_gateway_parameters: Parameters supplied to create or Update a virtual wan p2s + vpn gateway. + :type p2_s_vpn_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either P2SVpnGateway or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + p2_s_vpn_gateway_parameters=p2_s_vpn_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + def _update_tags_initial( + self, + resource_group_name: str, + gateway_name: str, + p2_s_vpn_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.P2SVpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.P2SVpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(p2_s_vpn_gateway_parameters, 'TagsObject') + + request = build_p2_svpn_gateways_update_tags_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace + def begin_update_tags( + self, + resource_group_name: str, + gateway_name: str, + p2_s_vpn_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> LROPoller["_models.P2SVpnGateway"]: + """Updates virtual wan p2s vpn gateway tags. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :param p2_s_vpn_gateway_parameters: Parameters supplied to update a virtual wan p2s vpn gateway + tags. + :type p2_s_vpn_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either P2SVpnGateway or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_tags_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + p2_s_vpn_gateway_parameters=p2_s_vpn_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_p2_svpn_gateways_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a virtual wan p2s vpn gateway. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}"} # type: ignore + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.ListP2SVpnGatewaysResult"]: + """Lists all the P2SVpnGateways in a resource group. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListP2SVpnGatewaysResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListP2SVpnGatewaysResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListP2SVpnGatewaysResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_p2_svpn_gateways_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_p2_svpn_gateways_list_by_resource_group_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListP2SVpnGatewaysResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways"} # type: ignore + + @distributed_trace + def list( + self, + **kwargs: Any + ) -> Iterable["_models.ListP2SVpnGatewaysResult"]: + """Lists all the P2SVpnGateways in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListP2SVpnGatewaysResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListP2SVpnGatewaysResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListP2SVpnGatewaysResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_p2_svpn_gateways_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_p2_svpn_gateways_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListP2SVpnGatewaysResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/p2svpnGateways"} # type: ignore + + def _reset_initial( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> Optional["_models.P2SVpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.P2SVpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_p2_svpn_gateways_reset_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._reset_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _reset_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/reset"} # type: ignore + + + @distributed_trace + def begin_reset( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> LROPoller["_models.P2SVpnGateway"]: + """Resets the primary of the p2s vpn gateway in the specified resource group. + + :param resource_group_name: The resource group name of the P2SVpnGateway. + :type resource_group_name: str + :param gateway_name: The name of the gateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either P2SVpnGateway or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._reset_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_reset.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/reset"} # type: ignore + + def _generate_vpn_profile_initial( + self, + resource_group_name: str, + gateway_name: str, + parameters: "_models.P2SVpnProfileParameters", + **kwargs: Any + ) -> Optional["_models.VpnProfileResponse"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnProfileResponse"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'P2SVpnProfileParameters') + + request = build_p2_svpn_gateways_generate_vpn_profile_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._generate_vpn_profile_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnProfileResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _generate_vpn_profile_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/generatevpnprofile"} # type: ignore + + + @distributed_trace + def begin_generate_vpn_profile( + self, + resource_group_name: str, + gateway_name: str, + parameters: "_models.P2SVpnProfileParameters", + **kwargs: Any + ) -> LROPoller["_models.VpnProfileResponse"]: + """Generates VPN profile for P2S client of the P2SVpnGateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the P2SVpnGateway. + :type gateway_name: str + :param parameters: Parameters supplied to the generate P2SVpnGateway VPN client package + operation. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.P2SVpnProfileParameters + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnProfileResponse or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnProfileResponse] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnProfileResponse"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._generate_vpn_profile_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnProfileResponse', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_generate_vpn_profile.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/generatevpnprofile"} # type: ignore + + def _get_p2_s_vpn_connection_health_initial( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> Optional["_models.P2SVpnGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.P2SVpnGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_p2_svpn_gateways_get_p2_s_vpn_connection_health_request_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._get_p2_s_vpn_connection_health_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_p2_s_vpn_connection_health_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealth"} # type: ignore + + + @distributed_trace + def begin_get_p2_s_vpn_connection_health( + self, + resource_group_name: str, + gateway_name: str, + **kwargs: Any + ) -> LROPoller["_models.P2SVpnGateway"]: + """Gets the connection health of P2S clients of the virtual wan P2SVpnGateway in the specified + resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the P2SVpnGateway. + :type gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either P2SVpnGateway or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_p2_s_vpn_connection_health_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_p2_s_vpn_connection_health.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealth"} # type: ignore + + def _get_p2_s_vpn_connection_health_detailed_initial( + self, + resource_group_name: str, + gateway_name: str, + request: "_models.P2SVpnConnectionHealthRequest", + **kwargs: Any + ) -> Optional["_models.P2SVpnConnectionHealth"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.P2SVpnConnectionHealth"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'P2SVpnConnectionHealthRequest') + + request = build_p2_svpn_gateways_get_p2_s_vpn_connection_health_detailed_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + gateway_name=gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._get_p2_s_vpn_connection_health_detailed_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('P2SVpnConnectionHealth', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _get_p2_s_vpn_connection_health_detailed_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealthDetailed"} # type: ignore + + + @distributed_trace + def begin_get_p2_s_vpn_connection_health_detailed( + self, + resource_group_name: str, + gateway_name: str, + request: "_models.P2SVpnConnectionHealthRequest", + **kwargs: Any + ) -> LROPoller["_models.P2SVpnConnectionHealth"]: + """Gets the sas url to get the connection health detail of P2S clients of the virtual wan + P2SVpnGateway in the specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param gateway_name: The name of the P2SVpnGateway. + :type gateway_name: str + :param request: Request parameters supplied to get p2s vpn connections detailed health. + :type request: ~azure.mgmt.network.v2021_08_01.models.P2SVpnConnectionHealthRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either P2SVpnConnectionHealth or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.P2SVpnConnectionHealth] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.P2SVpnConnectionHealth"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._get_p2_s_vpn_connection_health_detailed_initial( + resource_group_name=resource_group_name, + gateway_name=gateway_name, + request=request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('P2SVpnConnectionHealth', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_get_p2_s_vpn_connection_health_detailed.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{gatewayName}/getP2sVpnConnectionHealthDetailed"} # type: ignore + + def _disconnect_p2_s_vpn_connections_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + p2_s_vpn_gateway_name: str, + request: "_models.P2SVpnConnectionRequest", + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(request, 'P2SVpnConnectionRequest') + + request = build_p2_svpn_gateways_disconnect_p2_s_vpn_connections_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + p2_s_vpn_gateway_name=p2_s_vpn_gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._disconnect_p2_s_vpn_connections_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _disconnect_p2_s_vpn_connections_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{p2sVpnGatewayName}/disconnectP2sVpnConnections"} # type: ignore + + + @distributed_trace + def begin_disconnect_p2_s_vpn_connections( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + p2_s_vpn_gateway_name: str, + request: "_models.P2SVpnConnectionRequest", + **kwargs: Any + ) -> LROPoller[None]: + """Disconnect P2S vpn connections of the virtual wan P2SVpnGateway in the specified resource + group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param p2_s_vpn_gateway_name: The name of the P2S Vpn Gateway. + :type p2_s_vpn_gateway_name: str + :param request: The parameters are supplied to disconnect p2s vpn connections. + :type request: ~azure.mgmt.network.v2021_08_01.models.P2SVpnConnectionRequest + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._disconnect_p2_s_vpn_connections_initial( + resource_group_name=resource_group_name, + p2_s_vpn_gateway_name=p2_s_vpn_gateway_name, + request=request, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_disconnect_p2_s_vpn_connections.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/p2svpnGateways/{p2sVpnGatewayName}/disconnectP2sVpnConnections"} # type: ignore +class VpnServerConfigurationsAssociatedWithVirtualWanOperations(object): + """VpnServerConfigurationsAssociatedWithVirtualWanOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _list_initial( + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> Optional["_models.VpnServerConfigurationsResponse"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.VpnServerConfigurationsResponse"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_vpn_server_configurations_associated_with_virtual_wan_list_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + template_url=self._list_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VpnServerConfigurationsResponse', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnServerConfigurations"} # type: ignore + + + @distributed_trace + def begin_list( + self, + resource_group_name: str, + virtual_wan_name: str, + **kwargs: Any + ) -> LROPoller["_models.VpnServerConfigurationsResponse"]: + """Gives the list of VpnServerConfigurations associated with Virtual Wan in a resource group. + + :param resource_group_name: The resource group name. + :type resource_group_name: str + :param virtual_wan_name: The name of the VirtualWAN whose associated VpnServerConfigurations is + needed. + :type virtual_wan_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VpnServerConfigurationsResponse or the + result of cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VpnServerConfigurationsResponse] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VpnServerConfigurationsResponse"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_initial( + resource_group_name=resource_group_name, + virtual_wan_name=virtual_wan_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VpnServerConfigurationsResponse', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualWans/{virtualWANName}/vpnServerConfigurations"} # type: ignore +class VirtualHubRouteTableV2SOperations(object): + """VirtualHubRouteTableV2SOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> "_models.VirtualHubRouteTableV2": + """Retrieves the details of a VirtualHubRouteTableV2. + + :param resource_group_name: The resource group name of the VirtualHubRouteTableV2. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the VirtualHubRouteTableV2. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: VirtualHubRouteTableV2, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2 + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHubRouteTableV2"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_route_table_v2_s_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.Error, pipeline_response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('VirtualHubRouteTableV2', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + virtual_hub_route_table_v2_parameters: "_models.VirtualHubRouteTableV2", + **kwargs: Any + ) -> "_models.VirtualHubRouteTableV2": + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHubRouteTableV2"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(virtual_hub_route_table_v2_parameters, 'VirtualHubRouteTableV2') + + request = build_virtual_hub_route_table_v2_s_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('VirtualHubRouteTableV2', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('VirtualHubRouteTableV2', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + virtual_hub_route_table_v2_parameters: "_models.VirtualHubRouteTableV2", + **kwargs: Any + ) -> LROPoller["_models.VirtualHubRouteTableV2"]: + """Creates a VirtualHubRouteTableV2 resource if it doesn't exist else updates the existing + VirtualHubRouteTableV2. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the VirtualHubRouteTableV2. + :type route_table_name: str + :param virtual_hub_route_table_v2_parameters: Parameters supplied to create or update + VirtualHubRouteTableV2. + :type virtual_hub_route_table_v2_parameters: + ~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2 + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either VirtualHubRouteTableV2 or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.VirtualHubRouteTableV2] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualHubRouteTableV2"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + virtual_hub_route_table_v2_parameters=virtual_hub_route_table_v2_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('VirtualHubRouteTableV2', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_route_table_v2_s_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a VirtualHubRouteTableV2. + + :param resource_group_name: The resource group name of the VirtualHubRouteTableV2. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the VirtualHubRouteTableV2. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables/{routeTableName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVirtualHubRouteTableV2SResult"]: + """Retrieves the details of all VirtualHubRouteTableV2s. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubRouteTableV2SResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubRouteTableV2SResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubRouteTableV2SResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hub_route_table_v2_s_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hub_route_table_v2_s_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubRouteTableV2SResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routeTables"} # type: ignore +class ExpressRouteGatewaysOperations(object): + """ExpressRouteGatewaysOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list_by_subscription( + self, + **kwargs: Any + ) -> "_models.ExpressRouteGatewayList": + """Lists ExpressRoute gateways under a given subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteGatewayList, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGatewayList + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGatewayList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_gateways_list_by_subscription_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_subscription.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteGatewayList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_by_subscription.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteGateways"} # type: ignore + + + @distributed_trace + def list_by_resource_group( + self, + resource_group_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteGatewayList": + """Lists ExpressRoute gateways in a given resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteGatewayList, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGatewayList + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGatewayList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_gateways_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_by_resource_group.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteGatewayList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list_by_resource_group.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + express_route_gateway_name: str, + put_express_route_gateway_parameters: "_models.ExpressRouteGateway", + **kwargs: Any + ) -> "_models.ExpressRouteGateway": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(put_express_route_gateway_parameters, 'ExpressRouteGateway') + + request = build_express_route_gateways_create_or_update_request_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + express_route_gateway_name: str, + put_express_route_gateway_parameters: "_models.ExpressRouteGateway", + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteGateway"]: + """Creates or updates a ExpressRoute gateway in a specified resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :param put_express_route_gateway_parameters: Parameters required in an ExpressRoute gateway PUT + operation. + :type put_express_route_gateway_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + put_express_route_gateway_parameters=put_express_route_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + def _update_tags_initial( + self, + resource_group_name: str, + express_route_gateway_name: str, + express_route_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> Optional["_models.ExpressRouteGateway"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ExpressRouteGateway"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(express_route_gateway_parameters, 'TagsObject') + + request = build_express_route_gateways_update_tags_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._update_tags_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _update_tags_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + + @distributed_trace + def begin_update_tags( + self, + resource_group_name: str, + express_route_gateway_name: str, + express_route_gateway_parameters: "_models.TagsObject", + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteGateway"]: + """Updates express route gateway tags. + + :param resource_group_name: The resource group name of the ExpressRouteGateway. + :type resource_group_name: str + :param express_route_gateway_name: The name of the gateway. + :type express_route_gateway_name: str + :param express_route_gateway_parameters: Parameters supplied to update a virtual wan express + route gateway tags. + :type express_route_gateway_parameters: ~azure.mgmt.network.v2021_08_01.models.TagsObject + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteGateway or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGateway"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_tags_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + express_route_gateway_parameters=express_route_gateway_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_update_tags.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + express_route_gateway_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteGateway": + """Fetches the details of a ExpressRoute gateway in a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteGateway, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteGateway + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteGateway"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_gateways_get_request( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteGateway', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_gateway_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_gateways_delete_request_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_gateway_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway + resource can only be deleted when there are no connection subresources. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}"} # type: ignore +class ExpressRouteConnectionsOperations(object): + """ExpressRouteConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + put_express_route_connection_parameters: "_models.ExpressRouteConnection", + **kwargs: Any + ) -> "_models.ExpressRouteConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(put_express_route_connection_parameters, 'ExpressRouteConnection') + + request = build_express_route_connections_create_or_update_request_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('ExpressRouteConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('ExpressRouteConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + put_express_route_connection_parameters: "_models.ExpressRouteConnection", + **kwargs: Any + ) -> LROPoller["_models.ExpressRouteConnection"]: + """Creates a connection between an ExpressRoute gateway and an ExpressRoute circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :param connection_name: The name of the connection subresource. + :type connection_name: str + :param put_express_route_connection_parameters: Parameters required in an + ExpressRouteConnection PUT operation. + :type put_express_route_connection_parameters: + ~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either ExpressRouteConnection or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + put_express_route_connection_parameters=put_express_route_connection_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('ExpressRouteConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteConnection": + """Gets the specified ExpressRouteConnection. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :param connection_name: The name of the ExpressRoute connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_connections_get_request( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_connections_delete_request_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + express_route_gateway_name: str, + connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a connection to a ExpressRoute circuit. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :param connection_name: The name of the connection subresource. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections/{connectionName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + express_route_gateway_name: str, + **kwargs: Any + ) -> "_models.ExpressRouteConnectionList": + """Lists ExpressRouteConnections. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param express_route_gateway_name: The name of the ExpressRoute gateway. + :type express_route_gateway_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ExpressRouteConnectionList, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.ExpressRouteConnectionList + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ExpressRouteConnectionList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_express_route_connections_list_request( + resource_group_name=resource_group_name, + express_route_gateway_name=express_route_gateway_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ExpressRouteConnectionList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteGateways/{expressRouteGatewayName}/expressRouteConnections"} # type: ignore + +class VirtualHubBgpConnectionOperations(object): + """VirtualHubBgpConnectionOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> "_models.BgpConnection": + """Retrieves the details of a Virtual Hub Bgp Connection. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: BgpConnection, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.BgpConnection + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_bgp_connection_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('BgpConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + parameters: "_models.BgpConnection", + **kwargs: Any + ) -> "_models.BgpConnection": + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpConnection"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'BgpConnection') + + request = build_virtual_hub_bgp_connection_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('BgpConnection', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('BgpConnection', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + parameters: "_models.BgpConnection", + **kwargs: Any + ) -> LROPoller["_models.BgpConnection"]: + """Creates a VirtualHubBgpConnection resource if it doesn't exist else updates the existing + VirtualHubBgpConnection. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :param parameters: Parameters of Bgp connection. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.BgpConnection + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either BgpConnection or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.BgpConnection] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BgpConnection"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('BgpConnection', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_bgp_connection_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + connection_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a VirtualHubBgpConnection. + + :param resource_group_name: The resource group name of the VirtualHubBgpConnection. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param connection_name: The name of the connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections/{connectionName}"} # type: ignore +class VirtualHubBgpConnectionsOperations(object): + """VirtualHubBgpConnectionsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVirtualHubBgpConnectionResults"]: + """Retrieves the details of all VirtualHubBgpConnections. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubBgpConnectionResults or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubBgpConnectionResults] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubBgpConnectionResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hub_bgp_connections_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hub_bgp_connections_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubBgpConnectionResults", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/bgpConnections"} # type: ignore + + def _list_learned_routes_initial( + self, + resource_group_name: str, + hub_name: str, + connection_name: str, + **kwargs: Any + ) -> Optional["_models.PeerRouteList"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.PeerRouteList"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_bgp_connections_list_learned_routes_request_initial( + resource_group_name=resource_group_name, + hub_name=hub_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_learned_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PeerRouteList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_learned_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/learnedRoutes"} # type: ignore + + + @distributed_trace + def begin_list_learned_routes( + self, + resource_group_name: str, + hub_name: str, + connection_name: str, + **kwargs: Any + ) -> LROPoller["_models.PeerRouteList"]: + """Retrieves a list of routes the virtual hub bgp connection has learned. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param hub_name: The name of the virtual hub. + :type hub_name: str + :param connection_name: The name of the virtual hub bgp connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PeerRouteList or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PeerRouteList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PeerRouteList"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_learned_routes_initial( + resource_group_name=resource_group_name, + hub_name=hub_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PeerRouteList', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_learned_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/learnedRoutes"} # type: ignore + + def _list_advertised_routes_initial( + self, + resource_group_name: str, + hub_name: str, + connection_name: str, + **kwargs: Any + ) -> Optional["_models.PeerRouteList"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.PeerRouteList"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_bgp_connections_list_advertised_routes_request_initial( + resource_group_name=resource_group_name, + hub_name=hub_name, + connection_name=connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._list_advertised_routes_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('PeerRouteList', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _list_advertised_routes_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/advertisedRoutes"} # type: ignore + + + @distributed_trace + def begin_list_advertised_routes( + self, + resource_group_name: str, + hub_name: str, + connection_name: str, + **kwargs: Any + ) -> LROPoller["_models.PeerRouteList"]: + """Retrieves a list of routes the virtual hub bgp connection is advertising to the specified peer. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param hub_name: The name of the virtual hub. + :type hub_name: str + :param connection_name: The name of the virtual hub bgp connection. + :type connection_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either PeerRouteList or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.PeerRouteList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.PeerRouteList"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._list_advertised_routes_initial( + resource_group_name=resource_group_name, + hub_name=hub_name, + connection_name=connection_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('PeerRouteList', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_list_advertised_routes.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{hubName}/bgpConnections/{connectionName}/advertisedRoutes"} # type: ignore +class VirtualHubIpConfigurationOperations(object): + """VirtualHubIpConfigurationOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + **kwargs: Any + ) -> "_models.HubIpConfiguration": + """Retrieves the details of a Virtual Hub Ip configuration. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param ip_config_name: The name of the ipconfig. + :type ip_config_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: HubIpConfiguration, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.HubIpConfiguration + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubIpConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_ip_configuration_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('HubIpConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + parameters: "_models.HubIpConfiguration", + **kwargs: Any + ) -> "_models.HubIpConfiguration": + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubIpConfiguration"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'HubIpConfiguration') + + request = build_virtual_hub_ip_configuration_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('HubIpConfiguration', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('HubIpConfiguration', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + parameters: "_models.HubIpConfiguration", + **kwargs: Any + ) -> LROPoller["_models.HubIpConfiguration"]: + """Creates a VirtualHubIpConfiguration resource if it doesn't exist else updates the existing + VirtualHubIpConfiguration. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param ip_config_name: The name of the ipconfig. + :type ip_config_name: str + :param parameters: Hub Ip Configuration parameters. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.HubIpConfiguration + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either HubIpConfiguration or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.HubIpConfiguration] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubIpConfiguration"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('HubIpConfiguration', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_virtual_hub_ip_configuration_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + ip_config_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a VirtualHubIpConfiguration. + + :param resource_group_name: The resource group name of the VirtualHubBgpConnection. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param ip_config_name: The name of the ipconfig. + :type ip_config_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + ip_config_name=ip_config_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations/{ipConfigName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> Iterable["_models.ListVirtualHubIpConfigurationResults"]: + """Retrieves the details of all VirtualHubIpConfigurations. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListVirtualHubIpConfigurationResults or the result + of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListVirtualHubIpConfigurationResults] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListVirtualHubIpConfigurationResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_virtual_hub_ip_configuration_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_virtual_hub_ip_configuration_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListVirtualHubIpConfigurationResults", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/ipConfigurations"} # type: ignore +class HubRouteTablesOperations(object): + """HubRouteTablesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + route_table_parameters: "_models.HubRouteTable", + **kwargs: Any + ) -> "_models.HubRouteTable": + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubRouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(route_table_parameters, 'HubRouteTable') + + request = build_hub_route_tables_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('HubRouteTable', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('HubRouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + route_table_parameters: "_models.HubRouteTable", + **kwargs: Any + ) -> LROPoller["_models.HubRouteTable"]: + """Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the RouteTable. + :type route_table_name: str + :param route_table_parameters: Parameters supplied to create or update RouteTable. + :type route_table_parameters: ~azure.mgmt.network.v2021_08_01.models.HubRouteTable + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either HubRouteTable or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.HubRouteTable] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubRouteTable"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + route_table_parameters=route_table_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('HubRouteTable', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> "_models.HubRouteTable": + """Retrieves the details of a RouteTable. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the RouteTable. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: HubRouteTable, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.HubRouteTable + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.HubRouteTable"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_hub_route_tables_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('HubRouteTable', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_hub_route_tables_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + route_table_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a RouteTable. + + :param resource_group_name: The resource group name of the RouteTable. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param route_table_name: The name of the RouteTable. + :type route_table_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + route_table_name=route_table_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables/{routeTableName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> Iterable["_models.ListHubRouteTablesResult"]: + """Retrieves the details of all RouteTables. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListHubRouteTablesResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListHubRouteTablesResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListHubRouteTablesResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_hub_route_tables_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_hub_route_tables_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListHubRouteTablesResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/hubRouteTables"} # type: ignore +class RoutingIntentOperations(object): + """RoutingIntentOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + routing_intent_parameters: "_models.RoutingIntent", + **kwargs: Any + ) -> "_models.RoutingIntent": + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoutingIntent"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(routing_intent_parameters, 'RoutingIntent') + + request = build_routing_intent_create_or_update_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self._create_or_update_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('RoutingIntent', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('RoutingIntent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + routing_intent_parameters: "_models.RoutingIntent", + **kwargs: Any + ) -> LROPoller["_models.RoutingIntent"]: + """Creates a RoutingIntent resource if it doesn't exist else updates the existing RoutingIntent. + + :param resource_group_name: The resource group name of the RoutingIntent. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param routing_intent_name: The name of the per VirtualHub singleton Routing Intent resource. + :type routing_intent_name: str + :param routing_intent_parameters: Parameters supplied to create or update RoutingIntent. + :type routing_intent_parameters: ~azure.mgmt.network.v2021_08_01.models.RoutingIntent + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either RoutingIntent or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.network.v2021_08_01.models.RoutingIntent] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoutingIntent"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + routing_intent_parameters=routing_intent_parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + response = pipeline_response.http_response + deserialized = self._deserialize('RoutingIntent', pipeline_response) + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + **kwargs: Any + ) -> "_models.RoutingIntent": + """Retrieves the details of a RoutingIntent. + + :param resource_group_name: The resource group name of the RoutingIntent. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param routing_intent_name: The name of the RoutingIntent. + :type routing_intent_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RoutingIntent, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.RoutingIntent + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoutingIntent"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_routing_intent_get_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RoutingIntent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_routing_intent_delete_request_initial( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + virtual_hub_name: str, + routing_intent_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes a RoutingIntent. + + :param resource_group_name: The resource group name of the RoutingIntent. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :param routing_intent_name: The name of the RoutingIntent. + :type routing_intent_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + routing_intent_name=routing_intent_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent/{routingIntentName}"} # type: ignore + + @distributed_trace + def list( + self, + resource_group_name: str, + virtual_hub_name: str, + **kwargs: Any + ) -> Iterable["_models.ListRoutingIntentResult"]: + """Retrieves the details of all RoutingIntent child resources of the VirtualHub. + + :param resource_group_name: The resource group name of the VirtualHub. + :type resource_group_name: str + :param virtual_hub_name: The name of the VirtualHub. + :type virtual_hub_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListRoutingIntentResult or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.ListRoutingIntentResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListRoutingIntentResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_routing_intent_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_routing_intent_list_request( + subscription_id=self._config.subscription_id, + resource_group_name=resource_group_name, + virtual_hub_name=virtual_hub_name, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ListRoutingIntentResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualHubs/{virtualHubName}/routingIntent"} # type: ignore +class WebApplicationFirewallPoliciesOperations(object): + """WebApplicationFirewallPoliciesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.network.v2021_08_01.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + @distributed_trace + def list( + self, + resource_group_name: str, + **kwargs: Any + ) -> Iterable["_models.WebApplicationFirewallPolicyListResult"]: + """Lists all of the protection policies within a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either WebApplicationFirewallPolicyListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.WebApplicationFirewallPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_web_application_firewall_policies_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_web_application_firewall_policies_list_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("WebApplicationFirewallPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies"} # type: ignore + + @distributed_trace + def list_all( + self, + **kwargs: Any + ) -> Iterable["_models.WebApplicationFirewallPolicyListResult"]: + """Gets all the WAF policies in a subscription. + + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either WebApplicationFirewallPolicyListResult or the + result of cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicyListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + cls = kwargs.pop('cls', None) # type: ClsType["_models.WebApplicationFirewallPolicyListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + def prepare_request(next_link=None): + if not next_link: + + request = build_web_application_firewall_policies_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.list_all.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + else: + + request = build_web_application_firewall_policies_list_all_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=next_link, + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + request.method = "GET" + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize("WebApplicationFirewallPolicyListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': "/subscriptions/{subscriptionId}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies"} # type: ignore + + @distributed_trace + def get( + self, + resource_group_name: str, + policy_name: str, + **kwargs: Any + ) -> "_models.WebApplicationFirewallPolicy": + """Retrieve protection policy with specified name within a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param policy_name: The name of the policy. + :type policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: WebApplicationFirewallPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.WebApplicationFirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_web_application_firewall_policies_get_request( + resource_group_name=resource_group_name, + policy_name=policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self.get.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('WebApplicationFirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}"} # type: ignore + + + @distributed_trace + def create_or_update( + self, + resource_group_name: str, + policy_name: str, + parameters: "_models.WebApplicationFirewallPolicy", + **kwargs: Any + ) -> "_models.WebApplicationFirewallPolicy": + """Creates or update policy with specified rule set name within a resource group. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param policy_name: The name of the policy. + :type policy_name: str + :param parameters: Policy to be created. + :type parameters: ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicy + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: WebApplicationFirewallPolicy, or the result of cls(response) + :rtype: ~azure.mgmt.network.v2021_08_01.models.WebApplicationFirewallPolicy + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.WebApplicationFirewallPolicy"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] + + _json = self._serialize.body(parameters, 'WebApplicationFirewallPolicy') + + request = build_web_application_firewall_policies_create_or_update_request( + resource_group_name=resource_group_name, + policy_name=policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + template_url=self.create_or_update.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('WebApplicationFirewallPolicy', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('WebApplicationFirewallPolicy', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + + create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}"} # type: ignore + + + def _delete_initial( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + policy_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + + + request = build_web_application_firewall_policies_delete_request_initial( + resource_group_name=resource_group_name, + policy_name=policy_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + template_url=self._delete_initial.metadata['url'], + ) + request = _convert_request(request) + request.url = self._client.format_url(request.url) + + pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access + request, + stream=False, + **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}"} # type: ignore + + + @distributed_trace + def begin_delete( # pylint: disable=inconsistent-return-statements + self, + resource_group_name: str, + policy_name: str, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes Policy. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param policy_name: The name of the policy. + :type policy_name: str + :keyword api_version: Api Version. Default value is "2021-08-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this + operation to not poll, or pass in your own initialized polling object for a personal polling + strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises: ~azure.core.exceptions.HttpResponseError + """ + api_version = kwargs.pop('api_version', "2021-08-01") # type: str + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + policy_name=policy_name, + api_version=api_version, + cls=lambda x,y,z: x, + **kwargs + ) + kwargs.pop('error_map', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + + begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/{policyName}"} # type: ignore diff --git a/src/virtual-wan/setup.py b/src/virtual-wan/setup.py index bf4d0958e62..4ae20c855e3 100644 --- a/src/virtual-wan/setup.py +++ b/src/virtual-wan/setup.py @@ -5,10 +5,9 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from codecs import open from setuptools import setup, find_packages -VERSION = "0.2.11" +VERSION = "0.2.12" CLASSIFIERS = [ 'Development Status :: 4 - Beta',